      :root {
            --primary-green: #316DFF;
            --light-green: #316DFF;
            --accent-yellow: #FFC107;
            --light-yellow: #FFF8E1;
            --dark-text: #333333;
            --light-gray: #F5F5F5;
            --border-gray: #E0E0E0;
            --hover-yellow: #FFB300;
     
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-text);
            overflow-x: hidden;
        }

        /* Header Styles */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 10px 0;
            background-color: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
        }

        .navbar-brand {
            font-weight: 700;
            color: #053cc1 !important;
            font-size: 1.5rem;
        }

        .navbar-brand i {
            color: var(--accent-yellow);
            margin-right: 8px;
        }

        .nav-link {
            color: var(--dark-text) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--primary-green) !important;
        }

        .navbar-toggler {
            border: none;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        /* Hero Section with Video Background */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            padding-top: 80px;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translateX(-50%) translateY(-50%);
            z-index: -2;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
            z-index: -1;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 700px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .btn-hero {
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            margin-right: 15px;
            margin-bottom: 15px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            border: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .btn-primary-custom {
            background-color: var(--accent-yellow);
            color: var(--dark-text);
        }

        .btn-primary-custom:hover {
            background-color: var(--hover-yellow);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255,193,7,0.4);
        }

        .btn-outline-custom {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline-custom:hover {
            background-color: white;
            color: var(--primary-green);
        }

        /* Mobile Video Fallback */
        @media (max-width: 768px) {
            .hero-video {
                display: none;
            }
            
            .hero {
                background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://picsum.photos/seed/solarpanels/1920/1080.jpg');
                background-size: cover;
                background-position: center;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }
        }

        /* Section Styles */
        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-green);
            text-align: center;
        }

        .section-subtitle {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 40px;
            font-size: 1.1rem;
            color: #666;
        }

       /* About Section Improvements */
.about {
    /* background-color: var(--light-gray); */
     /* background: linear-gradient(90deg, #f7f7f7, #f7ec0e61); */
    padding: 22px 0; /* Ensures consistent spacing */
}

/* Heading update to Times New Roman */
.about .section-title {
    font-family: "Times New Roman", Times, serif !important;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(22, 22, 89); /* Adjust to your main green color */
    margin-bottom: 10px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px; /* Modern spacing between text and image */
}

.about-text {
    flex: 1;
}

/* Description Text Styling */
.about-text p {
    font-size: 19px;
    line-height: 1.8;
    color: #444;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; /* Clean website font */
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    perspective: 1000px; /* Adds depth for the hover effect */
}

/* Image Styling & Yellow Glow Hover Effect */
.about-image img {
    width: 90%;
    border-radius: 15px; /* Slightly smoother corners */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease-in-out; /* Smooth transition */
    border: 2px solid transparent;
    margin-left:60px;
}

.about-image:hover img {
    transform: translateY(-10px); /* Lift effect */
    border-color: #ffc107; /* Solar yellow border on hover */
    /* Yellow box shadow glow */
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.4); 
}

/* Mobile Responsiveness fix */
@media (max-width: 991px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

    /* Redesigned Service Cards */
    .size{
        margin: 30px;
    }

    .size .section-title{
        font-family: 'Roboto', sans-serif !important;
    }
.service-card {
    position: relative;
    height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: flex-end; /* Push text to bottom */
    padding: 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Black Linear Gradient Overlay */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.9) 100%);
    transition: background 0.4s ease;
    z-index: 1;
}

/* Content over the image */
.service-content {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.service-icon {
    width: 50px;
    height: 50px;
    background-color: var(--solar-yellow, #ffc107); /* Solar theme yellow */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.service-icon i {
    font-size: 1.2rem;
    color: #000;
}

.service-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    opacity: 0.9;
}

/* HOVER EFFECTS */
.service-card:hover {
    transform: translateY(-10px);
    /* Yellow Box Shadow Glow */
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.4); 
}

.service-card:hover .service-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.95) 100%);
}

.service-card:hover .service-content {
    transform: translateY(-5px);
}

/* Smooth zoom effect on background */
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: inherit;
    transition: transform 0.6s ease;
    z-index: 0;
}

