* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}


:root {
    --primary: #061653;
    --light: #06155312;
    --dark: #000;
    --bg-color: #ec6902;
    --white: #fff;
    --gray: #b2b2b281;
}

.heading h2 {
    color: var(--primary);
    text-transform: capitalize;
    text-align: center;
}

.heading h2:after {
    border-top: 4px solid var(--primary);
    border-radius: 50px;
    display: block;
    width: 81px;
    content: "";
    margin: 15px auto 0;
}

/* ========================== scroll bar change ========= */
::-webkit-scrollbar {
    width: 5px;
    height: 4px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* navbar start */

.header.fixed {
    width: 100%;
    position: fixed;
    top: 0px;
    z-index: 999;
    background-color: var(--white);
}

.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    position: sticky;
    -webkit-transition: 1s;
    transition: 1s;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.3) !important;
    align-items: center;
    padding: 0.5rem 3rem !important;
    background-color: #1d1d1d;
    z-index: 999;
    height: 85px;
    position: sticky;
    top: 23px;
    z-index: 1000;
}

.logo img {
    margin-top: 0.4rem;
    width: 180px;
}

.logo h1 {
    color: white;
    font-weight: 900;
}

.nav-item a {
    color: var(--black) !important;
    font-weight: 500;
    font-size: 1rem !important;
    text-transform: capitalize;
    margin: 0 0.5rem;
    padding: 0rem !important;
    padding-left: 0.2rem !important;
    padding-right: 0.2rem !important;
}

.nav-dropitem {
    margin-right: 2rem;
}

.nav-dropitem a {
    color: black !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.2rem !important;
}

.nav-item a::after {
    content: "";
    display: block;
    width: 0px;
    height: 2px;
    background: var(--primary);
    margin: 0 auto;
    transition: 0.5s all;
}

.nav-item a:hover::after {
    width: 100%;
    margin: 0 auto;
}

.nav-dropitem .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    border: 2px solid rgb(228, 228, 228) !important;
}

.nav-dropitem:hover .dropdown-menu {
    top: 120%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
}

.nav-dropitem.show .dropdown-menu {
    top: 120%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
}

.menu-icon {
    display: none;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    width: 30px;
    height: 25px;
}

.menu-icon span {
    position: absolute;
    width: 30px;
    height: 3px;
    border-radius: 10px;
    background-color: var(--primary);
}

.menu-icon span:nth-child(1) {
    top: 0px;
    left: 0px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform-origin: center;
    transform-origin: center;
}

.menu-icon span:nth-child(2) {
    width: 20px;
    top: 10px;
    right: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform-origin: center;
    transform-origin: center;
}

.menu-icon span:nth-child(3) {
    width: 30px;
    top: 20px;
    left: 0px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform-origin: center;
    transform-origin: center;
}

.menu-icon span .animateline {
    position: absolute;
    background-color: var(--white);
    top: 0;
    width: 0;
    bottom: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.menu-icon {
    display: none;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    font-size: 22px;
    cursor: pointer;
}

.close-icon {
    display: none;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    font-size: 22px;
}

.nav-btn {
    position: relative;
    font-weight: 600;
    background-color: var(--bg-color);
    padding: 0.5rem 2rem;
    border: 2px solid var(--bg-color);
    transition: all 0.5s;
    color: var(--white);
    overflow: hidden;
}

.nav-btn::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: -1;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #ec6702de 0%, #ffffff6d 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.nav-btn:hover::after {
    transform: scale(4);
}

.nav-btn:hover {
    font-weight: 600;
    background-color: transparent;
    padding: 0.5rem 2rem;
    border: 2px solid var(--bg-color);
    color: var(--white);
    transition: all 0.5s;
}

@media only screen and (min-width: 1300px) and (max-width: 1400px) {
    .nav-item a {
        font-size: 0.9rem !important;
    }
}

@media screen and (max-width: 1250px) {
    .header .menu-section {
        position: absolute;
        width: 100%;
        top: 69px;
        left: 0;
        text-align: center;
        height: 0;
        -webkit-transition: 1s;
        transition: 1s;
        overflow: auto;
        z-index: 9999;
        background-color: var(--primary);
    }

    .header ul li {
        border-bottom: 1px solid var(--white);
    }

    .header ul {
        display: block;
    }

    .menu-icon {
        display: block;
    }

    .nav-item a:hover::after {
        width: 0%;
    }

    .nav-item {
        margin-right: 0rem;
    }

    .nav-dropitem {
        margin-right: 0rem;
    }

    .menu-icon {
        display: block !important;
    }

    .header ul li {
        padding: 10px 20px;
    }

    .nav-dropitem .dropdown-menu {
        display: none;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
        border: 2px solid var(--dark) !important;
    }

    .nav-dropitem.show .dropdown-menu {
        display: block;
        top: 120%;
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }

    .dropdown-menu {
        margin: 1rem;
    }

    .header {
        padding: 0.2rem 0.8rem !important;
        height: 70px;
    }

    .nav-btn {
        margin-top: 1rem;
    }

    .nav-item a {
        color: var(--white) !important;
    }
}

