        :root{
            --brand:#0b6860;
            --ink:black;
            --brand2:#ebbd05;
            --muted:#777;
            --bg:white;
            --light:#f5f5f5;
        }
        
        *{
            margin:0;
            padding:0;
            box-sizing:border-box;
            font-family:'Inter', sans-serif;
        }
        
        body{
            background:var(--bg); color:var(--ink);
            font-family: system-ui, -apple-system, BlinkMacSystemFont,
             "Segoe UI", Roboto, Arial, sans-serif;

        }
        
        /* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: #0b6860; /* brand color */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

#preloader .loader {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    padding: 10px;
    z-index: 2;
}

/* Rotating ring */
#preloader .loader::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: #ebbd05; /* accent */
    animation: spin 1.2s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

        #particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}
        /* ===== TOP HEADER ===== */
     /* ===== TOP HEADER (PREMIUM) ===== */
.top-header{
    width:100%;
    padding:10px 5%;
    background:var(--brand);
    backdrop-filter:blur(6px);
    color:#fff;
    font-size:14px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:absolute;
    top:0;
    left:0;
    z-index:60;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.top-header-right a{
color:#fff;
margin-left:12px;
text-decoration:none;
}

/* ===== MAIN HEADER (PREMIUM) ===== */
header {
    width: 100%;
    padding: 18px 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 40px;
    background: transparent;
    border-bottom: 1px solid transparent;
    z-index: 49;
    transition: background 0.3s ease, border 0.3s ease, padding 0.3s ease;
}

header.scrolled {
    background: white;
    border-bottom: 1px solid #eee;
    top: 0;
    padding: 1px 4%;
}

/* Logo */
header .logo {
    font-size: 24px;
    font-weight: 700;
    color: #ebbd05;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

header.scrolled .logo {
    color: #333;
}

/* Navigation Styling */
nav ul {
    display: flex;
    gap: 34px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease, padding 0.3s ease;
}

header.scrolled nav a {
    color: #333;
}

/* ===== Active Navigation Link ===== */
nav a.active {
    color: #ebbd05;
    font-weight: 600;
    padding-bottom: 5px;
}

nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #ebbd05;
}

header.scrolled nav a.active {
    color: #ebbd05;
}


/* Hover Effects */
nav a:hover {
    color: #ebbd05;
    padding-bottom: 5px;
    border-bottom: 2px solid #ebbd05;
}

/* Dropdown Menu */
/* ===== Dropdown Menu Styling ===== */
/* ===== Dropdown Menu Styling ===== */
nav .dropdown {
    position: relative;
}

/* Dropdown Indicator */
nav .dropdown > a::after {
    content: ' ▼';
    font-size: 12px; /* Larger arrow for better visibility */
    margin-left: 8px; /* Increased gap between the text and the arrow */
    transition: transform 0.3s ease;
}

/* Dropdown Menu */
nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
    color:white;
    padding: 14px 0; /* Increased padding for the dropdown menu */
    min-width: 220px; /* Wider dropdown for more spacious items */
    border-radius: 10px; /* Rounded corners for a soft, premium look */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* Larger shadow for depth */
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px); /* Subtle slide-in effect */
    transition: opacity 0.3s ease, transform 0.3s ease;
    word-wrap: break-word; /* Allow long words to break into multiple lines */
    word-break: break-word; /* Ensures long words are broken and don't overflow */
}

/* Dropdown Menu Items */
nav .dropdown-menu li {
    margin: 0;
    padding: 2px 0; /* Increased padding between items */
}

nav .dropdown-menu a {
    color: #ddd;
    padding: 14px 24px; /* More padding inside dropdown items for spacious look */
    font-size: 15px; /* Slightly larger font size for better readability */
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 100%; /* Ensures the hover style spans the full width of the item */
    display: block; /* Makes the anchor element a block element so it fills the width */
}

/* Hover Effects for Dropdown Items */
nav .dropdown-menu a:hover {
    background-color: #666;
    color: #fff;
}

