/* Desktop Dropdown Styles */
#navMenu {
  display: flex;
  gap: 30px;
}

#navMenu > li {
  position: relative;
}

/* Submenu container - hidden by default */
#navMenu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  z-index: 1000;
  list-style: none;
  margin-top: 10px;
}

/* Show submenu on hover */
#navMenu li.menu-item-has-children:hover > .sub-menu {
  display: block;
}

/* Submenu items */
#navMenu .sub-menu li {
  width: 100%;
  margin: 0;
}

#navMenu .sub-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f5f5f5;
}

#navMenu .sub-menu a:hover {
  background: #f8f8f8;
  color: #0073aa; /* Change to your brand color */
  padding-left: 25px;
}

/* Arrow indicator for dropdown items */
#navMenu li.menu-item-has-children > a::after {
    content: "▾";
    margin-left: 65px;
    top: 6px;
    font-size: 0.9em;
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
  #navMenu {
    flex-direction: column;
    display: none; /* Will be toggled by JS */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  
  #navMenu.active {
    display: flex;
  }
  
  #navMenu .sub-menu {
    position: static;
    box-shadow: none;
    padding-left: 15px;
    margin-top: 5px;
    display: none;
  }
  
  #navMenu .sub-menu.active {
    display: block;
  }
}


* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            overflow-x: hidden;
            line-height: 1.6;
            background-color: #f8f9fa;
        }

        

        /* Header Styles */
        .header-top {
            background: #2d5f8d;
            padding: 0.5rem 0;
            font-size: 0.85rem;
            color: white;
        }

        .header-top-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info {
            display: flex;
            gap: 2rem;
        }

        .contact-info span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            color: white;
            font-size: 1rem;
            transition: all 0.3s;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.1);
        }

        .social-links a:hover {
            color: #2d5f8d;
            background: white;
            transform: translateY(-3px);
        }

        header {
            background: #fff;
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 40px;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 15px 0;
            top: 0;
            background: #fff;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            height: 70px;
            transition: all 0.3s;
        }

        .header-scrolled .logo {
            height: 60px;
        }

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

        nav ul {
            list-style: none;
            display: flex;
            gap: 40px;
        }

        nav a {
            color: #333;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 500;
            position: relative;
            padding: 5px 0;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            /* background: #2d5f8d; */
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        nav a:hover {
            color: #2d5f8d;
        }

        .cta-btn {
            background: #2d5f8d;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: bold;
            font-size: 16px;
            box-shadow: 0 4px 15px rgba(45, 95, 141, 0.3);
        }

        .cta-btn:hover {
            background: #1e4a75;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(45, 95, 141, 0.4);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 30px;
            height: 3px;
            background: #333;
            border-radius: 3px;
            transition: all 0.3s;
        }

        /* Hero Section */
        .hero {
            margin-top: 100px;
            background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('image/hero-bg.jpg');
            background-size: cover;
            background-position: center;
            padding: 120px 40px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            animation: slideInLeft 1s ease-out;
        }

        /* Wrapper background + spacing */
        .breadcrumb-wrapper {
            background: #f5f7fa;
            padding: 50px 0;
            margin-top: 75px;
            margin-bottom: 20px;
        }

        .cta-btn a {
            color: #fff !important;
        }
        /* Modern breadcrumb container */
        .breadcrumb-modern {
            display: flow;
            align-items: center;
            padding: 10px;
            font-size: 15px;
            font-weight: 500;
            color: #4a4a4a;
        }

        /* Breadcrumb links */
        .breadcrumb-modern a {
            color: #0e74ff;
            text-decoration: none;
        }

        .breadcrumb-modern a:hover {
            color: #0049b7;
        }

        /* Separator */
        .breadcrumb-modern .separator {
            color: #999;
        }

        /* Current page text */
        .breadcrumb-modern .current {
            color: #333;
            font-weight: 600;
        }

        /* Responsive Fix */
        @media (max-width: 768px) {
            .breadcrumb-wrapper {
                padding: 15px 0;
            }
            .breadcrumb-modern {
                font-size: 14px;
                flex-wrap: wrap;
            }

            .header-top {
                display: none;
            }

            header {
                top: 0;
            }
        }



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

        .hero-text h1 {
            font-size: 58px;
            color: #333;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .hero-text h1 span {
            color: #2d5f8d;
            position: relative;
            display: inline-block;
        }

        .hero-text p {
            color: #666;
            margin-bottom: 35px;
            font-size: 18px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .secondary-btn {
            background: transparent;
            border: 2px solid #2d5f8d;
            color: #2d5f8d;
            padding: 12px 30px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            font-size: 16px;
            transition: all 0.3s;
        }

        .secondary-btn:hover {
            background: #2d5f8d;
            color: white;
            transform: translateY(-3px);
        }

        .hero-image {
            position: relative;
            animation: slideInRight 1s ease-out;
        }

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

        .hero-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            transition: transform 0.5s;
        }

        .hero-image:hover img {
            transform: scale(1.03);
        }

        /* Stats Section */
        .stats {
            background: #fff;
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s forwards;
        }

        .stat-item:nth-child(1) { animation-delay: 0.2s; }
        .stat-item:nth-child(2) { animation-delay: 0.4s; }
        .stat-item:nth-child(3) { animation-delay: 0.6s; }
        .stat-item:nth-child(4) { animation-delay: 0.8s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stat-item h3 {
            color: #2d5f8d;
            font-size: 48px;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .stat-item p {
            color: #666;
            font-size: 18px;
        }

        /* Services Section */
        .services {
            padding: 100px 40px;
            background: #f8f9fa;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s forwards;
        }

        .section-title span {
            color: #2d5f8d;
            font-size: 16px;
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 2px;
        }

        .section-title h2 {
            font-size: 42px;
            margin-top: 15px;
            color: #333;
        }

        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .service-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px);
        }

        .service-card.animate {
            animation: fadeInUp 0.8s forwards;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .service-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 25px;
            transition: transform 0.5s;
        }

        .service-card:hover img {
            transform: scale(1.05);
        }

        .service-badge {
            position: absolute;
            top: 30px;
            right: 30px;
            background: #2d5f8d;
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: bold;
            z-index: 9999;
        }

        .service-card h3 {
            margin-bottom: 15px;
            font-size: 26px;
            color: #333;
        }

        .service-card p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 16px;
        }

        .read-more {
            color: #2d5f8d;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            transition: all 0.3s;
            display: inline-block;
        }

        .read-more:hover {
            transform: translateX(5px);
        }

        /* About Section */
        .about {
            padding: 100px 40px;
            background: white;
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-text {
            opacity: 0;
            transform: translateX(-50px);
        }

        .about-text.animate {
            animation: slideInLeft 0.8s forwards;
        }

        .about-text span {
            color: #2d5f8d;
            font-size: 16px;
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 2px;
        }

        .about-text h2 {
            font-size: 42px;
            margin: 20px 0;
            color: #333;
        }

        .about-text h2 span {
            color: #2d5f8d;
            text-transform: none;
        }

        .about-text > p {
            color: #666;
            line-height: 1.9;
            margin-bottom: 25px;
            font-size: 17px;
        }

        .about-list {
            list-style: none;
            margin: 35px 0;
        }

        .about-list li {
            padding: 15px 0;
            padding-left: 40px;
            position: relative;
            font-size: 17px;
            color: #555;
            transition: all 0.3s;
        }

        .about-list li:hover {
            color: #2d5f8d;
            padding-left: 45px;
        }

        .about-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #2d5f8d;
            font-weight: bold;
            font-size: 22px;
        }

        .about-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            position: relative;
            opacity: 0;
            transform: translateX(50px);
        }

        .about-images.animate {
            animation: slideInRight 0.8s forwards;
        }

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

        .about-images img:hover {
            transform: scale(1.03);
        }

        .about-images img:nth-child(2) {
            margin-top: 60px;
        }

        .about-badge {
            position: absolute;
            bottom: 30px;
            right: 250px;
            background: #2d5f8d;
            color: white;
            padding: 35px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(45, 95, 141, 0.3);
        }

        .about-badge h3 {
            font-size: 56px;
            margin-bottom: 8px;
        }

        .about-badge p {
            font-size: 16px;
        }

        /* Projects Section */
        .projects {
            padding: 100px 40px;
            background: #f8f9fa;
        }

        .projects .section-title h2,
        .projects .section-title span {
            color: #333;
        }

        .projects-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .project-card {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            opacity: 0;
            transform: scale(0.9);
        }

        .project-card.animate {
            animation: zoomIn 0.6s forwards;
        }

        @keyframes zoomIn {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .project-card img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            transition: transform 0.7s;
        }

        .project-card:hover img {
            transform: scale(1.1);
        }

        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            padding: 30px;
            transform: translateY(100%);
            transition: transform 0.5s;
        }

        .project-card:hover .project-overlay {
            transform: translateY(0);
        }

        .project-overlay h3 {
            color: white;
            font-size: 24px;
            margin-bottom: 10px;
        }

        .project-overlay p {
            color: rgba(255,255,255,0.8);
        }

        /* Process Section */
        .process {
            padding: 100px 40px;
            background: white;
        }

        .process-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .process-item {
            text-align: center;
            padding: 40px;
            background: white;
            border-radius: 10px;
            position: relative;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.4s;
            opacity: 0;
            transform: translateY(50px);
        }

        .process-item.animate {
            animation: fadeInUp 0.8s forwards;
        }

        .process-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .process-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 25px;
            background: #2d5f8d;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 42px;
            color: white;
            box-shadow: 0 5px 15px rgba(45, 95, 141, 0.3);
            transition: all 0.4s;
        }

        .process-item:hover .process-icon {
            transform: scale(1.1);
        }

        .process-number {
            position: absolute;
            top: -15px;
            right: 30px;
            width: 45px;
            height: 45px;
            background: #2d5f8d;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .process-item h3 {
            font-size: 22px;
            color: #333;
            margin-bottom: 15px;
        }

        .process-item p {
            color: #666;
            font-size: 16px;
        }

        /* Team Section */
        .team {
            padding: 100px 40px;
            background: #f8f9fa;
        }

        .team-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .services a.cta-btn {
            text-align: center;
        }

        .read_more_class {
            text-align: center;
            margin-top: 60px;
        }

        .team-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            text-align: center;
            transition: all 0.4s;
            opacity: 0;
            transform: scale(0.9);
        }

        .team-card.animate {
            animation: zoomIn 0.6s forwards;
        }

        .team-card:hover {
            transform: translateY(-10px) scale(1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .team-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: all 0.5s;
        }

        .team-card:hover img {
            transform: scale(1.05);
        }

        .team-info {
            padding: 25px;
        }

        .team-info h4 {
            margin-bottom: 8px;
            font-size: 22px;
            color: #333;
        }

        .team-info p {
            color: #2d5f8d;
            font-size: 16px;
            font-weight: 600;
        }

        /* Testimonial Section */
        .testimonial {
            padding: 100px 40px;
            background: white;
        }

        .testimonial-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .testimonial-image {
            opacity: 0;
            transform: scale(0.8);
        }

        .testimonial-image.animate {
            animation: zoomIn 0.8s forwards;
        }

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

        .testimonial-text {
            color: #333;
            opacity: 0;
            transform: translateX(50px);
        }

        .testimonial-text.animate {
            animation: slideInRight 0.8s forwards;
        }

        .testimonial-text span {
            color: #2d5f8d;
            font-size: 16px;
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 2px;
        }

        .testimonial-text h2 {
            margin: 20px 0;
            font-size: 42px;
        }

        .testimonial-text p {
            line-height: 1.9;
            margin-bottom: 25px;
            font-size: 18px;
            color: #666;
        }

        .testimonial-text h4 {
            font-size: 24px;
            margin-bottom: 5px;
        }

        .stars {
            color: #ffc107;
            font-size: 24px;
            margin-top: 25px;
        }

        /* Blog Section */
        .blog {
            padding: 100px 40px;
            background: #f8f9fa;
        }

        .blog-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .blog-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.4s;
            opacity: 0;
            transform: translateY(50px);
        }

        .blog-card.animate {
            animation: fadeInUp 0.8s forwards;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .blog-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .blog-card:hover img {
            transform: scale(1.05);
        }

        .blog-content {
            padding: 30px;
        }

        .blog-meta {
            color: #999;
            font-size: 15px;
            margin-bottom: 15px;
        }

        .blog-content h3 {
            margin-bottom: 15px;
            font-size: 24px;
            color: #333;
        }

        .blog-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        /* CTA Section */
        .cta-section {
            background: #2d5f8d;
            padding: 80px 40px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-section h2 {
            font-size: 42px;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            font-size: 18px;
            position: relative;
            z-index: 1;
            margin-bottom: 35px;
            opacity: 0.9;
        }

        .cta-form {
            margin-top: 40px;
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .cta-section input {
            padding: 18px 25px;
            width: 350px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .cta-section input:focus {
            outline: none;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .cta-section button {
            padding: 18px 40px;
            background: white;
            color: #2d5f8d;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            font-size: 16px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .cta-section button:hover {
            background: #f1f1f1;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        /* Footer */
        footer {
            background: #fff;
            color: #333;
            padding: 80px 40px 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .footer-section h3 {
            margin-bottom: 25px;
            color: #333;
            font-size: 22px;
        }

        .footer-section p {
            line-height: 1.8;
            color: #666;
            font-size: 16px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 15px;
        }

        .footer-section a {
            color: #666;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 16px;
        }

        .footer-section a:hover {
            color: #2d5f8d;
            padding-left: 5px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: #f1f1f1;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: bold;
            color: #666;
        }

        .social-icon:hover {
            background: #2d5f8d;
            color: white;
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #eee;
            color: #666;
            font-size: 16px;
        }

        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #2d5f8d;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            box-shadow: 0 5px 15px rgba(45, 95, 141, 0.3);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
        }

        .scroll-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(45, 95, 141, 0.4);
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero-text h1 { font-size: 48px; }
            .section-title h2 { font-size: 36px; }
            .services-grid, .projects-grid, .team-grid, .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 90px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 90px);
                background: rgba(255, 255, 255, 0.98);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 30px;
                transition: left 0.3s;
                backdrop-filter: blur(10px);
            }

            nav ul.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(8px, 8px);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(8px, -8px);
            }

            .hero-content, .about-content, .testimonial-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-text h1 { font-size: 36px; }
            .section-title h2 { font-size: 32px; }

            .services-grid, .projects-grid, .team-grid, .blog-grid, .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .stats-container, .process-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .about-images {
                grid-template-columns: 1fr;
            }

            .about-images img:nth-child(2) {
                margin-top: 0;
            }

            .about-badge {
                position: relative;
                bottom: auto;
                right: auto;
                margin-top: 20px;
            }

            .cta-section input {
                width: 100%;
            }

            nav {
                padding: 0 20px;
            }

            .hero, .services, .about, .projects, .process, .team, .testimonial, .blog, .cta-section {
                padding: 60px 20px;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 { font-size: 28px; }
            .section-title h2 { font-size: 28px; }
            .stat-item h3 { font-size: 36px; }
            .stats-container, .process-grid {
                grid-template-columns: 1fr;
            }
        }
