*{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        header {
            background: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: white;
            border: 3px solid #ff5722;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .logo-icon::before 
        {
            content: '';
            width: 20px;
            height: 20px;
            background: #ff5722;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .logo-icon::after
         {
            content: '';
            width: 8px;
            height: 25px;
            background: #1a365d;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .logo-text
        {
            display: flex;
            flex-direction: column;
        }

        .logo-name 
        {
            font-size: 2rem;
            font-weight: bold;
            color: #1a365d;
            letter-spacing: 2px;
        }

        .logo-tagline
    {
            font-size: 0.75rem;
            color: #999;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        nav ul 
        {
            list-style: none;
            display: flex;
            gap: 3rem;
            align-items: center;
        }

        nav a 
        {
            color: #666;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover 
        {
            color: #ff5722;
        }

        .get-quote-btn 
        {
            background: #ff5722;
            color: white !important;
            padding: 0.9rem 2.2rem;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .get-quote-btn:hover 
        {
            background: #e64a19;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
        }

        .hero {
            background: linear-gradient(to right, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.97) 50%, rgba(255,255,255,0.5) 100%), 
                        url('https://images.unsplash.com/photo-1581092795360-fd1ca04f0952?w=1920&q=80');
            background-size: cover;
            background-position: right center;
            min-height: 650px;
            display: flex;
            align-items: center;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 3rem 4rem;
            width: 100%;
        }

        .hero-text {
            max-width: 600px;
        }

        .hero-text h1 {
            font-size: 4rem;
            color: #1a365d;
            line-height: 1.1;
            margin-bottom: 2rem;
            font-weight: 800;
        }

        .hero-text h1 .highlight {
            color: #ff5722;
            display: block;
        }

        .hero-text p {
            color: #888;
            font-size: 1rem;
            margin-bottom: 3rem;
            line-height: 1.8;
            max-width: 500px;
        }

        .hero-btn {
            display: inline-block;
            background: #ff5722;
            color: white;
            padding: 1.1rem 2.5rem;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .hero-btn:hover {
            background: #e64a19;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 87, 34, 0.3);
        }

        .services {
            background: #f8f9fa;
            padding: 6rem 4rem;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 3rem;
            color: #1a365d;
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .section-title h2 span {
            color: #ff5722;
        }

        .section-title p {
            color: #666;
            font-size: 1.1rem;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .service-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: #fff5f2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 2rem;
        }

        .service-card h3 {
            color: #1a365d;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .service-card p {
            color: #666;
            line-height: 1.8;
        }

        .about {
            padding: 6rem 4rem;
            background: white;
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content h2 {
            font-size: 3rem;
            color: #1a365d;
            margin-bottom: 2rem;
            font-weight: 800;
        }

        .about-content h2 span {
            color: #ff5722;
        }

        .about-content h3 {
            color: #1a365d;
            margin: 2rem 0 1rem;
            font-size: 1.8rem;
        }

        .about-content p {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .contact {
            background: #1a365d;
            color: white;
            padding: 6rem 4rem;
            text-align: center;
        }

        .contact h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .contact > p {
            font-size: 1.1rem;
            margin-bottom: 3rem;
            opacity: 0.9;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 5rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .contact-item h3 {
            color: #ff5722;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .contact-item p {
            font-size: 1rem;
            opacity: 0.9;
        }

        .contact-item a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-item a:hover {
            color: #ff5722;
        }

        .social-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            margin-top: 1rem;
        }

        .social-links a {
            color: white;
            font-size: 1rem;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            transition: all 0.3s;
        }

        .social-links a:hover {
            color: #ff5722;
            transform: translateX(5px);
        }

        .social-icon {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        /* WhatsApp Widget */
        .whatsapp-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }

        .chat-bubble {
            position: absolute;
            bottom: 80px;
            right: 0;
            background: white;
            color: #333;
            padding: 12px 20px;
            border-radius: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            animation: slideIn 0.5s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .chat-bubble span {
            font-weight: 600;
            font-size: 0.9rem;
        }

        .close-chat {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #999;
            padding: 0;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s;
        }

        .close-chat:hover {
            color: #333;
        }

        .whatsapp-button {
            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);
            transition: all 0.3s;
            cursor: pointer;
            text-decoration: none;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }

        /* Contact Modal */
        .contact-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 54, 93, 0.95);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
            overflow-y: auto;
        }

        .contact-modal.active {
            display: flex;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            max-width: 900px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.4s ease;
            margin: 2rem auto;
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-close 
        {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            font-size: 2.5rem;
            color: #666;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            border-radius: 50%;
        }

        .modal-close:hover 
        {
            background: #f8f9fa;
            color: #ff5722;
            transform: rotate(90deg);
        }

        .modal-title 
        {
            font-size: 2.5rem;
            color: #1a365d;
            margin-bottom: 1rem;
            font-weight: 800;
            text-align: center;
        }

        .modal-subtitle 
        {
            text-align: center;
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 3rem;
        }

        .modal-contact-grid 
        {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .modal-contact-item 
        {
            text-align: center;
            padding: 1.5rem;
            background: #f8f9fa;
            border-radius: 10px;
            transition: all 0.3s;
        }

        .modal-contact-item:hover 
        {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .modal-contact-item h3
         {
            color: #ff5722;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .modal-contact-item p 
        {
            color: #333;
            font-size: 1rem;
            line-height: 1.8;
        }

        .modal-contact-item a 
        {
            color: #1a365d;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .modal-contact-item a:hover 
        {
            color: #ff5722;
        }

        .modal-social 
        {
            text-align: center;
            padding: 2rem;
            background: #1a365d;
            border-radius: 10px;
            margin-top: 2rem;
        }

        .modal-social h3 
        {
            color: #ff5722;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .modal-social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .modal-social-links a {
            color: white;
            font-size: 1rem;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            transition: all 0.3s;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }

        .modal-social-links a:hover {
            color: #ff5722;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        footer {
            background: #0f1f3d;
            color: white;
            text-align: center;
            padding: 2rem;
            font-size: 0.95rem;
        }

        @media (max-width: 1200px) {
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 968px)
        {
            nav ul {
                display: none;
            }

            .hero-text h1 {
                font-size: 3rem;
            }

            .service-grid {
                grid-template-columns: 1fr;
            }

            nav, .hero-content, .services, .about, .contact {
                padding-left: 2rem;
                padding-right: 2rem;
            }

            .contact-info {
                gap: 3rem;
            }

            .whatsapp-widget {
                bottom: 20px;
                right: 20px;
            }

            .chat-bubble {
                bottom: 70px;
                font-size: 0.85rem;
            }

            .whatsapp-button {
                width: 55px;
                height: 55px;
            }

            .modal-content {
                padding: 2rem;
                width: 95%;
            }

            .modal-title {
                font-size: 2rem;
            }

            .modal-contact-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .modal-social-links 
            {
                flex-direction: column;
                gap: 1rem;
            }
    
         }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }

        .about {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 87, 34, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .about::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(26, 54, 93, 0.03) 0%, transparent 70%);
            border-radius: 50%;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .about-content h2 {
            font-size: 3rem;
            color: #1a365d;
            margin-bottom: 4rem;
            font-weight: 800;
            text-align: center;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .about-content h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff5722 0%, #e64a19 100%);
            border-radius: 2px;
        }

        .about-content h2 span {
            color: #ff5722;
        }

        .mission-vision-card {
            background: white;
            border-radius: 15px;
            padding: 3rem 2.5rem;
            margin-bottom: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-left: 5px solid #ff5722;
        }

        .mission-vision-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
        }

        .mission-vision-card h3 {
            color: #1a365d;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .mission-vision-card h3::before {
            content: '';
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff5722 0%, #e64a19 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .mission-vision-card h3:first-of-type::before {
            content: '🎯';
            font-size: 1.5rem;
            line-height: 50px;
            text-align: center;
            background: linear-gradient(135deg, #ff5722 0%, #e64a19 100%);
        }

        .mission-vision-card:last-of-type h3::before {
            content: '🚀';
            font-size: 1.5rem;
            line-height: 50px;
            text-align: center;
            background: linear-gradient(135deg, #1a365d 0%, #2d5a8f 100%);
        }

        .mission-vision-card:last-of-type {
            border-left-color: #1a365d;
        }

        .about-content p {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.9;
            margin-bottom: 2rem;
            text-align: left;
        }

        .about-content ul {
            list-style: none;
            margin: 2rem 0;
            padding: 0;
        }

        .about-content ul li {
            color: #666;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            padding-left: 2.5rem;
            position: relative;
            text-align: left;
        }

        .about-content ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, #ff5722 0%, #e64a19 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1rem;
            box-shadow: 0 3px 10px rgba(255, 87, 34, 0.3);
        }

        .mission-vision-card:last-of-type ul li::before {
            background: linear-gradient(135deg, #1a365d 0%, #2d5a8f 100%);
            box-shadow: 0 3px 10px rgba(26, 54, 93, 0.3);
        }

        .highlight-intro {
            background: linear-gradient(135deg, #fff5f2 0%, #ffffff 100%);
            border-left: 4px solid #ff5722;
            padding: 1.5rem 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            font-style: italic;
            color: #555;
        }

        @media (max-width: 768px) {
            .about {
                padding: 4rem 1.5rem;
            }

            .about-content h2 {
                font-size: 2rem;
                margin-bottom: 3rem;
            }

            .mission-vision-card {
                padding: 2rem 1.5rem;
            }

            .mission-vision-card h3 {
                font-size: 1.5rem;
                flex-direction: column;
                text-align: center;
            }

            .about-content p {
                font-size: 1rem;
            }

            .about-content ul li {
                font-size: 0.95rem;
                padding-left: 2.2rem;
            }
        }
        .contact {
    background: #1a365d;
    color: white;
    padding: 6rem 4rem;
    text-align: center;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Contact Form Container */
.contact-form-container {
    max-width: 800px;
    margin: 3rem auto 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

/* Form Layout */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: white;
}

.contact-form textarea {
    min-height: 120px;
}

/* Button */
.submit-btn {
    grid-column: 1 / -1;
    background: #ff5722;
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #e64a19;
    transform: translateY(-2px);
}

/* Messages */
.form-message {
    grid-column: 1 / -1;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    display: none;
}

/* Contact Info */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.contact-item h3 {
    color: #ff5722;
    margin-bottom: 0.5rem;
}
/* ////////////////////////////////////////////// */
/* Form group container */
.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

/* Label styling */
.form-group label {
    margin-bottom: 0.5rem;
    color: rgb(23, 19, 19); /* Matches your contact form theme */
    font-weight: 500;
    font-size: 1rem;
}

/* Select dropdown styling */
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1); /* translucent to match contact form */
    color: rgb(3, 1, 1); /* text color */
    font-size: 1rem;
    appearance: none; /* remove default arrow for custom styling */
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Placeholder option (not selectable) */
.form-group select option[value=""][disabled] {
    color: rgba(255,255,255,0.7); /* lighter color for placeholder */
    font-style: italic;
}

/* Focus state for select */
.form-group select:focus {
    outline: none;
    border-color: #ff5722;
    background: rgba(255,255,255,0.15);
}

/* Optional: add custom arrow */
.form-group select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='10' height='5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 5 5-5z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px 5px;
}