@media only screen and (max-width: 320px) {
    .logo h1 {
        font-size: 1.4rem;
    }
}

@media only screen and (min-width: 1120px) and (max-width: 1200px) {
    .logo h1 {
        font-size: 2rem;
    }

    .header {
        padding: 0.5rem 1.5rem !important;
    }

    .nav-item a {
        font-size: 1rem !important;
    }
}

@media only screen and (max-width: 992px) {
    .logo img {
        margin-top: 0rem;
        width: 130px;
    }
}

/* navbar end */

/* Hero Section Responsive Styles */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: -61px; /* Adjust based on your header height */
}

.hero-section-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Default height for larger screens */
.hero-section-img img {
    min-height: 80vh;
    max-height: 100vh;
}

/* Navigation buttons */
.custom-prev,
.custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFA500;
    color: white;
    border: none;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 90;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.custom-prev {
    left: 20px;
}

.custom-next {
    right: 20px;
}

.custom-prev:hover,
.custom-next:hover {
    background-color: gray;
    transform: translateY(-50%) scale(1.1);
}

/* Responsive adjustments */
@media only screen and (max-width: 1600px) {
    .hero-section-img img {
        min-height: 70vh;
    }
}

@media only screen and (max-width: 1200px) {
    .hero-section-img img {
        min-height: 60vh;
    }
    
    .custom-prev,
    .custom-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media only screen and (max-width: 992px) {
    .hero-section-img img {
        min-height: 50vh;
    }
    
    .hero-section {
        margin-top: -59px; /* Adjust if header height changes on tablet */
    }
}

@media only screen and (max-width: 768px) {
    .hero-section-img img {
        min-height: 40vh;
    }
    .hero-section {
        margin-top: -40px; /* Adjust if  header height changes on tablet */
    }
    .custom-prev,
    .custom-next {
        width: 35px;
        height: 35px;
        font-size: 18px;
        padding: 10px;
    }
}

@media only screen and (max-width: 576px) {
    .hero-section-img img {
        min-height: 30vh;
    }
    .hero-section {
        margin-top: -45px; /* Adjust if header height changes on tablet */
    }
    .custom-prev,
    .custom-next {
        width: 30px;
        height: 30px;
        font-size: 16px;
        padding: 8px;
    }
}

@media only screen and (max-width: 400px) {
    .hero-section-img img {
        min-height: 25vh;
    }
    .hero-section {
        margin-top: -30px; /* Adjust if header height changes on tablet */
    }
    .custom-prev,
    .custom-next {
        display: none; /* Hide on very small screens if they take too much space */
    }
}

/* Ensure images don't stretch too much on wide screens */
@media only screen and (min-width: 2000px) {
    .hero-section-img img {
        height: 80vh;
        max-height: 1000px;
    }
}

/* Owl Carousel specific adjustments */
.owl-carousel .owl-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* about start */
.about-us {
    padding-top: 4rem;
    padding-bottom: 3rem;
}

.about-us-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

@media only screen and (max-width:768px) {
    .about-us-text {
        margin-top: 1rem;
    }

    .about-us {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }

    .about-us-img img {
        height: 250px;
    }
}

@media only screen and (max-width:560px) {
    .about-us-img img {
        height: 190px;
    }
}

/* about end */

/* vision start */
.vision-row {
    background-color: #06155335;
    padding: 2rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--primary);
}

.our-vision {
    position: relative;
    padding-top: 3rem;
    padding-bottom: 4rem;
    background-color: var(--gray);
    overflow: hidden;
}

.vision-img img {
    width: 100%;
    border: 1px solid var(--primary);
    border-radius: 10px;
    background-color: var(--white);
}

.our-vision:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 50px;
    border: 2px solid var(--primary);
    background-color: var(--primary);
    left: -60px;
    top: 0;
}

