         * {
             margin: 0;
             padding: 0;
             box-sizing: border-box;
         }

         body {
             font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
         }

         /*-------------------------------------------------------- Navbar Styles----------------------------------------------- */
         .navbar {
             position: fixed;
             top: 0;
             left: 0;
             width: 100%;
             padding: 5px 50px;
             display: flex;
             justify-content: space-between;
             align-items: center;
             background: linear-gradient(90deg, rgba(30, 60, 100, 0.95) 0%, rgba(40, 70, 110, 0.95) 100%);
             transition: all 0.4s ease;
             z-index: 999;

             box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
             border-bottom: 1px solid white;
             height: 100px;
         }


         /* Logo Section */
         .logo-section {
             display: flex;
             align-items: center;
             gap: 12px;
         }

         .logo {
             width: 150px;
             height: 150px;
             /* background: #1e3c64; */
             /* border-radius: 8px; */
             display: flex;
             align-items: center;
             justify-content: center;
             /* padding: 8px; */
         }

         .logo img {
             width: 100%;
             height: 100%;
             object-fit: contain;
         }


         .navbar.scrolled .logo-text {
             color: #1e3c64;
         }

         /* Navigation Menu */
         .nav-menu {
             display: flex;
             list-style: none;
             gap: 40px;
             align-items: center;
         }

         .nav-item {
             position: relative;
         }

         .nav-link {
             text-decoration: none;
             color: white;
             font-size: 16px;
             font-weight: 500;
             transition: color 0.3s ease;
             display: flex;
             align-items: center;
             gap: 5px;
             cursor: pointer;
         }

         .navbar.scrolled .nav-link {
             color: #333;
         }

         .nav-link:hover {
             color: #4a90e2;
         }

         /* Dropdown Arrow */
         .dropdown-arrow {
             width: 0;
             height: 0;
             border-left: 4px solid transparent;
             border-right: 4px solid transparent;
             border-top: 5px solid white;
             transition: all 0.3s ease;
         }

         .navbar.scrolled .dropdown-arrow {
             border-top-color: #333;
         }

         .nav-item:hover .dropdown-arrow {
             border-top-color: #4a90e2;
             transform: rotate(180deg);
         }

         /* Dropdown Menu */
         .dropdown-menu {
             position: absolute;
             top: 100%;
             left: 50%;
             transform: translateX(-50%) translateY(-10px);
             margin-top: 15px;
             background: white;
             min-width: 800px;
             max-height: 80vh;
             border-radius: 12px;
             box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
             opacity: 0;
             visibility: hidden;
             transition: all 0.3s ease;
             padding: 30px;
             display: grid;
             grid-template-columns: repeat(4, 1fr);
             gap: 30px;
              overflow-y: auto;
              overflow-x: hidden;

         }

         .nav-item:hover .dropdown-menu {
             opacity: 1;
             visibility: visible;
             transform: translateX(-72%) translateY(0);
             
         }

         .dropdown-menu::before {
             content: '';
             position: absolute;
             top: -8px;
             left: 50%;
             transform: translateX(844%);
             width: 0;
             height: 0;
             border-left: 10px solid transparent;
             border-right: 10px solid transparent;
             border-bottom: 10px solid white;
             
         }

         /* Dropdown Columns */
         .dropdown-column {
             display: flex;
             flex-direction: column;
             gap: 2px;
             

         }

         .dropdown-title {
             font-size: 11px;
             font-weight: 700;
             letter-spacing: 1px;
             color: #6b7280;
             margin-bottom: 12px;
             padding-bottom: 8px;
             border-bottom: 2px solid #e5e7eb;
         }

         .dropdown-item {
             padding: 10px 12px;
             color: #374151;
             text-decoration: none;
             display: block;
             transition: all 0.2s ease;
             font-size: 14px;
             border-radius: 6px;
             font-weight: 500;
             
         }

         .dropdown-item:first-child {
             border-radius: 6px;
         }

         .dropdown-item:last-child {
             border-radius: 6px;
         }

         .dropdown-item:hover {
             background: #f3f4f6;
             color: #2563eb;
             padding-left: 16px;
             transform: translateX(2px);
         }

         /* Contact Button */
         .contact-btn {
             background: #2563eb;
             color: white;
             padding: 10px 25px;
             border-radius: 6px;
             text-decoration: none;
             font-size: 16px;
             font-weight: 500;
             transition: all 0.3s ease;
             border: 2px solid #2563eb;
         }

         .contact-btn:hover {
             background: #1d4ed8;
             transform: translateY(-2px);
             box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
         }


         /* Hamburger Menu */
         .hamburger {
             display: none;
             flex-direction: column;
             cursor: pointer;
             gap: 5px;
             z-index: 1001;
             position: relative;
             padding: 8px;
             background: transparent;
             border: none;
             outline: none;
         }

         .hamburger span {
             width: 28px;
             height: 3px;
             background: white;
             border-radius: 3px;
             transition: all 0.4s ease;
             display: block;
             position: relative;
         }

         .navbar.scrolled .hamburger span {
             background: #333;
         }

         .hamburger.active span:nth-child(1) {
             transform: rotate(45deg) translate(9px, 9px);
             background: #333 !important;
         }

         .hamburger.active span:nth-child(2) {
             opacity: 0;
             transform: translateX(20px);
         }

         .hamburger.active span:nth-child(3) {
             transform: rotate(-45deg) translate(8px, -8px);
             background: #333 !important;
         }

         /* Mobile Menu Overlay */
         .mobile-menu-overlay {
             display: none;
             position: fixed;
             top: 0;
             left: 0;
             width: 100%;
             height: 100%;
             background: rgba(0, 0, 0, 0.6);
             z-index: 997;
             opacity: 0;
             visibility: hidden;
             transition: all 0.4s ease;
         }

         .mobile-menu-overlay.active {
             opacity: 1;
             visibility: visible;
         }

         /* Responsive */
         @media (max-width: 992px) {
             .navbar {
                 padding: 15px 30px;
             }

             .nav-menu {
                 gap: 25px;
             }

             .logo-text {
                 font-size: 16px;
             }

             /* Adjust mega menu for tablets */
             .dropdown-menu {
                 min-width: 700px;
               
                 grid-template-columns: repeat(3, 1fr);
                 gap: 20px;
                 padding: 25px;
             }

             .dropdown-column:last-child {
                 grid-column: span 3;
             }
         }

         @media (max-width: 850px) {

             /* Stack mega menu in 2 columns for smaller tablets */
             .dropdown-menu {
                 min-width: 600px;
                 grid-template-columns: repeat(2, 1fr);
                 gap: 20px;
             }

             .dropdown-column:last-child {
                 grid-column: span 2;
             }
         }

         @media (max-width: 768px) {
             .navbar {
                 padding: 12px 20px;
             }

             .logo {
                 width: 80px;
                 height: 80px;
             }

             .logo-text {
                 font-size: 14px;
                 max-width: 180px;
                 white-space: nowrap;
                 overflow: hidden;
                 text-overflow: ellipsis;
             }

             .hamburger {
                 display: flex;
             }

             .mobile-menu-overlay {
                 display: block;
             }

             .nav-menu {
                 position: fixed;
                 top: 0;
                 right: -100%;
                 width: 300px;
                 max-width: 85vw;
                 height: 100vh;
                 background: white;
                 flex-direction: column;
                 padding: 80px 0 30px;
                 gap: 0;
                 box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
                 transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                 z-index: 1000;
                 overflow-y: auto;
                 overflow-x: hidden;
             }

             .nav-menu.active {
                 right: 0;
             }

             .nav-item {
                 width: 100%;
                 border-bottom: 1px solid #e9ecef;
                 padding: 0;
             }

             .nav-item:last-child {
                 border-bottom: none;
                 padding: 0;
                 margin-top: 10px;
             }

             .nav-link {
                 color: #333;
                 font-size: 16px;
                 justify-content: space-between;
                 padding: 18px 30px;
                 width: 100%;
                 display: flex;
             }

             .nav-link:hover {
                 background: #f8f9fa;
                 color: #2563eb;
             }

             .dropdown-arrow {
                 border-top-color: #333;
                 transition: transform 0.3s ease;
             }

             /* Mobile Dropdown - Complete Rewrite */
             .dropdown-menu {
                 position: static;
                 opacity: 0;
                 visibility: hidden;
                 max-height: 0;
                 margin: 0;
                 padding: 0;
                 box-shadow: none;
                 background: #f8f9fa;
                 border-radius: 0;
                 overflow: scroll !important;
                 transition: all 0.4s ease;
                 transform: translateY(-10px);
                 display: flex;
                 flex-direction: column;
                 gap: 0;
                 min-width: 100%;
                 left: 0;
             }

             .dropdown-menu::before {
                 display: none;
             }

             /* When dropdown is open */
             .nav-item.dropdown-open .dropdown-menu {
                 opacity: 1;
                 visibility: visible;
                 max-height: 600px;
                 transform: translateY(0);
                 padding: 10px 0;

             }

             .nav-item.dropdown-open .dropdown-arrow {
                 transform: rotate(180deg);
                 border-top-color: #2563eb;
             }

             .nav-item.dropdown-open>.nav-link {
                 color: #2563eb;
                 background: #f8f9fa;
             }

             /* Mobile Dropdown Columns */
             .dropdown-column {
                 display: flex;
                 flex-direction: column;
                 gap: 0;
                 border-bottom: 1px solid #e5e7eb;
                 padding: 10px 0;


             }

             .dropdown-column:last-child {
                 border-bottom: none;

             }

             .dropdown-title {
                 font-size: 10px;
                 font-weight: 700;
                 letter-spacing: 1.2px;
                 color: #6b7280;
                 padding: 8px 30px 8px 50px;
                 margin: 0;
                 background: #e9ecef;
                 border-bottom: none;
             }

             .dropdown-item {
                 padding: 12px 30px 12px 50px;
                 font-size: 14px;
                 color: #4b5563;
                 border-left: 3px solid transparent;
                 border-radius: 0;
             }

             .dropdown-item:hover,
             .dropdown-item:active {
                 background: #e9ecef;
                 color: #2563eb;
                 padding-left: 55px;
                 border-left-color: #2563eb;
                 transform: none;
             }

             .contact-btn {
                 display: block;
                 text-align: center;
                 padding: 14px 30px;
                 font-size: 16px;
                 margin: 10px 20px;
                 width: calc(100% - 40px);
             }




         }

         @media (max-width: 480px) {
             .navbar {
                 padding: 12px 15px;
             }

             .logo {
                 width: 60px;
                 height: 60px;
             }

             .logo-text {
                 font-size: 13px;
                 max-width: 140px;
             }

             .nav-menu {
                 width: 280px;
             }

             .hamburger span {
                 width: 25px;
             }
         }

         @media (max-width: 360px) {
             .logo-text {
                 max-width: 100px;
                 font-size: 12px;
             }

             .nav-menu {
                 width: 260px;
             }

              .logo {
                 width: 70px;
                 height: 70px;
             }

         }



         /* ----------------------------------------------------------Navbar Section end----------------------------------------------------------- */




         /*------------------------------------------------------- Hero Section ---------------------------------------------------------*/
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a2f4d 0%, #2c4a6d 50%, #1e3a5f 100%);
    display: flex;
    align-items: center;
    justify-content: center;  /* ✅ Center content */
    padding: 120px 50px 80px;
    overflow: hidden;
    width: 100%;
}