.service-card:hover::before {
    transform: scale(1.1);
}
        /* Projects Section */
        .project-card {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            cursor: pointer;
        }

        .project-card img {
            width: 100%;
            height: 316px;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 20px;
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .project-card:hover img {
            transform: scale(1.05);
        }

        .project-card:hover .project-overlay {
            transform: translateY(0);
        }

        /* Service Areas */
        .area-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }

        .area-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .area-icon {
            font-size: 2.5rem;
            color: var(--accent-yellow);
            margin-bottom: 15px;
        }

        /* Contact Section */
        .contact {
            background-color: var(--primary-green);
            color: white;
        }

        .contact .section-title {
            color: white;
        }

        .contact .section-subtitle {
            color: rgba(255,255,255,0.8);
        }

        .contact-form {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .form-control, .form-select {
            border: 1px solid var(--border-gray);
            border-radius: 8px;
            padding: 12px 15px;
            margin-bottom: 20px;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--accent-yellow);
            box-shadow: 0 0 0 0.25rem rgba(255,193,7,0.25);
        }

        .contact-info {
            padding: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
        }

        .contact-icon i {
            color: white;
            font-size: 1.2rem;
        }

        .btn-whatsapp {
            background-color: #25D366;
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            transition: all 0.3s;
        }

        .btn-whatsapp:hover {
            background-color: #128C7E;
            color: white;
            transform: translateY(-3px);
        }

        .btn-whatsapp i {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        /* Footer */
        footer {
            background-color: #181717;
            color: white;
            padding: 50px 0 20px;
        }

        .footer-logo {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--light-green);
        }

        .footer-logo i {
            color: var(--accent-yellow);
            margin-right: 8px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent-yellow);
        }

        .social-icons {
            display: flex;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: white;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background-color: var(--accent-yellow);
            color: var(--dark-text);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about-content {
                flex-direction: column;
            }

            .about-text {
                padding-right: 0;
                margin-bottom: 30px;
            }

            .section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .btn-hero {
                display: block;
                width: 100%;
                margin-right: 0;
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }

        /* Video Controls for Mobile */
        .video-controls {
            position: absolute;
            bottom: 20px;
            right: 20px;
            z-index: 10;
            display: none;
        }

        @media (max-width: 768px) {
            .video-controls {
                display: block;
            }
        }

        .video-controls button {
            background-color: rgba(255,255,255,0.2);
            border: 1px solid white;
            color: white;
            padding: 8px 12px;
            border-radius: 5px;
            cursor: pointer;
        }

        /* why choose us */

        /* Why Choose Us Section - Dark Theme */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, #020617 0%, #0a192f 100%); /* Matches About Overlay */
    position: relative;
}

/* Feature Card Styling */
.feature-card {
    background: rgba(255, 255, 255, 0.03); /* Subtle glass effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-10px);
    border-color: #ffc107;
    /* Yellow Box Shadow Glow */
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.2);
}

/* Icon Design */
.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.feature-icon i {
    font-size: 1.6rem;
    color: #ffc107; /* Solar Yellow */
}

.feature-card:hover .feature-icon {
    background: #ffc107;
    transform: scale(1.1);
}

.feature-card:hover .feature-icon i {
    color: #000;
}

/* Typography - Roboto line styling */
.feature-content h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-content p {
    font-family: 'Roboto', sans-serif;
    font-weight: 300; /* Light 'line' weight */
    font-size: 17px;
    line-height: 1.7;
    color: #cbd5e1; /* Soft Slate Blue/Grey */
    margin-bottom: 0;
}

/* Headings Consistency */
.why-choose .section-title {
    font-family: "Times New Roman", Times, serif !important;
    color: #ffffff;
    font-size: 3rem;
}

