@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}

body {
    background: #ffffff;
    line-height: 1.6;
}

/* Common Section Styles */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 0 20px; */
    padding: 0 100px;
    padding-buttom: 300px;
}

.h1 {
    font-family: 'Varela Round', sans-serif;
}

.h2 {
    font-family: 'Varela Round', sans-serif;
}


/* Hero Section */
.hero-section {
    padding: 60px 0;
    padding-top: 100px;
    /* padding-buttom: 100px; */
}

.content-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.text-content {
    flex: 1;
}

.subtitle {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #3A3A3A;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}



.image-container {
    flex: 1;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Partner Section */
.text-section {
    /* padding: 80px 0; */
    margin: 80px 0;
}

.section-title {
    font-size: 30px;
    font-weight: 500;
    line-height: 30px;
    color: #383838;
    margin: 0 auto 25px auto;
    text-align: center;
    /* margin: 10px; */
    /* margin: 10px;
    margin-right: 100px;
    margin-left: 100px; */
}

/* Services Section */
.services-section {
    padding: 0px 0;
    /* background: #f8fafc; */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 10px;
    justify-content: center;
    align-items: center;
    align-self: auto;
}




.services-grid2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 150px;
}

.services-grid3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-bottom: 150px;
}

.service-box {
    background: #40B0D7;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none !important;
}

.service-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.service-icon {
    font-size: 1.4rem;
    color: #ffffff;
}

.service-text {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Requirements Section */
.text-section2 {
    padding: 60px 0;
}

.section-title2 {
    font-size: 22px;
    font-weight: 500;
    line-height: 26px;
    color: #383838;
    text-align: center;
    /* margin: 20px;
    margin-right: 130px;
    margin-left: 130px; */
}


/* Common Section Styles */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 0 20px; */
    padding: 0 100px;
    padding-buttom: 300px;
}

/* Video Section */
.video-section {
    padding: 60px 0;
    margin-top: 150px;
}

.video-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-container {
        padding: 30 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        gap: 30px;
    }

    .main-title {
        font-size: 36px;
        text-align: center;
    }

    .subtitle {
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .video-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title,
    .section-title2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 30px;
    }

    .subtitle {
        font-size: 14px;
    }

    .section-title,
    .section-title2 {
        font-size: 16px;
    }

    .service-text {
        font-size: 12px;
    }
}



/* Header Styles */
/* Update existing header styles */
.main-header {
    border-bottom: 2px solid #40B0D7;
    /* Changed from transparent */
    box-shadow: 0 2px 15px rgba(64, 176, 215, 0.1);
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(64, 176, 215, 0.2);
}

.header-scrolled {
    border-bottom: 2px solid #40B0D7 !important;
    box-shadow: 0 2px 15px rgba(64, 176, 215, 0.1);
    border-bottom-color: #40B0D7 !important;
}





.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container .logo {
    height: 45px;
    width: auto;
}

.main-nav .nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: #2d3a4b;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;

    transition: color 0.3s ease;

}

.nav-link:hover {
    color: #40B0D7;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-text {
    color: #6b7280;
    font-size: 0.9rem;
}

.phone-link {
    color: #40B0D7;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }

    .main-nav {
        display: none;
    }

    .logo-container .logo {
        height: 35px;
    }

    .header-contact {
        flex-direction: column;
        gap: 2px;
    }

    .contact-text {
        font-size: 0.8rem;
    }

    .phone-link {
        font-size: 1rem;
    }
}



/* Header Structure */
.main-header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}






/* Dropdown Menus */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 15px 0;
    display: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 8px 20px;
    position: relative;
}

.dropdown-menu a {
    color: #4a5568;
    font-size: 14px;
    display: block;
    transition: all 0.2s ease;

}

/* Third Level Menu */
.dropdown-submenu .dropdown-menu-l3 {
    position: absolute;
    left: 100%;
    top: -15px;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: none;
}

.dropdown-submenu:hover .dropdown-menu-l3 {
    display: block;
}

/* Contact Section */
.header-contact .phone-link {
    background: #40B0D7;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.header-contact .fa-phone {
    font-size: 14px;
}

/* Hover Effects */
.nav-link:hover {
    color: #40B0D7;
}

.dropdown-menu a:hover {
    color: #40B0D7;
    transform: translateX(5px);
    text-decoration: none !important;

}

.header-contact .phone-link:hover {
    background: #2d8eb5;
}


.user-profile-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.profile-card {
    display: flex;
    align-items: center;
    padding: 20px;
    /* background: white; */
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px; */
    max-width: 500px;
    width: 100%;
}

.profile-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
}

.profile-details {
    text-align: left;
}

.user-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}




/* Mobile Menu */
@media (max-width: 992px) {

    .main-nav,
    .header-contact {
        display: none;
    }

    .header-container {
        padding: 0 20px;
        height: 60px;
    }

    .logo-container .logo {
        height: 35px;
    }
}



/* Remove underlines from all menu items */
.nav-link,
.dropdown-menu a,
.dropdown-menu-l3 a {
    text-decoration: none !important;
}

/* Remove bullet points from all menus */
.nav-list,
.dropdown-menu,
.dropdown-menu-l3 {
    list-style: none;
    padding-left: 0;
}

/* Add borders to separate menu items */
.dropdown-menu li {
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 20px;
    margin: 0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu-l3 li {
    border-right: 2px solid #40B0D7;
    padding: 10px 15px;
}

.dropdown-menu-l3 li:last-child {
    border-right: none;
}

/* Add border to main menu items */
.nav-list>li:not(:last-child) {
    border-right: 1px solid #e0e0e0;
    padding-right: 25px;
}

/* Hover effects with borders */
.dropdown-menu {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.dropdown-menu-l3 {
    border-left: 2px solid #40B0D7;
}