/* Container */
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;  /* ✅ Changed from grid */
    justify-content: center;  /* ✅ Center content */
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Full Width Content */
.hero-content {
    color: white;
    text-align: center;  /* ✅ Center text */
    max-width: 1000px;  /* ✅ Limit width for readability */
    animation: fadeInUp 1s ease-out;
}

 

.hero-title {
    font-size: 64px;  /* ✅ Larger for full-width */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    margin-top: 70px;
}

.hero-title .highlight {
    color: #5eb3f6;
    display: block;
}

.hero-description {
    font-size: 20px;  /* ✅ Slightly larger */
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;  /* ✅ Center buttons */
}

.btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    outline: none;
}

.btn-primary {
    background: #5eb3f6;
    color: white;
    box-shadow: 0 4px 15px rgba(94, 179, 246, 0.3);
}

.btn-primary:hover {
    background: #4a9fe5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(94, 179, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Hero Features Section - In a Row */
.hero-features {
    display: flex;
    justify-content: center;  /* ✅ Center features */
    align-items: flex-start;
    gap: 60px;  /* ✅ More space between items */
    width: 100%;
    padding: 0;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 250px;
    text-align: center;  /* ✅ Center text in features */
}

.feature-title {
    font-size: 18px;  /* ✅ Slightly larger */
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 8px;
}

.feature-description {
    font-size: 15px;  /* ✅ Slightly larger */
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-weight: 400;
}

/* Remove logo section styles */
.hero-visual,
.logo-card,
.company-logo {
    display: none;  /* ✅ Hide logo section */
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 56px;
    }

    .hero-description {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 100px 40px 60px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-features {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 20px 50px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .hero-features .feature-item {
        max-width: 100%;
    }

    .whatsapp-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 90px 15px 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 8px 16px;
    }

    .hero-description {
        font-size: 15px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-description {
        font-size: 14px;
    }
}


/* WhatsApp Button with Shaking Effect */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: shake 2s ease-in-out infinite;  /* ✅ Added shaking animation */
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    animation: none;  /* ✅ Stop shaking on hover */
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Shaking Animation Keyframes */
@keyframes shake {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-8px) rotate(-5deg);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(8px) rotate(5deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
}


         /*---------------------------------------- Services Section (4 Cards) ----------------------------------------------------- */

         .services-section {
             max-width: 1400px;
             margin: 0 auto;
             padding: 40px 20px;
         }

         .services-grid {
             display: grid;
             grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
             gap: 30px;
             margin-top: 20px;
         }

         /* Service Card */
         .service-card {
             background: white;
             border-radius: 16px;
             padding: 40px 30px;

             position: relative;
             overflow: hidden;
             cursor: pointer;

         }


         /* Icon Container */
         .icon-container {
             width: 60px;
             height: 60px;
             border-radius: 12px;
             display: flex;
             align-items: center;
             justify-content: center;
             margin-bottom: 24px;
             position: relative;

         }


         /* Different icon colors for 4 cards */
         .service-card:nth-child(1) .icon-container {
             background: rgba(37, 99, 235, 0.1);
         }

         .service-card:nth-child(2) .icon-container {
             background: rgba(34, 197, 94, 0.1);
         }

         .service-card:nth-child(3) .icon-container {
             background: rgba(234, 179, 8, 0.1);
         }

         .service-card:nth-child(4) .icon-container {
             background: rgba(168, 85, 247, 0.1);
         }

         /* Icons */
         .service-icon {
             font-size: 28px;
         }

         /* Content */
         .service-title {
             font-size: 20px;
             font-weight: 700;
             color: #1a1a1a;
             margin-bottom: 16px;
             line-height: 1.4;

         }



         .service-description {
             font-size: 15px;
             line-height: 1.7;
             color: #64748b;
         }

         /* Responsive Design */
         @media (max-width: 1200px) {
             .services-grid {
                 grid-template-columns: repeat(2, 1fr);
                 gap: 28px;
             }
         }

         @media (max-width: 992px) {
             .services-grid {
                 grid-template-columns: repeat(2, 1fr);
                 gap: 24px;
             }

             .service-card {
                 padding: 32px 24px;
             }
         }

         @media (max-width: 768px) {
             .services-section {
                 padding: 40px 20px;
             }

             .services-grid {
                 grid-template-columns: 1fr;
                 gap: 20px;
             }

             .service-card {
                 padding: 30px 24px;
             }

             .service-title {
                 font-size: 18px;
             }

             .service-description {
                 font-size: 14px;
             }

             .icon-container {
                 width: 56px;
                 height: 56px;
             }

             .service-icon {
                 font-size: 24px;
             }
         }

         @media (max-width: 480px) {
             .service-card {
                 padding: 24px 20px;
             }

             .icon-container {
                 width: 52px;
                 height: 52px;
             }

             .service-icon {
                 font-size: 22px;
             }
         }


         /*---------------------------------------- Services Section (4 Cards) ----------------------------------------------------- */


         /* --------------------------------------------------About Section---------------------------------------------------------  */

.about-container {
    max-width: 100%;  /* ✅ Changed from 1400px to full width */
    width: 100%;
    background: white;
    border-radius: 0;  /* ✅ Removed border radius for full width */
    overflow: hidden;
    padding: 80px 50px;  /* ✅ Added padding */
}

.about-content {
    display: flex;  /* ✅ Changed from grid to flex */
    flex-direction: column;  /* ✅ Single column */
    gap: 0;
    align-items: center;
    max-width: 1400px;  /* ✅ Content max-width */
    margin: 0 auto;  /* ✅ Center the content */
}

.text-section {
    padding: 0;  /* ✅ Reset padding */
    text-align: center;  /* ✅ Center text */
    opacity: 0;
    transform: translateY(-50px);  /* ✅ Changed animation direction */
    animation: slideInDown 1s ease forwards;
    width: 100%;
}

.about-label {
    color: #667eea;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInDown 0.8s ease 0.3s forwards;
}

.main-heading {
    font-size: 42px;
    color: #1a202c;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
    opacity: 0;
    animation: fadeInDown 0.8s ease 0.5s forwards;
    max-width: 900px;  /* ✅ Limit heading width */
    margin-left: auto;
    margin-right: auto;
}

.description {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 60px;  /* ✅ More space before features */
    opacity: 0;
    animation: fadeInDown 0.8s ease 0.7s forwards;
    max-width: 800px;  /* ✅ Limit description width */
    margin-left: auto;
    margin-right: auto;
}

.features-list {
    list-style: none;
    display: flex;  /* ✅ Display in a row */
    justify-content: center;  /* ✅ Center items */
    gap: 50px;  /* ✅ Space between items */
    flex-wrap: wrap;  /* ✅ Wrap on smaller screens */
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    flex-direction: column;  /* ✅ Stack icon and text vertically */
    align-items: center;  /* ✅ Center content */
    text-align: center;  /* ✅ Center text */
    max-width: 300px;  /* ✅ Limit item width */
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.feature-item:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.9s forwards;
}

.feature-item:nth-child(2) {
    animation: fadeInUp 0.6s ease 1.1s forwards;
}

.feature-item:nth-child(3) {
    animation: fadeInUp 0.6s ease 1.3s forwards;
}

.feature-item:hover {
    transform: translateY(-10px);  /* ✅ Move up on hover */
}

.icon-box {
    width: 70px;  /* ✅ Slightly larger */
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;  /* ✅ Remove right margin */
    margin-bottom: 20px;  /* ✅ Add bottom margin */
    flex-shrink: 0;
}

.feature-item:nth-child(1) .icon-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-item:nth-child(2) .icon-box {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.feature-item:nth-child(3) .icon-box {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.icon-box svg {
    width: 30px;  /* ✅ Slightly larger */
    height: 30px;
    fill: white;
}

.feature-content {
    text-align: center;  /* ✅ Center text */
}

.feature-content h3 {
    color: #1a202c;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-content p {
    color: #718096;
    font-size: 15px;
    line-height: 1.6;
}

/* Remove image section styles since it's commented out */
.image-section {
    display: none;
}

/* Update animations */
@keyframes slideInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .about-container {
        padding: 60px 40px;
    }

    .main-heading {
        font-size: 32px;
    }

    .features-list {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .features-list {
        flex-direction: column;  /* ✅ Stack vertically on mobile */
        align-items: center;
        gap: 40px;
    }

    .feature-item {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .about-container {
        padding: 40px 20px;
    }

    .main-heading {
        font-size: 28px;
    }

    .icon-box {
        width: 60px;
        height: 60px;
    }

    .icon-box svg {
        width: 26px;
        height: 26px;
    }
}


         /* --------------------------------------------------About Section end---------------------------------------------------------  */


         /* --------------------------------------------------services Section---------------------------------------------------------  */


         .services-container {
             max-width: 1200px;
             margin: 0 auto;
         }

         .services-header {
             text-align: center;
             margin-bottom: 60px;
             opacity: 0;
             transform: translateY(-30px);
             animation: fadeInDown 0.8s ease forwards;
         }

         .services-label {
             color: #667eea;
             font-size: 13px;
             font-weight: 600;
             letter-spacing: 3px;
             text-transform: uppercase;
             margin-bottom: 15px;
             margin-top: 10%;
         }

         .services-title {
             font-size: 38px;
             color: #1a202c;
             margin-bottom: 20px;
             font-weight: 700;
         }

         .services-description {
             color: #4a5568;
             font-size: 16px;
             line-height: 1.7;
             max-width: 700px;
             margin: 0 auto;
         }

         .services-grid {
             display: grid;
             grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
             gap: 30px;
             margin-top: 50px;
         }

         .service-card {
             background: white;
             border-radius: 15px;
             overflow: hidden;
             box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
             /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
             cursor: pointer;
             opacity: 0;
             transform: translateY(30px);
             animation: fadeInUp 0.6s ease forwards;
         }

         /* 
         .service-card:nth-child(1) {
             animation-delay: 0.1s;
         }

         .service-card:nth-child(2) {
             animation-delay: 0.2s;
         }

         .service-card:nth-child(3) {
             animation-delay: 0.3s;
         }

         .service-card:nth-child(4) {
             animation-delay: 0.4s;
         }

         .service-card:nth-child(5) {
             animation-delay: 0.5s;
         }

         .service-card:nth-child(6) {
             animation-delay: 0.6s;
         }

         */

         .card-image-wrapper {
             position: relative;
             height: 220px;
             overflow: hidden;
         }

         .card-image {
             width: 100%;
             height: 100%;
             object-fit: cover;
             /* transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); */
         }

         /* 
         .service-card:hover .card-image {
             transform: scale(1.15) rotate(2deg);
         } */

         .image-overlay {
             position: absolute;
             top: 0;
             left: 0;
             right: 0;
             bottom: 0;
             /* background: linear-gradient(135deg, rgba(102, 126, 234, 0.85), rgba(118, 75, 162, 0.85)); */
             opacity: 0;
             /* transition: opacity 0.4s ease; */
             display: flex;
             align-items: center;
             justify-content: center;
         }

         /* .service-card:hover .image-overlay {
             opacity: 1;
         } */

         .overlay-icon {
             width: 60px;
             height: 60px;
             background: white;
             border-radius: 50%;
             display: flex;
             align-items: center;
             justify-content: center;
             /* transform: scale(0) rotate(-180deg); */
             /* transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); */
         }

         /* .service-card:hover .overlay-icon {
             transform: scale(1) rotate(0deg);
         } */

         .overlay-icon svg {
             width: 28px;
             height: 28px;
             /* fill: #667eea; */
         }

         .card-content {
             padding: 30px;
         }

         .card-title {
             font-size: 20px;
             color: #1a202c;
             font-weight: 700;
             margin-bottom: 12px;
             text-transform: uppercase;
             letter-spacing: 0.5px;
             /* transition: color 0.3s ease; */
         }

         /* .service-card:hover .card-title {
             color: #667eea;
         } */

         .card-description {
             color: #718096;
             font-size: 14px;
             line-height: 1.7;
         }

         /* .card-badge {
             position: absolute;
             top: 15px;
             right: 15px;
             background: white;
             padding: 8px 16px;
             border-radius: 20px;
             font-size: 11px;
             font-weight: 600;
             color: #667eea;
             text-transform: uppercase;
             letter-spacing: 1px;
             box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
             opacity: 0;
             transform: translateX(20px);
             transition: all 0.4s ease;
         } */

         /* .service-card:hover .card-badge {
             opacity: 1;
             transform: translateX(0);
         } */

         /* @keyframes fadeInDown {
             to {
                 opacity: 1;
                 transform: translateY(0);
             }
         }

         @keyframes fadeInUp {
             to {
                 opacity: 1;
                 transform: translateY(0);
             }
         }

         @media (max-width: 768px) {
             .services-grid {
                 grid-template-columns: 1fr;
             }

             .services-title {
                 font-size: 28px;
             }

             .card-content {
                 padding: 25px;
             }
         } */

         /* Ripple effect */
         /* .ripple {
             position: absolute;
             border-radius: 50%;
             background: rgba(255, 255, 255, 0.6);
             transform: scale(0);
             animation: rippleEffect 0.6s ease-out;
             pointer-events: none;
         } */

         /* @keyframes rippleEffect {
             to {
                 transform: scale(4);
                 opacity: 0;
             }
         } */

         /* Shimmer effect */
         /* @keyframes shimmer {
             0% {
                 background-position: -1000px 0;
             }

             100% {
                 background-position: 1000px 0;
             }
         } */

         /* .card-image-wrapper::after {
             content: '';
             position: absolute;
             top: 0;
             left: -100%;
             width: 50%;
             height: 100%;
             background: linear-gradient(90deg,
                     transparent,
                     rgba(255, 255, 255, 0.4),
                     transparent);
             transition: left 0.6s ease;
         }

         .service-card:hover .card-image-wrapper::after {
             left: 200%;
         }
 */

         /* --------------------------------------------------Call Action Section---------------------------------------------------------  */

         .cta-section {
             position: relative;
             min-height: 500px;
             display: flex;
             align-items: center;
             justify-content: center;
             padding: 100px 20px;
             overflow: hidden;
             background: #0a1628;
         }

         /* Background Image with Overlay */
         .cta-background {
             position: absolute;
             top: 0;
             left: 0;
             width: 100%;
             height: 100%;
             background-image: url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?w=1920&h=1080&fit=crop&q=80');
             background-size: cover;
             background-position: center;
             z-index: 1;
         }

         /* Gradient Overlay */
         .cta-overlay {
             position: absolute;
             top: 0;
             left: 0;
             width: 100%;
             height: 100%;
             background: linear-gradient(135deg,
                     rgba(10, 22, 40, 0.92) 0%,
                     rgba(25, 42, 86, 0.88) 50%,
                     rgba(10, 22, 40, 0.92) 100%);
             z-index: 2;
         }

         /* Content Container */
         .cta-content {
             position: relative;
             z-index: 4;
             text-align: center;
             max-width: 900px;
         }

         /* Label */
         .cta-label {
             display: inline-block;
             color: #60a5fa;
             font-size: 13px;
             font-weight: 600;
             letter-spacing: 4px;
             text-transform: uppercase;
             margin-bottom: 25px;
             padding: 10px 25px;
             border: 2px solid rgba(96, 165, 250, 0.3);
             border-radius: 30px;
             background: rgba(96, 165, 250, 0.05);
             backdrop-filter: blur(10px);
         }

         /* Main Heading */
         .cta-heading {
             font-size: 52px;
             color: #ffffff;
             font-weight: 700;
             line-height: 1.3;
             margin-bottom: 25px;
             text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
         }

         .cta-heading span {
             background: linear-gradient(135deg, #60a5fa, #3b82f6);
             -webkit-background-clip: text;
             -webkit-text-fill-color: transparent;
             background-clip: text;
         }

         /* Description */
         .cta-description {
             font-size: 18px;
             color: #cbd5e1;
             line-height: 1.8;
             margin-bottom: 40px;
             text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
         }

         /* CTA Button */
         .cta-button {
             display: inline-flex;
             align-items: center;
             gap: 12px;
             padding: 18px 45px;
             font-size: 18px;
             font-weight: 600;
             color: #ffffff;
             background: linear-gradient(135deg, #3b82f6, #2563eb);
             border: none;
             border-radius: 50px;
             cursor: pointer;
             text-decoration: none;
             position: relative;
             overflow: hidden;
             box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
         }

         .cta-button:hover {
             box-shadow: 0 15px 50px rgba(59, 130, 246, 0.6);
         }

         .button-icon {
             display: flex;
             align-items: center;
         }

         /* Responsive Design */
         @media (max-width: 768px) {
             .cta-section {
                 padding: 80px 20px;
                 min-height: 400px;
             }

             .cta-heading {
                 font-size: 32px;
             }

             .cta-description {
                 font-size: 16px;
             }

             .cta-button {
                 padding: 15px 35px;
                 font-size: 16px;
             }
         }

         @media (max-width: 480px) {
             .cta-heading {
                 font-size: 26px;
             }

             .cta-label {
                 font-size: 11px;
                 padding: 8px 20px;
             }

             .cta-button {
                 width: 100%;
                 justify-content: center;
             }
         }



         /*----------------------------------------------- Call to action end------------------------------------------------------- */


         /* -----------------------------Footer section-------------------------------------------------------------------------- */
         .footer {
             background: linear-gradient(135deg, #1a2332 0%, #0f1824 100%);
             color: #cbd5e1;
             padding: 60px 20px 20px;
         }

         .footer-container {
             max-width: 1200px;
             margin: 0 auto;
         }

         .footer-main {
             display: grid;
             grid-template-columns: 2fr 1fr 1fr 1.5fr;
             gap: 50px;
             padding-bottom: 40px;
             border-bottom: 1px solid rgba(255, 255, 255, 0.1);
         }

         /* Company Info Section */
         .footer-company {
             padding-right: 20px;
         }

         .company-logo {
             display: flex;
             align-items: center;
             gap: 12px;
             margin-bottom: -20px;
              
         }

         .logo-icon {
             width: 150px;
             height: 150px;
             border-radius: 10px;
             overflow: hidden;
         }

         .logo-icon img {
             width: 100%;
             height: 100%;
             object-fit: cover;
         }

      
         .company-description {
             font-size: 14px;
             line-height: 1.8;
             color: #94a3b8;
             margin-bottom: 25px;
         }

         /* Social Links */
         .social-links {
             display: flex;
             gap: 12px;
         }

         .social-link {
             width: 40px;
             height: 40px;
             border: 2px solid rgba(255, 255, 255, 0.2);
             border-radius: 50%;
             display: flex;
             align-items: center;
             justify-content: center;
             color: #cbd5e1;
             text-decoration: none;
             transition: all 0.3s ease;
         }

         .social-link:hover {
             border-color: #3b82f6;
             background: rgba(59, 130, 246, 0.1);
             color: #3b82f6;
             transform: translateY(-3px);
         }

         .social-link svg {
             width: 18px;
             height: 18px;
             fill: currentColor;
         }

         /* Footer Column */
         .footer-column h3 {
             font-size: 14px;
             font-weight: 600;
             color: #ffffff;
             text-transform: uppercase;
             letter-spacing: 2px;
             margin-bottom: 20px;
         }

         .footer-links {
             list-style: none;
         }

         .footer-links li {
             margin-bottom: 12px;
         }

         .footer-links a {
             color: #94a3b8;
             text-decoration: none;
             font-size: 14px;
             transition: all 0.3s ease;
             display: inline-block;
         }

         .footer-links a:hover {
             color: #3b82f6;
             padding-left: 5px;
         }

         /* Contact Section */
         .footer-contact h3 {
             font-size: 14px;
             font-weight: 600;
             color: #ffffff;
             text-transform: uppercase;
             letter-spacing: 2px;
             margin-bottom: 20px;
         }

         .contact-item {
             margin-bottom: 15px;
         }

         .contact-label {
             font-size: 12px;
             color: #64748b;
             font-weight: 600;
             text-transform: uppercase;
             letter-spacing: 1px;
             margin-bottom: 5px;
         }

         .contact-value {
             font-size: 14px;
             color: #cbd5e1;
         }

         .contact-value a {
             color: #cbd5e1;
             text-decoration: none;
             transition: color 0.3s ease;
         }

         .contact-value a:hover {
             color: #3b82f6;
         }

         /* Footer Bottom */
         .footer-bottom {
             padding-top: 25px;
             text-align: center;
         }

         .copyright {
             font-size: 13px;
             color: #64748b;
         }

         .copyright a {
             color: #3b82f6;
             text-decoration: none;
             font-weight: 600;
         }

         .copyright a:hover {
             text-decoration: underline;
         }

         /* Responsive Design */
         @media (max-width: 968px) {
             .footer-main {
                 grid-template-columns: 1fr 1fr;
                 gap: 40px;
             }
         }

         @media (max-width: 640px) {
             .footer {
                 padding: 40px 20px 20px;
             }

             .footer-main {
                 grid-template-columns: 1fr;
                 gap: 35px;
             }

             .footer-company {
                 padding-right: 0;
             }
         }


         /* -----------------------------------Footer section End ----------------------------------------------- */


         