.why-choose .section-subtitle {
    font-family: 'Roboto', sans-serif;
    color: #ffc107;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* our service areas */

/* Service Areas Section */
.service-areas {
    padding: 50px 0;
    background: linear-gradient(135deg, #0a192f 0%, #050a0f 100%); /* Midnight Overlay */
    color: white;
}

.title-accent {
    width: 60px;
    height: 4px;
    background: #ffc107;
    margin-bottom: 20px;
    border-radius: 2px;
}

.service-areas .section-title {
    font-family: "Times New Roman", Times, serif !important;
    font-size: 3rem;
    text-align: left; /* Left aligned for split layout */
}

.service-areas .section-subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.8;
    color: #cbd5e1;
}

/* Area List Cards */
.area-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.area-list-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.area-list-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(15px); /* Slide out effect */
    border-color: #ffc107;
    box-shadow: -10px 0 30px rgba(255, 193, 7, 0.15);
}

/* Status Dot */
.area-status-dot {
    width: 12px;
    height: 12px;
    background: #ffc107;
    border-radius: 50%;
    flex-shrink: 0;
}

.area-status-dot.pulse {
    background: #38bdf8; /* Blue for expansion areas */
    box-shadow: 0 0 0 rgba(56, 189, 248, 0.4);
    animation: areaPulse 2s infinite;
}

@keyframes areaPulse {
    0% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(56, 189, 248, 0); }
    100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

/* Info */
.area-info h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
}

.area-info p {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 0;
    color: #94a3b8;
}

/* Pin Icon */
.area-pin {
    margin-left: auto;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.area-list-card:hover .area-pin {
    color: #ffc107;
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.8));
}

/* Expansion Card special style */
.area-list-card.expansion:hover {
    border-color: #38bdf8;
    box-shadow: -10px 0 30px rgba(56, 189, 248, 0.15);
}
.area-list-card.expansion:hover .area-pin {
    color: #38bdf8;
    filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.8));
}
/* Image Card Styles */
.area-image-card {
    position: relative;
    height: 84%;
    min-height: 400px; /* For mobile view */
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top:147px;
}

.area-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes the image cover the area without stretching */
    transition: transform 0.6s ease;
}

.area-image-card:hover img {
    transform: scale(1.05);
}

/* Floating Stat on Image */
.image-overlay-stats {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    border-left: 4px solid #ffc107;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ffc107;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

/* Right Side Content Spacing */
.area-content-box {
    padding-left: 20px;
}

@media (max-width: 991px) {
    .area-content-box {
        padding-left: 0;
        margin-top: 40px;
    }
    .area-image-card {
        height: 350px;
    }
}

/* contact */

/* Contact Section Base - Pure White & Compact */
.contact {
    background: #ffffff !important;
    padding: 60px 0 !important; /* Reduced padding to make it compact */
    color: #1a1a1a;
}

/* Titles */
.contact .section-title {
    font-family: "Times New Roman", Times, serif !important;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact .section-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #666;
}

/* Form Card Styling (Removing Glass for White Background) */
.contact-glass-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-heading {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #b8860b; /* Deep Gold */
    margin-bottom: 20px !important;
}

/* Compact Input Fields */
.glass-input {
    background: #f8f9fa !important; /* Very light grey */
    border: 1px solid #ced4da !important;
    color: #212529 !important;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.glass-input::placeholder {
    color: #adb5bd;
}

.glass-input:focus {
    border-color: #b8860b !important; /* Gold Border */
    background: #ffffff !important;
    box-shadow: 0 0 8px rgba(184, 134, 11, 0.2) !important;
}

/* Form Labels - Roboto Line Style */
.form-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

/* Golden Submit Button */
.btn-solar-submit {
    background: linear-gradient(90deg, #b8860b, #d4af37); /* Gold Gradient */
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-solar-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.4);
    filter: brightness(1.1);
}

/* Info Blocks - Right Side */
.contact-info-block {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: #fdf8e6; /* Very light gold tint */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8860b;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: #1a1a1a;
}

.info-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0;
}

/* WhatsApp Styling */
.btn-whatsapp-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    transition: 0.3s;
}

.btn-whatsapp-glow:hover {
    background: #128c7e;
    color: white;
    transform: scale(1.05);
}

.whatsapp-cta p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #777;
}

.size .section-title {
    font-family: "Times New Roman", Times, serif !important;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(22, 22, 89);
    margin-bottom: 10px;
}

.boom .section-title{
    font-family: "Times New Roman", Times, serif !important;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(22, 22, 89);
    margin-bottom: 10px;
}
