        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary-blue: #004855;
            --secondary-blue: #1d6281;
            --accent-gold: #d4af37;
            --light-blue: #e8f1ff;
            --dark-gray: #333;
            --light-gray: #f5f5f5;
            --text-gray: #555;
            --white: #ffffff;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            line-height: 1.6;
            color: var(--dark-gray);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        h1, h2, h3 {
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        
        h1 {
            font-size: 3.5rem;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 2.5rem;
            text-align: center;
            position: relative;
            margin-bottom: 50px;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-gold);
        }
        
        h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        p {
            color: var(--text-gray);
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        a {
            color: var(--text-gray);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--accent-gold);
            text-decoration: underline;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--accent-gold);
            color: var(--primary-blue);
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid var(--accent-gold);
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--accent-gold);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--accent-gold);
            border: 2px solid var(--accent-gold);
        }
        
        .btn-secondary:hover {
            background-color: var(--accent-gold);
            color: var(--primary-blue);
        }
        
        /* Header styles */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo h1 {
            font-size: 1.8rem;
            margin-bottom: 0;
            color: var(--primary-blue);
        }
        
        .logo span {
            color: var(--accent-gold);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--primary-blue);
            font-weight: 600;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }
        
        nav ul li a:hover {
            color: var(--accent-gold);
        }
        
        .navbar-brand img {
  margin-top: 0.1rem;
  height: 3.5rem;
}

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-blue);
            cursor: pointer;
        }
        
        /* Hero section */
        .hero {
            background: linear-gradient(rgba(0, 72, 85, 0.55), rgba(0, 72, 85, 0.9)), url('../img/slider02.jpg');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
            padding: 180px 0 100px;
            margin-top: 80px;
        }
        
        .hero h1 {
            color: var(--white);
            margin-bottom: 25px;
        }
        
        .hero p {
            color: var(--light-blue);
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 40px;
        }
        
        /* About section */
        .about {
            background-color: var(--white);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Services section */
        .services {
            background-color: var(--light-gray);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            padding: 30px;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            background-color: var(--light-blue);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .service-icon i {
            font-size: 1.8rem;
            color: var(--primary-blue);
        }
        
        /* Contact section */
        .contact {
            background-color: var(--white);
        }
        
        .contact-container {
            display: flex;
            gap: 50px;
        }

        .contact-image {
            flex: 1;            
            overflow: hidden;
        }
        .contact-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-details {
            margin-top: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .contact-item a{}
        
        .contact-icon {
            background-color: var(--light-blue);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .contact-icon i {
            color: var(--primary-blue);
            font-size: 1.2rem;
        }
        
        .contact-form {
            flex: 1;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--primary-blue);
            font-weight: 600;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary-blue);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo h2 {
            color: var(--white);
            text-align: left;
            margin-bottom: 15px;
        }
        
        .footer-logo h2:after {
            display: none;
        }
        
        .footer-logo p {
            color: var(--light-blue);
            max-width: 300px;
        }
        
        .footer-contact h3 {
            color: var(--white);
            margin-bottom: 20px;
        }
        
        .footer-contact p {
            color: var(--light-blue);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--accent-gold);
        }

        .footer-contact a {
            color: var(--light-blue);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        .footer-contact a:hover {
            color: var(--white);
            text-decoration: underline;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light-gray);
            font-size: 0.9rem;
        }
        .copyright p{
          color: var(--light-gray);
        }
        .mobile-menu {
              display: none;
            }
        /* Responsive styles */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .contact-container {
                flex-direction: column;
            }

        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 15px;
            }
            
            nav ul {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
                display: flex;
    -moz-justify-content: -moz-flex-end;
    -webkit-justify-content: -webkit-flex-end;
    -ms-justify-content: -ms-flex-end;
    justify-content: flex-end;
    -moz-flex-grow: 1;
    -webkit-flex-grow: 1;
    -ms-flex-grow: 1;
    /* flex-grow: 1; */
    height: inherit;
    line-height: inherit;
            }
            
            .mobile-menu {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                padding: 20px;
                display: none;
            }
            
            .mobile-menu.active {
                display: block;
            }
            
            .mobile-menu ul {
                list-style: none;
            }
            
            .mobile-menu ul li {
                margin: 15px 0;
            }
            
            .mobile-menu ul li a {
                color: var(--primary-blue);
                font-size: 1.2rem;
                text-decoration: none;
                display: block;
                padding: 10px;
                border-bottom: 1px solid #eee;
            }
            
            .hero {
                padding: 150px 0 80px;
            }
            
            h1 {
                font-size: 2.3rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            section {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 576px) {
            .hero p {
                font-size: 1.1rem;
            }
            
            .service-card {
                padding: 20px;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }