
/* @font-face {
    font-family: "MayanmarMN";
    src: url("./fonts/myanmar-mn.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
} */
@font-face {
    font-family: "CircularStd";
    src: url("./fonts/circular-std-medium-500.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
.manrope {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
}
html,
body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    background-color: #ffffff;
    scroll-behavior: smooth;
}
.section-top-vector {
    width: 444.5px;
    height: 260px;
    left: -10%;
    top: 2rem;
    position: absolute;
}
.section-bottom-vector {
    width: 444.5px;
    height: 260px;
    right: -5%;
    bottom: 0;
    position: absolute;
    z-index: 9999;
}
.section-bottom-vector-hero {
    width: 444.5px;
    height: 260px;
    right: 13%;
    bottom: -18%;
    position: absolute;
    z-index: 9999;
}
.top-0 {
    top: -30px !important;
}
.main-container {
    max-width: 1200px;
    margin: 0 auto;
}


.section-subtitle {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #727171;
}
.section-title {
    font-size: 35px;
    font-weight: 400;
    text-align: center;
    background: linear-gradient(90deg, #1A212A 0%, #2D5689 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "CircularStd", sans-serif;
}



/* Navbar  */

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.main-container-nav {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    z-index: 9999999;
    background: #fff;
}

.navbar-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.nav-image-wrapper {
    height: 68px;
    width: 240px;
}

.nav-image {
    height: 100%;
    width: 100%;
}

.nav-links-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.nav-item {
    position: relative;
}

.nav-links {
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Manrope", sans-serif;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.nav-links:hover {
    color: #0066cc;
}

/* Replaced dropdown-arrow styling with Material Icon */
.dropdown-arrow {
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow,
.nav-item.active .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-btn-wrapper {
    position: relative;
    width: 160px;
    height: 50px;
    border: 1px solid #000;
    padding: 12px 26px;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    border-radius: 8px;
    text-align: center;
    font-family: "Manrope", sans-serif;
    text-decoration: none;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.45s ease;
    z-index: 1;
    background-color: transparent;
}

.nav-btn-wrapper::before {
    content: "";
    position: absolute;
    bottom: -120%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: #000;
    border-radius: 50% 50% 0 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                bottom 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-btn-wrapper:hover::before {
    bottom: 0;
}

.nav-btn-wrapper:hover {
    color: #fff;
}

/* Dropdown Styles - Full Width */
.dropdown-menu {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    /* background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
    top: 6rem;
    padding: 40px 0;
    background-color: #fff;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.dropdown-grid {
    display: grid;
    gap: 20px;
}

.dropdown-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.dropdown-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* Services Dropdown - Blue theme for main categories */
.services-dropdown .dropdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 20px 0;
}

.services-dropdown .dropdown-item {
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.services-dropdown .dropdown-item:hover {
    background-color: transparent;
    transform: none;
    box-shadow: none;
}

.services-dropdown .category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background-color: #f0f5ff;
    border: 2px solid #cce0ff;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-dropdown .category-header:hover {
    background-color: #e6ecff;
    border-color: #99b3ff;
}

.services-dropdown .category-icon {
    width: 40px;
    height: 40px;
    background-color: #4d94ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
}

.services-dropdown .category-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.services-dropdown .category-arrow {
    margin-left: auto;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.services-dropdown .sub-category.active .category-arrow {
    transform: rotate(180deg);
}

/* Sub-items for QA categories */
.services-dropdown .sub-items {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.services-dropdown .sub-category.active .sub-items {
    display: grid;
}

.services-dropdown .sub-item {
    background-color: #fff5f5;
    border: 2px solid #ffcccc;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.services-dropdown .sub-item:hover {
    background-color: #ffe6e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.services-dropdown .sub-item-icon {
    width: 52px;
    height: 52px;
    background-color: #ff9999;
    border-radius: 8px;
    flex-shrink: 0;
}

.services-dropdown .sub-item-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.services-dropdown .sub-item-content p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

/* AI items display (9 items in 3 columns - default state) */
.services-dropdown .ai-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.services-dropdown .ai-item {
    background-color: #f0f5ff;
    border: 2px solid #cce0ff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.services-dropdown .ai-item:hover {
    background-color: #e6ecff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.services-dropdown .ai-item-icon {
    width: 52px;
    height: 52px;
    background-color: #4d94ff;
    border-radius: 8px;
    flex-shrink: 0;
}

.services-dropdown .ai-item-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.services-dropdown .ai-item-content p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

/* Solutions Dropdown - Red Boxes - 7 items */
.solutions-dropdown .dropdown-grid {
    grid-template-columns: repeat(3, 1fr);
}

.solutions-dropdown .dropdown-item {
    /* background-color: #fff5f5; */
    /* border: 2px solid #ffcccc; */
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.solutions-dropdown .dropdown-item:hover {
    /* background-color: #ffe6e6; */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: linear-gradient(90deg, #E4F4FF 0%, #C1E5FE 100%);
}

.solutions-dropdown .dropdown-icon {
    width: 52px;
    height: 52px;
    /* background-color: #ff9999; */
    border-radius: 8px;
    flex-shrink: 0;
}

.solutions-dropdown .dropdown-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.solutions-dropdown .dropdown-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Why Partner Dropdown - Yellow Boxes */
.partner-dropdown .dropdown-item {
    /* background-color: #fffbf0; */
    /* border: 2px solid #ffe8a1; */
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.partner-dropdown .dropdown-item:hover {
    /* background-color: #fff8e1; */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: linear-gradient(90deg, #E4F4FF 0%, #C1E5FE 100%);
}

.partner-dropdown .dropdown-icon {
    width: 52px;
    height: 52px;
    /* background-color: #ffd54f; */
    border-radius: 8px;
    flex-shrink: 0;
}

.partner-dropdown .dropdown-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.partner-dropdown .dropdown-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    max-width: 400px;
}

/* Tools & Tech Dropdown - Green Boxes */
.tools-dropdown .dropdown-item {
    /* background-color: #f0fff4; */
    /* border: 2px solid #b2f5c8; */
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.tools-dropdown .dropdown-item:hover {
    /* background-color: #e6ffe6; */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: linear-gradient(90deg, #E4F4FF 0%, #C1E5FE 100%);
}

.tools-dropdown .dropdown-icon {
    width: 52px;
    height: 52px;
    /* background-color: #69f0ae; */
    border-radius: 8px;
    flex-shrink: 0;
}

.tools-dropdown .dropdown-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.tools-dropdown .dropdown-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    max-width: 400px;
}

/* New Services Dropdown Styles with Breadcrumb Navigation */
.services-dropdown {
    /* top: calc(100% + 12px); */
}

.services-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 0 24px 0;
    /* border-bottom: 1px solid #e0e0e0; */
    /* margin-bottom: 24px; */
    font-size: 14px;
    font-weight: 600;
}

.breadcrumb-item {
    cursor: pointer;
    color: #666;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    user-select: none;
    text-decoration: none;
}

.breadcrumb-item:hover {
    color: #0066cc;
    background-color: #f0f5ff;
}

.breadcrumb-item.active {
    color: #0066cc;
    font-weight: 700;
}

.breadcrumb-separator {
    color: #999;
    font-weight: 400;
}

.services-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.services-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* AI Services Grid (3 columns) */
.services-grid.ai-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* QA Services Structure */
.qa-subcategories {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.qa-category {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.qa-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background-color: #f8f8f8;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.qa-category-header:hover {
    background-color: #f0f0f0;
}

.qa-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.qa-toggle {
    font-size: 20px;
    color: #666;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.qa-category.expanded .qa-toggle {
    transform: rotate(180deg);
}

.qa-items-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 20px;
    background-color: #ffffff;
}

.qa-category.expanded .qa-items-grid {
    display: grid;
}

/* Service Cards (used for both AI and QA items) */
.service-card {
    /* background-color: #ffffff; */
    /* border: 2px solid #e0e0e0; */
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.service-card:hover {
    /* border-color: #0066cc; */
    /* background-color: #E4F4FF; */
    background: linear-gradient(90deg, #E4F4FF 0%, #C1E5FE 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    flex-shrink: 0;
}

.services-grid .service-icon {
    /* background-color: #4d94ff; */
}

.qa-manual-icon {
    /* background-color: #ff9999; */
}

.qa-automation-icon {
    /* background-color: #66b3ff; */
}

.service-info {
    flex: 1;
}

.service-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.service-info p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

/* Added Styles for QA Selector */
.qa-selector {
    display: flex;
    align-items: center;
    gap: 24px;
    /* padding: 0 0 24px 0; */
    /* border-bottom: 1px solid #e0e0e0; */
    margin-bottom: 24px;
}

.qa-option {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    user-select: none;
    font-size: 0.8rem;
    text-decoration: none;
}

.qa-option:hover {
    color: #0066cc;
    background-color: rgba(240, 245, 255, 0.661);
}

.qa-option.active {
    /* color: #0066cc; */
    font-weight: 600;
    /* background-color: #f0f5ff; */
    font-size: 0.8rem;
}

/* New styles for QA content visibility */
.qa-manual-content,
.qa-automation-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.qa-manual-content.active,
.qa-automation-content.active {
    display: block;
}

/* Adjust QA category grid to not have grid display */
.qa-subcategories {
    gap: 0; /* Removed gap for QA subcategories */
}

.qa-category {
    border: none; /* Removed border for QA categories */
}

.qa-category-header {
    background-color: transparent; /* Removed background for QA headers */
    padding: 0 0 20px 0; /* Adjust padding */
}

.qa-category-header:hover {
    background-color: transparent; /* Removed hover effect */
}

.qa-label {
    font-size: 18px; /* Increased font size for QA labels */
    font-weight: 700;
    color: #000;
}

.qa-toggle {
    display: none; /* Hidden QA toggle */
}

.qa-items-grid {
    display: grid !important; /* Force QA items grid to be visible */
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 20px 0 0 0; /* Adjust padding */
}

/* QA Services Grid (3 columns, full-width) */
.services-grid.qa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Add mobile hamburger menu styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    position: relative;
    z-index: 1001;
}

.hamburger-menu span {
    width: 24px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    overflow-y: auto;
    z-index: 1000;
    padding-top: 100px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-items {
    padding: 20px 24px;
}

.mobile-menu-item {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}

.mobile-menu-item-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.mobile-menu-item-label:hover {
    color: #0066cc;
}

.mobile-menu-chevron {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.mobile-menu-item.active .mobile-menu-chevron {
    transform: rotate(180deg);
}

.mobile-menu-submenu {
    display: none;
    padding-left: 24px;
    padding-top: 12px;
}

.mobile-menu-item.active .mobile-menu-submenu {
    display: block;
}

.mobile-submenu-item {
    padding: 12px 0;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
}

.mobile-submenu-item:hover {
    color: #0066cc;
}

.mobile-submenu-item.has-submenu {
    font-weight: 600;
    color: #000;
}

.mobile-submenu-chevron {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.mobile-submenu-item.active .mobile-submenu-chevron {
    transform: rotate(180deg);
}

.mobile-submenu-nested {
    display: none;
    padding-left: 24px;
    padding-top: 12px;
}

.mobile-submenu-item.active .mobile-submenu-nested {
    display: block;
}

.mobile-nested-item {
    padding: 10px 0;
    color: #999;
    font-size: 13px;
    cursor: pointer;
}

.mobile-nested-item:hover {
    color: #0066cc;
}

/* Hide nav-links on mobile, show hamburger */
@media (max-width: 768px) {
    .nav-links-wrapper {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-btn-wrapper {
        display: none;
    }
}

/* Desktop view unchanged */
@media (min-width: 769px) {
    .hamburger-menu,
    .mobile-menu {
        display: none !important;
    }
}
.mobile-submenu-item.active + .mobile-submenu-nested {
    display: block;
}

.nav-images-logo{
    height: 50px;
    width: 50px;
    object-fit: cover;
}
  

/* Footer  */

.footer-section {
    width: 100%;
    padding: 88px 0 0;
    background: linear-gradient(90deg, #001623 0%, #000000 100%);
}
.footer-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.footer-top-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}
.footer-logo {
    width: 240px;
    height: 68px;
}
.links-wrapper {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 4rem;
}
.footer-links-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: left;
    gap: 1rem;
}
.links-title {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: 10%;
    font-weight: 400;
    color: #ffffff;
    font-family: "CircularStd", sans-serif;
}
.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: left;
    gap: 6px;
}
.footer-link {
    color: #ffffff;
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}
.footer-link span {
    font-weight: 700;
}
.footer-icon {
    height: 22px;
    width: 22px;
}
.footer-form-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: left;
    gap: 1rem;
    width: 291px;
}
.footer-form-title-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: left;
    gap: 0.5rem;
}
.footer-form-title {
    font-size: 21px;
    /* line-height: 60px; */
    /* letter-spacing: 12%; */
    font-weight: 400;
    color: #ffffff;
    font-family: "CircularStd", sans-serif;
}
.footer-form-para {
    font-size: 9px;
    font-weight: 300;
    line-height: 16px;
    max-width: 265px;
    color: #ffffffca;
}
.footer-form {
    display: flex;
    flex-direction: column;
    /* gap: 1rem; */
}


.form-container {
    width: 100%;
}

.form-group {
    margin-bottom: 10px;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 20px 24px;
    font-size: 12px;
    color: #ffffff;
    background-color: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    outline: none;
    transition: all 0.3s ease;
    max-width: 291px;
    max-height: 36px;
}

input[type="text"]:focus,
input[type="email"]:focus {
    border-color: #d1d5db;
    color: #ffffff;
}

input::placeholder {
    color: #9ca3af;
}

.submit-btn {
    padding: 8px 35px;
    font-size: 12px;
    font-weight: 500;
    color: #000000;
    background-color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.7rem;
}
.country-code-dropdown{
    background-color: black;
    color: white;
}
.submit-btn:hover {
    background-color: #d7dbe1;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}
.footer-bottom-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 36px 221px;
    border-top: 1px solid #FFFFFF4D;
}
.footer-bottom-center-wrapper {
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}



/* ========================= */
/* FOOTER TABLET RESPONSIVE - 768px to 1024px */
/* ========================= */

@media (max-width: 1024px) {
    .footer-section {
        padding: 60px 0 0;
    }
    
    .footer-wrapper {
        gap: 40px;
    }
    
    .footer-top-wrapper {
        flex-wrap: wrap;
        gap: 50px;
        padding: 0 30px;
    }
    
    .footer-logo {
        width: 200px;
        height: 56px;
    }
    
    .links-wrapper {
        gap: 3rem;
    }
    
    .footer-form-wrapper {
        width: 100%;
        max-width: 350px;
    }
    
    input[type="text"],
    input[type="email"] {
        max-width: 100%;
    }
    
    .footer-bottom-wrapper {
        padding: 30px 100px;
    }
    
    .footer-bottom-center-wrapper {
        font-size: 15px;
    }
}

/* ========================= */
/* FOOTER MOBILE RESPONSIVE - Below 768px */
/* ========================= */

@media (max-width: 768px) {
    .footer-section {
        padding: 50px 0 0;
    }
    
    .footer-wrapper {
        gap: 35px;
    }
    
    .footer-top-wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
        align-items: flex-start;
    }
    
    .footer-logo {
        width: 180px;
        height: 50px;
        align-self: center;
    }
    
    .links-wrapper {
        flex-direction: column;
        gap: 2.5rem;
        width: 100%;
    }
    
    .footer-links-wrapper {
        gap: 0.8rem;
    }
    
    .links-title {
        font-size: 19px;
        line-height: 28px;
    }
    
    .footer-link {
        font-size: 15px;
        line-height: 24px;
        gap: 0.8rem;
    }
    
    .footer-icon {
        height: 20px;
        width: 20px;
    }
    
    .footer-form-wrapper {
        width: 100%;
        max-width: 100%;
        gap: 0.8rem;
    }
    
    .footer-form-title {
        font-size: 19px;
    }
    
    .footer-form-para {
        font-size: 11px;
        line-height: 18px;
        max-width: 100%;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    input[type="text"],
    input[type="email"] {
        padding: 18px 20px;
        font-size: 13px;
        max-width: 100%;
        max-height: 40px;
    }
    
    .submit-btn {
        padding: 10px 40px;
        font-size: 13px;
        width: 100%;
        max-width: 200px;
    }
    
    .footer-bottom-wrapper {
        padding: 25px 40px;
    }
    
    .footer-bottom-center-wrapper {
        font-size: 14px;
        line-height: 22px;
    }
}

/* ========================= */
/* FOOTER SMALL MOBILE - Below 480px */
/* ========================= */

@media (max-width: 480px) {
    .footer-section {
        padding: 40px 0 0;
    }
    
    .footer-wrapper {
        gap: 30px;
    }
    
    .footer-top-wrapper {
        gap: 35px;
        padding: 0 15px;
    }
    
    .footer-logo {
        width: 160px;
        height: 45px;
    }
    
    .links-wrapper {
        gap: 2rem;
    }
    
    .footer-links-wrapper {
        gap: 0.7rem;
    }
    
    .links-title {
        font-size: 18px;
        line-height: 26px;
    }
    
    .footer-link {
        font-size: 14px;
        line-height: 22px;
        gap: 0.6rem;
    }
    
    .footer-icon {
        height: 18px;
        width: 18px;
    }
    
    .footer-form-wrapper {
        gap: 0.7rem;
    }
    
    .footer-form-title {
        font-size: 18px;
    }
    
    .footer-form-para {
        font-size: 10px;
        line-height: 16px;
    }
    
    .form-group {
        margin-bottom: 10px;
    }
    
    input[type="text"],
    input[type="email"] {
        padding: 16px 18px;
        font-size: 12px;
        max-height: 38px;
    }
    
    .submit-btn {
        padding: 9px 35px;
        font-size: 12px;
        max-width: 180px;
    }
    
    .footer-bottom-wrapper {
        padding: 20px 20px;
    }
    
    .footer-bottom-center-wrapper {
        font-size: 12px;
        line-height: 20px;
    }
    .section-bottom-vector-hero{
        display: none;
    }
}

/* ========================= */
/* EXTRA SMALL SCREENS - Below 360px */
/* ========================= */

@media (max-width: 360px) {
    .footer-top-wrapper {
        padding: 0 12px;
    }
    
    .footer-logo {
        width: 140px;
        height: 40px;
    }
    
    .links-title {
        font-size: 17px;
    }
    
    .footer-link {
        font-size: 13px;
        line-height: 20px;
    }
    
    .footer-form-title {
        font-size: 17px;
    }
    
    .footer-form-para {
        font-size: 9px;
        line-height: 15px;
    }
    
    input[type="text"],
    input[type="email"] {
        padding: 14px 16px;
        font-size: 11px;
    }
    
    .submit-btn {
        padding: 8px 30px;
        font-size: 11px;
        max-width: 160px;
    }
    
    .footer-bottom-wrapper {
        padding: 18px 15px;
    }
    
    .footer-bottom-center-wrapper {
        font-size: 11px;
        line-height: 18px;
    }
    
}

/* Mobile number field layout */
.mobile-group {
    display: flex;
    gap: 10px;
    flex-direction: row;
}

/* Country code box */
.country-code-box select {
    height: 36px;
    padding: 0 12px;
    font-size: 12px;
    color: #ffffff;
    background-color: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

/* Remove default arrow styling (clean look) */
.country-code-box select {
    appearance: none;
}

/* Mobile input takes remaining space */
.mobile-group input[type="tel"] {
    flex: 1;
    padding: 8px;
    font-size: 12px;
    color: #ffffff;
    background-color: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    outline: none;
}

/* Focus effect */
.country-code-box select:focus,
.mobile-group input[type="tel"]:focus {
    border-color: #d1d5db;
}

@media (max-width: 480px) {
    .mobile-group {
        flex-direction: row;
    }

    .country-code-box select {
        height: 38px;
        font-size: 12px;
    }
}



.mobile-nested-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}
.mobile-nested-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}
.mobile-nested-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}
a {
    text-decoration: none;
    color: #000;
}




/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0E76BC 0%, #0798ffe2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 1;
    visibility: visible;
    transform: translateY(20px);

    transition: all 0.3s ease;
    z-index: 9999;
}
.scroll-to-top svg{
    height: 30px;
    width: 30px;
    transform: translate(-90deg);
    rotate: 90deg;
    fill: white;
}
.scroll-to-top:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* THIS WAS MISSING! */
.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 35px;
        right: 20px;
    }
}


/* About Us Dropdown Styles */
.about-dropdown .about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-dropdown .about-description {
    flex: 1;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    text-align: left;
    margin: 0;
    max-width: 500px;
}

.about-dropdown .about-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(90deg, #1A212A 0%, #2D5689 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.about-dropdown .about-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 86, 137, 0.3);
}

.about-dropdown .about-read-more .material-icons {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.about-dropdown .about-read-more:hover .material-icons {
    transform: translateX(4px);
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .about-dropdown .about-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
        gap: 20px;
    }
    
    .about-dropdown .about-description {
        font-size: 14px;
    }
    
    .about-dropdown .about-read-more {
        padding: 12px 24px;
        font-size: 14px;
        align-self: center;
    }
}




/* Trigger Button */
.popup-trigger-btn {
    background: linear-gradient(135deg, #1A212A 0%, #2D5689 100%);
    color: white;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-trigger-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.popup-trigger-btn:active {
    transform: translateY(-1px);
}

/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 4rem;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
    padding: 20px;
}

.popup-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Popup Container */
.popup-container {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.4s ease;
    position: relative;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f0f0f0;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #666;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-close:hover {
    background: #e0e0e0;
    color: #333;
    transform: rotate(90deg);
}

/* Popup Content */
.popup-content {
    padding: 30px 40px;
}

.popup-header {
    text-align: center;
    margin-bottom: 10px;
}

.popup-header h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1A212A;
    margin-bottom: 10px;
}

.popup-header p {
    font-size: 0.8rem;
    color: #666;
    line-height: 22px;
}

/* Form Groups */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
}

.form-input,
.form-group textarea {
    width: 100%;
    padding: 5px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: "Manrope", sans-serif;
    transition: all 0.3s ease;
    color: #000;
}

.form-input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Mobile Number Group */
.mobile-group {
    display: flex;
    gap: 10px;
    flex-direction: row;
}

.country-code-select {
    width: 90px;
    padding: 5px 10px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 0.75rem;
    background-color: #fff;
    font-family: "Manrope", sans-serif;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

.country-code-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.mobile-input {
    flex: 1;
}

/* Character Count */
.char-count {
    text-align: right;
    color: #999;
    font-size: 0.85rem;
    margin-top: -15px;
    margin-bottom: 10px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: #1A212A;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    /* margin-top: 10px; */
}

.submit-btn:hover {
    background: #2D5689;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Success Message */
.success-msg {
    display: none;
    background: #4CAF50;
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    margin-top: 15px;
    animation: slideDown 0.4s ease;
}

.success-msg.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar Styling */
.popup-container::-webkit-scrollbar {
    width: 8px;
}

.popup-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.popup-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.popup-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .popup-trigger-btn {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .popup-container {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 15px;
    }

    .popup-content {
        padding: 50px 25px 30px 25px;
    }

    .popup-header h2 {
        font-size: 24px;
    }

    .popup-header p {
        font-size: 13px;
    }

    .popup-close {
        top: 15px;
        right: 15px;
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .country-code-select {
        width: 85px;
        padding: 10px 8px;
        font-size: 0.9rem;
    }

    .form-group textarea {
        min-height: 90px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {

    .popup-trigger-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .popup-content {
        padding: 45px 20px 25px 20px;
    }

    .popup-header h2 {
        font-size: 22px;
    }

    .popup-header p {
        font-size: 12px;
        line-height: 20px;
    }

    .popup-close {
        top: 12px;
        right: 12px;
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }

    .form-group {
        margin-bottom: 16px;
        gap: 6px;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-input,
    .form-group textarea {
        padding: 9px 11px;
        font-size: 0.85rem;
        border-radius: 6px;
    }

    .mobile-group {
        gap: 8px;
    }

    .country-code-select {
        width: 80px;
        padding: 9px 6px;
        font-size: 0.85rem;
    }

    .form-group textarea {
        min-height: 85px;
    }

    .char-count {
        font-size: 0.8rem;
        margin-top: -12px;
    }

    .submit-btn {
        padding: 11px;
        font-size: 0.9rem;
    }

    .success-msg {
        padding: 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .popup-content {
        padding: 40px 15px 20px 15px;
    }

    .popup-header h2 {
        font-size: 20px;
    }

    .country-code-select {
        width: 75px;
    }
}