.our-vision:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 50px;
    border: 2px solid var(--primary);
    background-color: var(--primary);
    right: -50px;
    bottom: 0;
}

@media only screen and (max-width:768px) {
    .vision-img-col {
        order: 2;

    }

    .vision-text-col {
        order: 1;

    }

    .vision-text {
        margin-top: 0.5rem;
    }

    .our-vision:before {
        width: 90px;
        height: 50px;
    }

    .our-vision:after {
        width: 90px;
        height: 50px;
    }

    .our-vision {
        padding-top: 3rem;
        padding-bottom: 5rem;
    }

    .vision-row {
        margin: 0.5rem;
    }


}


.vision-text p {
    font-weight: 600;
}

/* vision end */

/* mission start */
.our-mission {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.mission-img img {
    width: 100%;
    border: 1px solid var(--primary);
    border-radius: 10px;
    background-color: var(--light);
}

.mission-text p {
    font-weight: 600;
}

/* mission end */

/* membership start */

.membership {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: var(--gray);
    position: relative;
    overflow: hidden;
}

.membership:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background-color: var(--primary);
    left: -50px;
    top: 0;
}

.membership:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background-color: var(--primary);
    right: -50px;
    bottom: 0;
}

.membership-text h2 {
    text-transform: capitalize !important;
    color: var(--primary);
}

.membership-text h2:after {
    border-top: 4px solid var(--primary);
    border-radius: 50px;
    display: block;
    width: 81px;
    content: "";
    margin: 15px auto 0;
}


.membership-text {
    color: var(--dark);
}

.membership-text a button {
    border-radius: 50px;
    padding: 0.3rem 2rem;
    font-weight: 600;
    border: 2px solid var(--white);
    color: var(--white);
    background-color: var(--primary);
    transform: scale(0.9);
    transition: all 0.5s;
}

.membership-text a button:hover {
    border: 2px solid var(--primary);
    color: var(--primary);
    background-color: var(--white);
    transform: scale(1);
    transition: all 0.5s;
}

@media only screen and (max-width:768px) {
    .membership:before {
        width: 75px;
        height: 75px;
    }

    .membership:after {
        width: 75px;
        height: 75px;
    }
}

/* membership end */
/* our clients start */
.our-client {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.client_swiper {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.our-client-img img {
    display: flex !important;
    justify-content: center !important;
    width: 230px !important;
    height: 90px !important;
    object-fit: contain;
}

.our-client-btn {
    margin-top: 4rem;
    margin-bottom: 1rem;
    text-align: center;
    text-transform: capitalize;
}

.our-client-btn a {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.3rem 2rem;
    border: 2px solid var(--primary);
    transition: all 0.5s;

}

.our-client-btn a:hover {
    border: 2px solid var(--primary);
    background-color: var(--white);
    color: var(--primary);
    padding: 0.3rem 2rem;
    transition: all 0.5s;

}


@media only screen and (max-width:768px) {
    .our-client-img img {
        display: flex !important;
        justify-content: center !important;
        width: 90% !important;
        height: 60px !important;
        object-fit: contain;
        margin: 0 auto;
    }
}

/* our client end */
/* contact us start */
.contact-us {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.contact-us-box {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid var(--primary);
    border-radius: 10px;
}

.contact-page {
    margin-top: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.contact-heading {
    text-align: center;
    background-color: var(--primary);
    color: var(--white);
    padding: 1rem;
    margin-top: 3rem;
}

/* contact us end */

/* footer start */
.footer {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: var(--primary);
}

.footer-box {
    display: flex;
    justify-content: center;
}

.footer-col i {
    margin-top: 2rem;
    color: var(--primary);
    background-color: var(--white);
    margin: 0.3rem;
    padding: 0.5rem;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.footer-col i:hover {
    color: var(--white);
    background-color: var(--primary);
    border: 2px solid var(--white);
}

.footer-col h5 {
    color: var(--white);
}

.footer-col h6 {
    color: var(--white);
}

.footer-col p {
    color: var(--white);
}

.footer-col li a {
    color: var(--white);
}

.bottom-line {
    text-align: center;
    background-color: var(--gray);
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

.bottom-line p {
    font-size: 0.9rem;
    font-weight: 400;
}

@media only screen and (max-width: 768px) {
    .footer {
        padding-top: 2rem;
        padding-bottom: 2rem;
        background-color: var(--primary);
    }

    .footer-box {
        display: flex;
        justify-content: start;
    }

    .footer-col {
        margin-top: 1rem;
    }
}

/* footer end */

/* Color Scheme */
:root {
    --yellow: #FFD700;
    --yellow-dark: #FFC000;
    --gray: #333333;
    --gray-light: #F5F5F5;
    --gray-medium: #DDDDDD;
    --white: #FFFFFF;
    --black: #000000;
}

/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: var(--gray);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--yellow);
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.header-decoration {
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

.dot.yellow {
    background-color: var(--yellow);
}

.dot.gray {
    background-color: var(--gray);
}

/* Background Helpers */
.gray-bg {
    background-color: var(--gray-light);
}

.yellow-bg {
    background-color: var(--yellow);
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--yellow);
    color: var(--gray);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
}

.highlight-box {
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.highlight-box.yellow {
    background-color: rgba(255, 215, 0, 0.2);
    border-left: 4px solid var(--yellow);
}

.highlight-box p {
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Vision Section */
.vision-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.vision-image {
    flex: 1;
}

.vision-image img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
}

.vision-text {
    flex: 1;
}

.vision-text p {
    font-size: 20px;
    margin-bottom: 30px;
}

.vision-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    flex: 1 1 200px;
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--gray);
}

.feature-item p {
    font-weight: 500;
    margin: 0;
}

/* Mission Section */
.mission-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.mission-text {
    flex: 1;
}

.mission-text p {
    font-size: 18px;
    margin-bottom: 30px;
}

.mission-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 150px;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
}

/* Membership Section */
.membership-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.membership-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.membership-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.membership-btn {
    display: inline-block;
    padding: 12px 30px;
    color: var(--gray);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.membership-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Clients Section */
.clients-showcase {
    overflow: hidden;
    margin: 40px 0;
}

.client-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    width: calc(250px * 8);
}

.client-logo {
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 4));
    }
}

