* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI'
}

body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 65px;
          
        }
        
        .logo-text {
            margin-left: 10px;
            font-weight: bold;
            color: #0553b1;
        }
        
        .logo-text span {
            color: #ff6a1f;
        }
        
        /* Navigation Styles */
        nav {
            display: flex;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color:  #0553b1;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom:-5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color:  red;
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        /* Burger Menu */
        .burger {
            display: none;
        
            background: none;
            border: none;
            width: 30px;
            height: 30px;
            position: relative;
        }
        
        .burger-line {
            width: 100%;
            height: 3px;
           
            background-color:  rgb(177, 23, 23);
            position: absolute;
            left: 100px;
            transition: all 0.3s ease;
        }
        
        .burger-line:nth-child(1) {
            top: 6px;
        } 
        
        .burger-line:nth-child(2) {
            top: 14px;
        }
        
        .burger-line:nth-child(3) {
            top: 22px;
        }
        
        /* Hero Section */
        .hero {
           
          
            height: 70vh;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            padding: 0 8%;
            color: white;
            margin-top: 0px;
        }
        
        .hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            max-width: 600px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        .btn {
            display: inline-block;
            background-color:  rgb(177, 23, 23);
            color:  white;
            padding: 12px 30px;
            border-radius: 2px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .btn:hover {
            background-color: transparent;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        .btn i {
            margin-left: 8px;
        }
        
        /* Contact Form Section */
        .contact-section {
           
            padding: 60px 8%;
            background-color: rgb(255, 249, 249);
            border-radius: 2px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            max-width: 1200px;
            margin: -20px auto 60px;
            position: relative;
        }
        
        .contact-section h2 {
            color:  rgb(177, 23, 23);
            font-size: 28px;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .contact-section p {
            color: #666;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .full-width {
            grid-column: span 2;
        }
        
        .contact-form input,
        .contact-form textarea,
        .contact-form select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .contact-form input:focus,
        .contact-form textarea:focus,
        .contact-form select:focus {
            border-color:  rgb(153, 16, 16);
            outline: none;
        }
        
        .contact-form textarea {
            height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: rgb(177, 23, 23);
            color: white;
            border: none;
            padding: 14px 30px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 2px;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 8px rgba(255, 106, 31, 0.2);
            width: 100%;
        }
        
        .submit-btn:hover {
            background-color:rgb(230, 177, 45);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255, 106, 31, 0.25);
        }
        
        /* Footer */
       
        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 42px;
            }
        }
        
        @media (max-width: 768px) {
            .burger {
                display: block;
            }
            
            header {
                padding: 15px 4%;
            }
            
            nav ul {
                border-top: 5px solid rgb(186, 33, 33);
               
                position: fixed;
                align-content:center;
                top: 70px;
                left: 2.4vh;
             
                width: 90%;
                background-color:white;
                flex-direction:column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.4s ease;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
                z-index: 999;
            }
            
            nav ul.active {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .hero {
                text-align: center;
                align-items: center;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .contact-form {
                grid-template-columns: 1fr;
            }
            
            .full-width {
                grid-column: span 1;
            }
            
            .contact-section {
                margin: -40px 4% 40px;
                padding: 40px 5%;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 40px;
            }
            
            .footer-logo, .footer-links, .footer-contact {
                width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .logo img {
                height: 40px;
            }
            
            .contact-section h2 {
                font-size: 24px;
            }
        }
        
       
        .burger.active .burger-line:nth-child(1) {
            transform: rotate(45deg);
            top: 14px;
        }
        
        .burger.active .burger-line:nth-child(2) {
            opacity: 0;
        }
        
        .burger.active .burger-line:nth-child(3) {
            transform: rotate(-45deg);
            top: 14px;
        }