        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        /* Header */
        .header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .header-top {
            background: #1E3A5F;
            color: #fff;
            padding: 8px 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .header-top-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .header-contact a {
            color: #fff;
            text-decoration: none;
            margin-right: 20px;
            font-size: 14px;
        }
        
        .header-contact a i {
            margin-right: 5px;
        }
        
        .header-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo img {
            height: 65px;
        }
        
        /* Navigation */
        .nav {
            display: flex;
            flex-wrap: wrap;   
            list-style: none;
        }
        
        .nav li {
            position: relative;
        }
        
        .nav li a {
            display: block;
            padding: 15px;
            color: #1E3A5F;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .nav li:hover > a {
            color: #C41E3A;
        }
        
        .nav li.has-dropdown > a::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-left: 5px;
        }
        
        /* Dropdown */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            min-width: 250px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s;
            border-top: 3px solid #C41E3A;
        }
        
        .nav li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown li {
            border-bottom: 1px solid #eee;
        }
        
        .dropdown li:last-child {
            border-bottom: none;
        }
        
        .dropdown li a {
            padding: 12px 20px;
            font-weight: 500;
            font-size: 14px;
        }
        
        .dropdown li a:hover {
            background: #f8f8f8;
            padding-left: 25px;
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #1E3A5F;
            cursor: pointer;
        }
        
        /* Hero Banner */
        .hero-banner {
            position: relative;
            height: 100vh;
            min-height: 600px;
            background: linear-gradient(135deg, #1E3A5F 0%, #2d4a6f 50%, #1E3A5F 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-top: 115px;
        }
        
        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../images/img-009.jpg') center/cover;
            opacity: 0.2;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
            padding: 40px;
        }
        
        .hero-logo {
            margin-bottom: 30px;
        }
        
        .hero-logo img {
            max-width: 400px;
            background: rgba(255,255,255,0.95);
            padding: 20px;
            border-radius: 10px;
        }
        
        .hero-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero-content h1 span {
            color: #ff6b7d;
        }
        
        .hero-content p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn-primary {
            background: #C41E3A;
            color: #fff;
        }
        
        .btn-primary:hover {
            background: #a01830;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(196,30,58,0.4);
        }
        
        .btn-secondary {
            background: transparent;
            color: #fff;
            border: 2px solid #fff;
        }
        
        .btn-secondary:hover {
            background: #fff;
            color: #1E3A5F;
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: bold;
            color: #C41E3A;
        }
        
        .stat-label {
            font-size: 14px;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Section Styles */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: #1E3A5F;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .section-tag {
            display: inline-block;
            background: #C41E3A;
            color: #fff;
            padding: 5px 20px;
            border-radius: 20px;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }
        
        /* About Section */
        .about-section {
            background: #f8f8f8;
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-image {
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-content h3 {
            font-size: 28px;
            color: #1E3A5F;
            margin-bottom: 20px;
        }
        
        .about-content p {
            margin-bottom: 20px;
            color: #555;
        }
        
        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .service-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #C41E3A, #ff6b7d);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: #fff;
            font-size: 32px;
        }
        
        .service-card h3 {
            font-size: 20px;
            color: #1E3A5F;
            margin-bottom: 15px;
        }
        
        .service-card p {
            color: #666;
            font-size: 14px;
        }
        
        /* Projects Section */
        .projects-section {
            background: #f8f8f8;
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        
        .project-card {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: auto;
        }
        
        .project-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .project-card:hover img {
            transform: scale(1.1);
        }
        
        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(30,58,95,0.95));
            padding: 30px 20px 20px;
            color: #fff;
        }
        
        .project-overlay h4 {
            font-size: 16px;
            margin-bottom: 5px;
        }
        
        .project-overlay p {
            font-size: 12px;
            opacity: 0.8;
        }
        
        /* Footer */
        .footer {
            background: #1E3A5F;
            color: #fff;
            padding: 60px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo img {
            height: 60px;
            background: #fff;
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        
        .footer-logo p {
            opacity: 0.8;
            font-size: 14px;
            line-height: 1.8;
        }
        
        .footer h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #ff6b7d;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #fff;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: #ff6b7d;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            opacity: 0.8;
            font-size: 14px;
        }
         .footer-contact p a{
            color: #fff;
            text-decoration: none;
            transition: opacity 0.3s;
         }
        
        .footer-contact i {
            margin-right: 10px;
            color: #C41E3A;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            text-align: center;
            opacity: 0.6;
            font-size: 14px;
        }
          .d-lg-block {
                display: block;
            }
        /* Responsive */
        @media (max-width: 992px) {
          
            .d-none {
            display: none;
        }
        
            .nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }
            
            .nav.active {
                display: flex;
            }
            
            .nav li {
                border-bottom: 1px solid #eee;
            }
            
            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border-top: none;
                display: none;
            }
            
            .nav li.dropdown-active .dropdown {
                display: block;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-content h1 {
                font-size: 32px;
            }
            
            .about-grid {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .projects-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .services-grid,
            .projects-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-stats {
                gap: 30px;
            }
            
            .stat-number {
                font-size: 36px;
            }
            .header-contact a{
                display: flow;
            }
            .logo img {
    height: 55px;
}
        }