.clients-btn {
    text-align: center;
    margin-top: 40px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    border: 2px solid var(--yellow);
    color: var(--gray);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline i {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--yellow);
}

.btn-outline:hover i {
    transform: translateX(5px);
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    background: var(--white);
}

.info-card.yellow-bg {
    color: var(--gray);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.info-text p {
    margin: 0;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-medium);
}

.hours-list li:last-child {
    border-bottom: none;
}
/* Contact Form Styling */
.contact-form {
    padding: 30px;
    border-radius: 10px;
    color: var(--gray);
    position: relative;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.input-field {
    width: 100%;
    padding: 12px 15px 12px 40px; /* Added left padding for icon */
    border: 1px solid var(--gray-medium);
    border-radius: 5px;
    font-size: 16px;
}

.input-field.textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 15px; /* Adjust textarea padding */
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    z-index: 1;
}

/* For textarea icon positioning */
.form-group textarea + .input-icon {
    top: 20px;
    transform: none;
}

.submit-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #555;
    color: #fff;
}

.contact-map {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Styles */
@media (max-width: 992px) {

    .about-content,
    .vision-content,
    .mission-content,
    .contact-content {
        flex-direction: column;
    }

    .mission-content {
        flex-direction: column-reverse;
    }

    .about-image,
    .vision-image,
    .mission-image {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .vision-features,
    .mission-stats {
        flex-direction: column;
    }

    .client-track {
        animation-duration: 20s;
    }
}

.clients-section {
    padding: 60px 0;
    background: #fff;
}

.clients-showcase {
    overflow: hidden;
}

.client-track {
    display: flex;
    animation: scroll 20s linear infinite;
}

.client-logo {
    flex: 0 0 auto;
    margin: 0 20px;
    width: 150px;
}

.client-logo img {
    width: 100%;
    height: auto;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.contact-section {
    padding: 60px 0;
}

.contact-content {
    display: flex;
    gap: 40px;
}

.contact-info,
.contact-form-container {
    flex: 1;
}

.info-card {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card.animate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form {
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.contact-form.animate-form {
    animation: fadeIn 1s ease-in-out;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.input-field {
    width: 100%;
    padding: 12px 40px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.input-field.textarea {
    min-height: 120px;
    resize: vertical;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.submit-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #555;
    color: #fff;
}

.map-section {
    padding: 0;
}

.contact-map.full-width {
    width: 100%;
    height: 400px;
}

.contact-map.full-width iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.yellow-bg {
    background: #f7c948;
}

.gray-bg {
    background: #f4f4f4;
}


/* Add this to your CSS */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section-img {
    width: 100%;
}

.hero-section-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Remove default margins/padding */
.owl-carousel {
    margin: 0;
    padding: 0;
}

.about-section {
    padding: 60px 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.about-image {
    flex: 1 1 300px;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain; /* Changed from cover to contain */
    border-radius: 8px;
}

.about-text {
    flex: 1 1 300px;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        flex: 1 1 100%;
    }
}

/* Ensure all sections have proper spacing */
section {
    padding: 60px 0;
    position: relative;
}

/* Container adjustments */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive typography */
html {
    font-size: 16px;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    section {
        padding: 30px 0;
    }
}

.clients-showcase {
    overflow: hidden;
    position: relative;
}

.client-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: calc(250px * 8); /* Adjust based on number of logos */
}

.client-logo {
    flex: 0 0 250px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logo img:hover {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 4)); /* Half of total width */
    }
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info {
    flex: 1 1 300px;
}

.contact-form-container {
    flex: 1 1 300px;
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
}

/* palette */
:root{
    --yellow:#F5B400;
    --gray-700:#555;
    --gray-500:#777;
    --gray-100:#F2F2F2;
  }
  /* heading */
  .section-heading small{
      letter-spacing:.15em;
      font-size:1rem;
      font-weight:600;
      color:var(--yellow);
  }
  .section-heading h2{
      font-weight:600;
      color:#0a0a0a;
  }
  .section-heading p{
      color:var(--gray-500);
  }

  /* ring behind illustration */
  .ring{
    position:absolute;
    inset:0;
    width:430px;
    height:430px;
    margin:auto;
    border:2px solid var(--gray-100);
    border-radius:50%;
    z-index:-1;
  }

  /* list blocks */
  .adv-item{
    background:var(--gray-100);
    display:flex;
    align-items:center;
    gap:.85rem;
    padding:.75rem 1.25rem;
    border-radius:.25rem;
    font-weight:500;
    color:var(--gray-700);
  }
  .adv-item i{
    background:var(--yellow);
    color:#fff;
    font-size:.75rem;
    padding:.5rem;
    border-radius: .25rem;
    border-radius:.25rem;
  }
  /* faint numbers */
  .faint-num{
    font-size:2.75rem;
    font-weight:700;
    color:#dfe4e7;
    pointer-events:none;
    user-select:none;
  }
  /* illustration sizing */
  .illus{
    max-width:220px;
  }

  @media (max-width:991.98px){
      /* stack items on tablets / phones */
      .faint-num{display:none;}
      .adv-col{margin-top:1rem;}
  }

  /* About Section Animations */
.about-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

.about-image {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

.about-text {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.8s ease-out forwards;
    animation-delay: 0.7s;
}

.highlight-box.yellow {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 1s;
    position: relative;
}

.highlight-box.yellow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 215, 0, 0.1);
    animation: highlightExpand 1.2s ease-out forwards;
    animation-delay: 1.2s;
}

/* Keyframes for animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes highlightExpand {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Experience badge animation */
.experience-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

/* Hover effects for about image */
.about-image img {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for animations */
@media (max-width: 768px) {
    .about-image, .about-text {
        animation: fadeInUp 0.8s ease-out forwards !important;
        transform: none !important;
        animation-delay: 0.5s !important;
    }
    
    .highlight-box.yellow {
        animation-delay: 0.7s !important;
    }
    
    .highlight-box.yellow::before {
        animation-delay: 0.9s !important;
    }
}/* ========== RESET ========== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
ul{list-style:none}a{text-decoration:none;color:inherit}

/* ========== PALETTE ========== */
:root{
    --yellow:#f6b800; --yellow-dark:#d49c00;
    --black:#222;     --white:#fff;
    --blur:14px;      --radius:16px;
    --t:.35s cubic-bezier(.4,0,.2,1);
    --glass:rgba(255,255,255,.8);
    --glass-dark:rgba(40,40,40,.7);
    --elev:0 6px 24px rgba(0,0,0,.15);
}

/* ========== WRAPPER ========== */
.sb-nav{
    position:sticky;top:0;z-index:2000;
    display:flex;align-items:center;justify-content:space-between;
    padding:.65rem 1.25rem;background:var(--glass);
    backdrop-filter:blur(var(--blur));-webkit-backdrop-filter:blur(var(--blur));
    box-shadow:var(--elev);border-bottom:1px solid rgb(0 0 0 / .05);
    color: black;
}
@media(prefers-color-scheme:dark){.sb-nav{background:var(--glass-dark)}}

/* ========== BRAND ========== */
.sb-brand-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.sb-brand{
    display:flex;
    align-items:center;
    gap:.75rem;
    font-weight:700;
    font-size:1.25rem;
    color: var(--black);
    transition: transform var(--t);
}
.sb-brand:hover {
    transform: scale(1.02);
}
.sb-brand img{
    height:36px;
    width:auto;
    object-fit: contain;
}

/* ========== DESKTOP MENU ========== */
.sb-menu{
    display: flex;
    align-items: center;
    margin-left: auto;
}
.sb-menu ul{
    display:flex;
    align-items:center;
    gap:1.25rem;
}
.sb-menu a{
    padding:.48rem .75rem;
    font-weight:600;
    position:relative;
    transition:color var(--t);
    font-size: 1rem;
    white-space: nowrap;
}
.sb-menu a:hover{
    color: gray;
}
.sb-menu a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:var(--yellow);
    border-radius:1px;
    transition:width var(--t)
}
.sb-menu a:hover::after{width:100%}
.sb-welcome{font-weight:600}
.sb-cta a{
    background:var(--yellow);
    color:var(--white);
    border-radius:var(--radius);
    padding:.5rem 1.2rem;
    transition:background var(--t)
}
.sb-cta a:hover{background:var(--yellow-dark)}

/* ========== BURGER ========== */
.sb-toggle{display:none}
.sb-burger{
    display:none;
    width:32px;
    height:24px;
    flex-direction:column;
    justify-content:space-between;
    cursor:pointer;
    z-index: 3000;
}
.sb-burger span{
    display:block;
    width:100%;
    height:3px;
    background:var(--yellow);
    border-radius:3px;
    transition:transform var(--t),opacity var(--t)
}

/* ========== MOBILE (=<991px) ========== */
@media(max-width:991px){
    /* show burger */
    .sb-burger{display:flex}
    .sb-brand-container {
        flex: 0;
        justify-content: flex-start;
    }

    /* overlay to prevent background scroll */
    body.sb-lock{height:100vh;overflow:hidden}

    /* Drawer */
    .sb-menu{
        position:fixed;
        top:var(--top,0);
        left:0;
        right:0;
        transform:translateY(-100%);
        transition:transform var(--t);
        background:rgb(68, 66, 66);
        backdrop-filter:blur(var(--blur));
        -webkit-backdrop-filter:blur(var(--blur));
        padding:5rem 1.6rem 5rem;
        display:flex;
        flex-direction:column;
        align-items:stretch;
        height:100vh;
        overflow-y:auto;
        margin-left: 0;
        color: white;
    }

    /* fade‑masks top/bottom */
    .sb-menu::before,.sb-menu::after{
        content:'';
        position:sticky;
        left:0;
        right:0;
        height:40px;
        pointer-events:none;
        background:linear-gradient(to bottom,rgba(0,0,0,.15),transparent);
        z-index:10;
    }
    .sb-menu::after{top:100%;transform:rotate(180deg)}

    .sb-menu ul{
        flex-direction:column;
        align-items:center;
        gap:1.5rem;
        margin-top: 1rem;
    }
    .sb-menu a {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
    }
    .sb-cta a{
        width:100%;
        text-align:center;
        padding: 0.75rem 1.5rem;
    }
    .sb-welcome {
        text-align: center;
        margin: 1rem 0;
    }

    /* open state */
    .sb-toggle:checked ~ .sb-menu{transform:translateY(0)}
    .sb-toggle:checked + .sb-burger span:nth-child(1){transform:translateY(10px) rotate(45deg)}
    .sb-toggle:checked + .sb-burger span:nth-child(2){opacity:0}
    .sb-toggle:checked + .sb-burger span:nth-child(3){transform:translateY(-10px) rotate(-45deg)}
}

/* ========== VERY SMALL (<=430px) FONT‑TWEAK ========== */
@media(max-width:430px){
    .sb-brand {
        font-size: 1.1rem;
        gap: 0.5rem;
    }
    .sb-brand img {
        height: 30px;
    }
    .sb-menu a{font-size:1rem}
    .sb-cta a{font-size:.97rem;padding:.6rem 1rem}
}

/* ======= CLOSE BUTTON (mobile only) ======= */
.sb-close{
    display:none;
    position:absolute;
    top:1.5rem;
    right:1.5rem;
    font-size:2rem;
    line-height:1;
    background:none;
    border:none;
    color:var(--yellow);
    cursor:pointer;
    z-index:50;
    transition:transform var(--t);
}
.sb-close:active{transform:scale(.9)}
@media(max-width:991px){.sb-close{display:block}}


