/* General Styles */
:root {
    --primary-color: #0A7184;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw !important;
    padding: 0;
    margin: 0;
    font-family: 'Crimson Pro', serif;
    box-sizing: border-box;
    overflow-x: hidden;
}

.container {
    width: 100%;
}

/* Header */
.header {
    width: 100%;
    background-color: #fff;
    padding: 10px 5%;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    /* animation: slideInLeft 1s ease-out; */
}

.header-right {
    display: flex;
    align-items: center;
}

.btn {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
    box-shadow: 2px 3px 4px 0px #32323287;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;
    cursor: pointer;
    border-radius: 4px;
    /* animation: slideInRight 1s ease-out; */
}

.hamburger {
    display: none;
    /* Hidden by default */
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
}

/* Navigation */
.navbar {
    background-color: #fff;
    border-bottom: 1px solid #32323219;
    box-shadow: 0px 8px 5px 0px #0a72843f;
    padding: 10px 5%;

}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;

}

.nav-list li {
    margin: 0 10px;
    animation: slideInUp 1s ease-out;

}

.nav-list a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 0.8px;
    font-weight: 600;
}
/* Banner Styles */
.banner {
    margin-top: 10px;
    background-color: #fff;
    padding: 0px 5%;

}


.banner .container {
    /* max-width: 1200px; */
    margin: 0 auto;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-left {
    order: 1;
    flex: 1;
}

.banner-left h1 {
    margin: 0;
    margin-bottom: 10px;
    font-size: 4vw;
    color: var(--primary-color);
}
.banner-left h2 {
    margin: 0;
    margin-bottom: 10px;
    font-size: 2vw;
    color: var(--primary-color);
}

#dynamic-text {
    margin-bottom: 10px;
    font-size: 2vw;
    color: var(--primary-color);
}

.banner-left p {
    margin: 0;
    margin-bottom: 5px;
    font-size: 1.5vw;
    font-weight: 600;
    color: #333;
}

.banner-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.banner-right {
    flex: 1;
    text-align: center;
}

.banner-right img {
    width: 75%;
    height: auto;
    border-radius: 10px;
}
/* about me section  */
.aboutMe {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin: 0;
}

.hero-header-content {
    padding: 16px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-header-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon-container {
    display: flex;
    align-items: center;
    margin-right: 5px;
}

.hero-icon-container .dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    margin: 0 2px;
}

.hero-icon-container .bar {
    width: 20px;
    height: 2px;
    background-color: var(--primary-color);
}

.hero-header-container h3 {
    margin: 20px 0px;
    font-size: 1rem;
}

.hero-header-content p {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-color);
}
.aboutMe-textContainer{
    width: 100%;
    padding: 10px 5%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.aboutMe-textContainer h2{
    margin: 0;
    
    font-size: 1rem;
    font-weight: 500;
    text-align: justify;
    /* letter-spacing: 1px; */
}
.aboutMe-textContainer h1{
    margin: 0;
    margin-top: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0A7184;
    /* letter-spacing: 1px; */
}
.aboutMe-textContainer ul{
    width: 100%;
    padding: 5px 25px;
    color: #0A7184;
    font-weight: 600;
}
/* Footer section  */
.footer {
    width: 100%;
    background-color: #fbfdfd;
    /* border-top: 3px solid #0a728472; */
    border-top: 1px solid #32323219;
    box-shadow: 0px 8px 15px 0px #0a7284c0;
    color: #0A7184;
    padding: 20px 5%;
    margin-top: 35px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* max-width: 1200px; */
    margin: auto;
    /* padding: 0px 5%; */
}

.footer-section {
    flex: 1;
    margin: 10px;
    /* min-width: 300px; */
}
.footer-section img {
    width: 40%;
}
.footer-section p{
    margin-left: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 10%;
    margin-top: 10px;
}
.footer-section p i {
    color: #0A7184;
}
.footer-title {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.footer-text,
.footer-links li {
    color: #303030;
    margin: 5px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links a {
    text-decoration: none;
    color: #303030;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
}
.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #0A7184;
    transition: width 0.3s ease-in-out;
}
.footer-links a:hover {
    color: #0A7184;
}
.footer-links a:hover::after {
    width: 50%;
}

.subscription-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.email-input {
    flex: 1;
    padding: 8px;
    border: 2px solid #0A7184;
    border-radius: 4px;
}
.email-input:focus{
    outline: #0A7184;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.email-input::placeholder{
    font-weight: 400;
}

.subscribe-button {
    padding: 8px 12px;
    border: none;
    background-color: #0A7184;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-icon {
    text-decoration: none;
    color: #0A7184;
    font-size: 24px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: inherit;
}

.social-icon:hover i.fa-facebook-f {
    color: #1877F2;
}

.social-icon:hover i.fa-twitter {
    color: #1DA1F2;
}

.social-icon:hover i.fa-instagram {
    color: #E4405F;
}

.social-icon:hover i.fa-linkedin-in {
    color: #0077B5;
}
.footer-bottom {
    /* background-color: red; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
    color: #303030;
    font-weight: 600;
    margin-top: 20px;
    flex-wrap: wrap;
    text-align: center;
}
.footer-bottom div {
    flex: 1;
}
.footer-bottom a {
    text-decoration: none;
    color: #0A7184;
    letter-spacing: 0.5px;
}



@media (max-width: 768px) {
    .header {
        padding: 10px 2%;
    }

    .logo img {
        height: 40px;
        width: auto;
    }

    .btn {
        padding: 7px 10px;
        font-size: 12px;
    }

    .hamburger {
        display: flex;
        /* Show hamburger on mobile */
        justify-content: center;
        align-items: center;
    }

    .hamburger span {
        margin: 0;
        padding: 0;
    }

    .navbar {
        display: none;
        /* Hide nav by default on mobile */

    }

    .navbar.active {
        display: flex;
        /* Show nav when active */

    }

    .nav-list {
        flex-direction: column;
    }

    .nav-list li {
        margin: 10px 0;
        animation: slideInLeft 1s ease-out;
    }
    hero-header-container h3 {
        font-size: 0.8rem;
    }

    .hero-header-content p {
        font-size: 1.5rem;
    }

}

@media (max-width: 465px) {

    #nav-btn {
        display: none;
    }

    .banner-content {
        flex-direction: column;
    }

    .banner-left {
        order: 1;
        padding-right: 0;
        text-align: center;
        margin-bottom: 20px;
    }

    #intro {
        display: none;
    }

    #designation{
        font-size: 4vw;
    }
    .banner-buttons {
        justify-content: center;
    }

    .banner-right {
        width: 100%;
        text-align: center;
    }

    .banner-right img {
        max-width: 100%;
    }

    .banner-left h1 {
        font-size: 8vw;
    }

    #dynamic-text {
        font-size: 5vw;
    }

    .banner-left p {
        font-size: 3.5vw;
    }
     /* footer secttion  */
     .footer {
        padding: 20px 4%;
    }

    .footer-container {
        flex-direction: column;
        padding: 0;
    }
    .footer-section p{
    margin-left: 0px;
    
}

}

/* Keyframes for Slide-In Animations */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}