/* Show Dropdown on Hover */
nav .dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Rotate Dropdown Arrow on Hover */
nav .dropdown:hover > a::after {
    transform: rotate(180deg);
}

/* Active Item Indicator (Optional) */
nav .dropdown-menu a.active {
    background-color: #ebbd05;
    color: #333;
    font-weight: bold;
}

nav .dropdown-menu a.active {
    background-color: #ebbd05;
    color: #333;
    font-weight: bold;
}


/* Responsive Styling for Dropdown */
@media (max-width: 768px) {
    /* For mobile devices, adjust the padding and menu structure */
    nav .dropdown-menu {
        min-width: 100%; /* Full width for mobile */
        box-shadow: none; /* Remove shadow for mobile */
        padding: 0;
    }

    nav .dropdown-menu li {
        padding: 10px 20px; /* Adjust padding for better spacing on smaller screens */
    }
}

/* ==============================
   HERO SECTION – PREMIUM CLEAN
================================ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    isolation: isolate;
}

/* Background image */
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay for readability */
.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.45) 45%,
        rgba(0,0,0,0.15) 100%
    );
    z-index: 1;
}

/* ==============================
   HERO CONTENT – PREMIUM
================================ */

.hero-content {
    position: relative;
    top: 65%;
    left: 6%;
    transform: translateY(30%);
    max-width: 960px;
    z-index: 2;
    color: #ffffff;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: heroFadeUp 0.9s ease forwards;
    border-right: 0px solid #ebbd05;
}

/* Heading */
.hero-content h1 {
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* Subtext */
.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    max-width: 520px;
}

/* CTA Button */
.hero-content a {
    align-self: flex-start;
    padding: 14px 34px;
    background: var(--brand2);
    color: #000;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.hero-content a:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0,0,0,.25);
}

/* ==============================
   HERO ANIMATION (ONLY ONE)
================================ */

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(calc(-50% + 30px));
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
    .hero-content {
        left: 24px;
        right: 24px;
        max-width: 100%;
    }

    .hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
}

        
        .google-services {
    background: #f8fafc;
}

.google-services .google-desc {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}


  
        /* ===== CORPORATE FOOTER ===== */
footer {
    background-color: #1d1d1d; /* Dark background for a corporate, professional look */
    color: #fff;
    padding: 60px 10%;
    font-family: 'Roboto', sans-serif;
}

/* Footer Top Section */
footer .footer-top {
    margin-bottom: 30px;
}

footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Four columns for the sections */
    gap: 40px;
}

/* Footer Column Styles */
footer .footer-col h4 {
    font-size: 18px;
    font-weight: bold;
    color: #ebbd05; /* Accent color */
    margin-bottom: 15px;
}

footer .footer-col p,
footer .footer-col ul {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
    margin: 0;
}

footer .footer-col ul {
    list-style: none;
    padding: 0;
}

footer .footer-col ul li {
    margin-bottom: 10px;
}

footer .footer-col a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s ease;
}

footer .footer-col a:hover {
    color: #ebbd05; /* Accent color on hover */
}

/* Footer Bottom Section */
footer .footer-bottom {
    background-color: #1d1d1d;
    padding: 20px 0;
    font-size: 14px;
    color: #bbb;
    text-align: center;
}

footer .footer-bottom .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

footer .footer-bottom .social-icons {
    display: flex;
    gap: 15px;
}

footer .footer-bottom .social-icons a {
    font-size: 18px;
    color: #bbb;
    transition: color 0.3s ease;
}

footer .footer-bottom .social-icons a:hover {
    color: #ebbd05;
}

/* Responsive Design */
@media (max-width: 768px) {
    footer {
        padding: 40px 5%;
    }

    footer .footer-grid {
        grid-template-columns: 1fr; /* Stack sections on top of each other */
        gap: 30px;
    }

    footer .footer-bottom .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    footer .footer-bottom .social-icons {
        justify-content: center;
        margin-top: 15px;
    }

    footer .footer-col h4 {
        font-size: 16px; /* Slightly smaller font for headings on mobile */
    }

    footer .footer-col a {
        font-size: 13px; /* Smaller font size for links */
    }
}

        .google-services .service-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.google-services .service-card i {
    font-size: 36px;
    color: #0b6860;
    margin-bottom: 18px;
}

.google-services .service-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.google-services .service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.google-services .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.1);
}

.what-we-offer {
    padding: 100px 5%;
    background: #ffffff;
}

.what-we-offer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.offer-header {
    text-align: center;
    margin-bottom: 70px;
}

.offer-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0b6860;
    margin-bottom: 12px;
}

.offer-header p {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.offer-card {
    background: #f9fafb;
    padding: 40px 30px;
    border-radius: 14px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card i {
    font-size: 36px;
    color: #0b6860;
    margin-bottom: 20px;
}

.offer-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.offer-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

/* Existing Why Choose Us Styles */
.why-choose-us {
    padding: 100px 5%;
    background: #f8fafc;
}

.why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-us .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.why-choose-us h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0b6860;
    margin-bottom: 12px;
}

.why-choose-us p {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.choose-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 14px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.choose-card i {
    font-size: 34px;
    color: #0b6860;
    margin-bottom: 18px;
}

.choose-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.choose-card:hover {
    transform: translateY(-6px);
}

/* Background Image Enhancement ONLY */
.why-choose-us.bg-image {
    position: relative;
    background-image: url("{% static 'why-choose-bg.jpg' %}");
    background-size: cover;
    background-position: center;
}

.why-choose-us.bg-image .bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(248, 250, 252, 0.93);
    z-index: 1;
}

.why-choose-us.bg-image .container {
    position: relative;
    z-index: 2;
}

.page-banner {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}


.page-banner .banner-overlay {
    position: absolute;
    inset: 0;
    background: #0b6860de;
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 5%;
}

.banner-content {
    max-width: 700px;
    color: #ffffff;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #e6f4f2;
}

.banner-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    background: #ffffff;
    color: #0b6860;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.btn-primary:hover,
.btn-outline:hover {
    opacity: 0.9;
}

.blog-section {
    padding: 100px 5%;
    background: #ffffff;
}

.blog-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-section .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.blog-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0b6860;
    margin-bottom: 12px;
}

.blog-section p {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.blog-card {
    background: #f8fafc;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
}

.blog-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-category {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #0b6860;
    margin-bottom: 10px;
}

.blog-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.blog-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.6;
}

.read-more {
    font-weight: 600;
    color: #0b6860;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}
.contact-section {
    padding: 100px 5%;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0b6860;
}

.section-header p {
    max-width: 750px;
    margin: 12px auto 0;
    font-size: 16px;
    color: #555;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-wrapper {
    background: #fff;
    padding: 45px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.form-group textarea {
    min-height: 140px;
}

.contact-map {
    border-radius: 14px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

.btn-primary {
    background: #0b6860;
    color: #fff;
    padding: 14px 28px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary:hover {
    background: #084f49;
}

.alert.success {
    background: #e6f4f2;
    color: #0b6860;
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PREMIUM ANIMATION CORE ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(.22,.61,.36,1),
                transform 0.9s cubic-bezier(.22,.61,.36,1);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        transition: none;
        opacity: 1;
        transform: none;
    }
}



.offer-card,
.service-card,
.choose-card,
.blog-card {
    transition: transform .45s cubic-bezier(.22,.61,.36,1),
                box-shadow .45s cubic-bezier(.22,.61,.36,1);
}

.offer-card:hover,
.service-card:hover,
.choose-card:hover,
.blog-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.page-banner,
.quote-banner {
    background-attachment: fixed;
}

.quote-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}


.quote-banner .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .page-banner,
    .quote-banner {
        background-attachment: scroll;
    }
}

.btn-primary,
.btn-outline,
.cta-button {
    transition: transform .3s ease, box-shadow .3s ease;
}

.btn-primary:hover,
.btn-outline:hover,
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

/* ===== Coming Soon Badge ===== */
.coming-soon-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #ebbd05;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 30px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* Ensure card supports badge positioning */
.offer-card {
    position: relative;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

