/* =========================
   Reset + Base
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: block;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    transition: background 0.4s ease;
}

body {
    background: whitesmoke;
}

/* =========================
   Container
========================= */
.background {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background: url('images/Bg.jpg') no-repeat center top;
    background-size: cover;
}

.glass-card {
    width: 90%;
    max-width: 1000px;
    min-height: 68vh;
    backdrop-filter: blur(16px) saturate(180%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 0 16px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
    margin-bottom: 40px;
    animation: fadeInCard 0.6s ease forwards;
}

.glass-card:hover {
    backdrop-filter: blur(18px) saturate(200%);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.32);
}

@keyframes fadeInCard {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.landing-page-wrapper {
    background: url('images/Bg.jpg') no-repeat center top;
    background-size: cover;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Vertically center the content */
}



/* =========================
   Header
========================= */
header {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 50;
    position: relative;
}

.logo {
    position: relative;
}

.logo img {
    height: 44px;
    width: auto;
    border-radius: 6px;
    transition: transform .22s ease, filter .22s ease;
}

.logo img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px #4cc9f0);
}

@keyframes santaWiggle {

    0%,
    100% {
        transform: rotate(25deg);
    }

    50% {
        transform: rotate(20deg);
    }
}

/* Desktop nav */
.desktop-nav {
    margin-left: auto;
}

.desktop-nav .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.desktop-nav a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all .25s ease, text-shadow .25s ease, box-shadow .25s ease;
}

.desktop-nav a:hover {
    color: #4cc9f0;
    transform: translateY(-2px);
    text-shadow: 0 0 8px #4cc9f0, 0 0 16px #4cc9f0;
    box-shadow: 0 0 12px #4cc9f0, 0 0 24px #4cc9f0;
}

/* Desktop instant-quote pulse */
.desktop-nav .quote-btn {
    background: linear-gradient(45deg, #0704ee, #945901);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    animation: pulse 2.2s infinite;
    text-decoration: none;
    display: inline-block;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, text-shadow .2s ease;
}

.desktop-nav .quote-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.28), 0 0 12px #ffdf00;
    text-shadow: 0 0 8px #ffdf00;
}

/* Hamburger for mobile */
.hamburger {
    display: none;
    position: absolute;
    top: 10px;
    right: 18px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 8px;
    border: none;
    cursor: pointer;
    z-index: 1200;
    transition: background .25s ease, transform .25s ease;

    .mobile-top-bar,
    .mobile-contact-icon,
    .mobile-social-icons {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        position: absolute !important;
        left: -9999px !important;
    }
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: scale(1.1);
}

.hamburger i {
    font-size: 26px;
    color: #fff;
    transition: transform .22s ease, filter .22s ease;
}

.hamburger i:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 12px #4cc9f0);
}

/* =========================
   Main Content
========================= */
main {
    text-align: center;
    padding: 22px 6px;
    z-index: 10;
}

.brand {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
    animation: brandFade 0.7s ease forwards;
    transition: text-shadow .3s ease;
}

.brand .highlight {
    color: #4cc9f0;
    text-shadow: 0 0 12px #4cc9f0;
}

.brand:hover {
    text-shadow: 0 0 20px #4cc9f0, 0 0 40px #4cc9f0;
}

@keyframes brandFade {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    margin-top: 10px;
    font-size: 1.5rem;
    opacity: 0.86;
    animation: fadeUp .5s ease forwards 0.2s;
}

.description {
    margin: 14px auto 0;
    max-width: 640px;
    line-height: 1.6;
    opacity: 0.94;
    font-size: 1rem;
    animation: fadeUp .5s ease forwards 0.4s;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-actions {
    margin-top: 18px;
}

.learn-more-btn {
    display: inline-block;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #c41e3a, #ffd700, #165b33, #ffd700, #c41e3a);
    background-size: 300% 300%;
    animation: festiveButtonGradient 3s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.5), 0 0 30px rgba(255, 215, 0, 0.3);
    transition: all .3s ease;
}

.learn-more-btn::after {
    content: '✨';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    animation: buttonSparkle 1.5s ease-in-out infinite;
}

@keyframes festiveButtonGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes buttonIconBounce {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.2);
    }
}

@keyframes buttonSparkle {

    0%,
    100% {
        opacity: 0.6;
        transform: translateY(-50%) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: translateY(-50%) rotate(180deg);
    }
}

.learn-more-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.7), 0 0 50px rgba(255, 215, 0, 0.6);
    animation-duration: 1.5s;
}

/* =========================
   Footer Icons
========================= */
footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 12px;
}

.icons {
    display: flex;
    gap: 60px;
    align-items: center;
}

.icons a {
    position: relative;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

.icons a:nth-child(1) {
    animation-delay: 0s;
}

.icons a:nth-child(2) {
    animation-delay: 0.5s;
}

.icons a:nth-child(3) {
    animation-delay: 1s;
}

.icons a:nth-child(4) {
    animation-delay: 1.5s;
}

.icons img {
    height: 20px;
    display: block;
    opacity: 0.85;
    transition: all .3s ease;
    filter: drop-shadow(0 0 8px rgba(196, 30, 58, 0.5));
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes iconGlow {
    0% {
        filter: drop-shadow(0 0 8px rgba(196, 30, 58, 0.6));
    }

    25% {
        filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.8));
    }

    50% {
        filter: drop-shadow(0 0 8px rgba(22, 91, 51, 0.6));
    }

    75% {
        filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.8));
    }

    100% {
        filter: drop-shadow(0 0 8px rgba(196, 30, 58, 0.6));
    }
}

.icons a:hover img {
    opacity: 1;
    transform: scale(1.3) rotate(360deg);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1));
}

.icons a::before {
    content: '✨';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    opacity: 0;
    animation: sparkleAppear 3s ease-in-out infinite;
}

@keyframes sparkleAppear {

    0%,
    90%,
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }

    95% {
        opacity: 1;
        transform: translateX(-50%) translateY(-5px);
    }
}

/* =========================
   Pulse Animations
========================= */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 92, 0, 0.35);
    }

    60% {
        transform: scale(1.03);
        box-shadow: 0 8px 30px rgba(255, 92, 0, 0.18);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 92, 0, 0);
    }
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* =========================
   Side Menu (Right Drawer) Glass Effect
========================= */
.side-menu {
    position: fixed;
    top: 0;
    right: -60%;
    width: 60%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.08);
    /* Glass background */
    backdrop-filter: blur(16px) saturate(180%);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 0 0 16px;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.32);
    transition: right .38s cubic-bezier(.2, .9, .3, 1), background .3s ease;
    z-index: 1200;
    padding: 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateX(50px);
}

.side-menu.open {
    right: 0;
    opacity: 1;
    transform: translateX(0);
    animation: menuSlideFade 0.38s forwards;
}

/* Close button */
.side-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    /* semi-transparent black */
    border-radius: 50%;
    padding: 8px;
    border: none;
    cursor: pointer;
}

.side-menu .close-btn i {
    font-size: 24px;
    color: #fff;
    transition: transform .18s ease, color .18s ease, text-shadow .22s ease;
}

.side-menu .close-btn i:hover {
    transform: rotate(90deg);
    color: #ffd700;
    text-shadow: 0 0 12px #ffd700;
}

/* Menu links */
.side-menu .menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 48px;
    padding: 0;
}

.side-menu .menu-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1.15rem;
    transition: color .18s ease, transform .18s ease, opacity .4s ease, text-shadow .22s ease, background .22s ease;
    display: inline-block;
    opacity: 0;
    transform: translateX(40px);
    padding-left: 4px;
    border-radius: 6px;
}

.side-menu.open .menu-links a {
    animation: slideFadeIn 0.38s forwards;
}

.side-menu.open .menu-links a:nth-child(1) {
    animation-delay: 0.05s;
}

.side-menu.open .menu-links a:nth-child(2) {
    animation-delay: 0.12s;
}

.side-menu.open .menu-links a:nth-child(3) {
    animation-delay: 0.19s;
}

.side-menu.open .menu-links a:nth-child(4) {
    animation-delay: 0.26s;
}

.side-menu.open .menu-links a:nth-child(5) {
    animation-delay: 0.33s;
}

.side-menu .menu-links a:hover {
    color: #4cc9f0;
    transform: translateX(6px);
    text-shadow: 0 0 12px #4cc9f0, 0 0 24px #4cc9f0;
    background: rgba(76, 201, 240, 0.08);
    padding-left: 6px;
}

/* Keyframes */
@keyframes slideFadeIn {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes menuSlideFade {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Overlay */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    pointer-events: none;
    transition: background .38s ease, opacity .38s ease;
    z-index: 1100;
}

.overlay.show {
    background: rgba(0, 0, 0, 0.55);
    opacity: 1;
    pointer-events: auto;
}

/* =========================
   Mobile Styles
========================= */
@media (max-width: 768px) {
    .mobile-top-bar {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        left: 0 !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 5px 10px;
        background: rgba(0, 0, 0, 0.3);
        top: 0;
        z-index: 100;
    }

    .mobile-phone-icon {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(76, 175, 80, 0.3);
        border-radius: 50%;
        color: #fff;
        font-size: 14px;
        transition: all 0.3s;
    }

    .mobile-phone-icon:hover {
        background: rgba(76, 175, 80, 0.5);
        transform: scale(1.1);
    }

    .mobile-social-icons {
        display: flex;
        gap: 8px;
    }

    .mobile-social-icons a {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        color: #fff;
        font-size: 14px;
        transition: all 0.3s;
    }

    .mobile-social-icons a:hover {
        background: #4FC3F7;
        transform: scale(1.1);
    }

    header {
        align-items: center;
        padding-top: 50px;
    }

    .desktop-nav {
        display: none !important;
    }

    .hamburger {
        display: block;
        top: 8px;
    }

    .glass-card {
        width: 100%;
        padding: 28px 16px;
    }

    .brand {
        font-size: 1.8rem;
        white-space: nowrap;
        text-align: center;
        animation: blink 1s infinite;
        text-shadow: 0 0 10px red;
        text-align: center;
    }

    .subtitle {
        font-size: 1rem;
    }

    .description {
        font-size: 0.95rem;
        max-width: 92%;
    }

    .side-menu {
        width: 75%;
        right: -75%;
        padding-top: 20px;
    }

    .side-menu.open {
        right: 0;
    }

    .side-menu .menu-links a {
        font-size: 1.1rem;
        padding: 10px 6px;
        display: block;
    }

    .side-menu .quote-btn {
        width: calc(100% - 12px);
        margin-top: 6px;
        display: block;
        text-align: center;
        border-radius: 10px;
        color: #fff;
        background: linear-gradient(45deg, #4FC3F7, #29B6F6);
        padding: 12px;
        font-weight: 600;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 90px;
        right: 20px;
        left: auto;
        padding: 0;
    }
    .whatsapp-float i {
        font-size: 26px;
    }
}

/* =========================
   Why Choose Section
========================= */
.why-choose-section {
    display: block;
    width: 100%;
    padding: 60px 20px;
    margin: 40px 0;
    background-color: #fff;
    text-align: center;
    position: relative;
    /* allow pseudo-elements to position relative to section */
}

/* Title with dot background & styling */
.section-title {
    display: inline-block;
    position: relative;
    margin-bottom: 40px;
    margin-left: -20px;
    /* move slightly left */
    padding: 12px 24px;
    background: rgba(76, 201, 240, 0.1);
    /* subtle bluish background */
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    text-align: left;
    /* align text to left */
    z-index: 1;
}

/* Add lots of bluish dots behind the title */
.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background-image: radial-gradient(#4cc9f0 2px, transparent 2px);
    background-size: 15px 15px;
    /* more space between dots */
    opacity: 0.15;
    z-index: -1;
    border-radius: 16px;
    pointer-events: none;
}

/* Span inside title to style specific words if needed */
.section-title span {
    position: relative;
    color: #4cc9f0;
    /* highlight if needed */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .why-choose-section .section-title {
        font-size: 1.0rem;
        /* readable and attractive on phones */
        padding: 10px 16px;
        margin-left: -5px;
        /* slight left shift */
    }

    .section-title::after {
        top: 0;
        left: 0;
        width: 50px;
        /* shorter accent line on mobile */
        height: 4px;
        background-size: 12px 12px;
        /* smaller dot spacing if needed */
        margin: 8px auto 0;
        /* center under title */
    }
}


/* Styling for the reasons container */
.reasons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* Center items horizontally */
    gap: 100px;
    /* Space between each reason */
    padding: 20px;
}

/* Styling for each reason */
.reason {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center items vertically */
    text-align: center;
    width: 200px;
    /* Adjust as needed */
}

/* Styling for the icon */
.reason img {
    width: 50px;
    /* Adjust icon size as needed */
    height: 50px;
    margin-bottom: 10px;
    /* Space between icon and title */
}

@media (max-width: 768px) {
    .reasons-container {
        gap: 40px;
        /* Reduce gap on mobile */
    }

    .reason {
        width: 100%;
        /* Allow reason to take full width */
        max-width: 300px;
        /* But not more than 300px */
    }
}

/* =========================
   Latest Projects Section
========================= */
.latest-projects-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #f5f9ff;
    text-align: center;
    position: relative;
}

.latest-projects-section .section-title {
    display: inline-block;
    position: relative;
    margin-bottom: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin-left: 0;
    /* Remove the left margin to allow true centering */
}

.latest-projects-section .section-title span {
    color: #4cc9f0;
    position: relative;
}

.latest-projects-section .section-title::before {
    content: '';
    position: absolute;
    width: calc(100% + 40px);
    height: calc(100% + 20px);
    background-image: radial-gradient(#4cc9f0 2px, transparent 2px);
    background-size: 12px 12px;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.15;
    z-index: -1;
    border-radius: 12px;
}

/* Projects Container */
.projects-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Project Card */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}


.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.project-card:hover img {
    transform: scale(1.05);
}

/* Project Overlay (Info) - Only title and description */
.project-overlay {
    padding: 16px;
    background-color: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.project-overlay h3 {
    margin-bottom: 8px;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.project-overlay p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Mobile Navigation Buttons */
.mobile-nav {
    display: none;
    /* Hidden by default on desktop */
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.mobile-nav button {
    background: #4cc9f0;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

/* =========================
   Latest Projects Section - Mobile Fixes
========================= */
@media (max-width: 768px) {
    .latest-projects-section {
        padding: 40px 15px;
        overflow: hidden;
        /* Prevent horizontal scrolling */
    }

    .projects-container {
        display: flex;
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 400px;
        /* Fixed height for better mobile experience */
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        background: #fff;
    }

    .project-card {
        position: absolute;
        width: 100%;
        height: 100%;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        opacity: 0;
        transform: translateX(100%);
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
            opacity 0.4s ease;
        border-radius: 16px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        background: #fff;
        overflow: hidden;
    }

    .project-card.active {
        opacity: 1;
        transform: translateX(0);
        z-index: 10;
    }

    .project-card.prev {
        transform: translateX(-100%);
        opacity: 0.3;
        z-index: 5;
    }

    .project-card.next {
        transform: translateX(100%);
        opacity: 0.3;
        z-index: 5;
    }

    .project-card img {
        width: 100%;
        height: 240px;
        /* Increased height for better visibility */
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .project-card:hover img {
        transform: scale(1.03);
    }

    .project-overlay {
        padding: 20px;
        background-color: #fff;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .project-overlay h3 {
        margin-bottom: 12px;
        color: #1e293b;
        font-size: 1.3rem;
        font-weight: 700;
    }

    .project-overlay p {
        color: #64748b;
        line-height: 1.5;
        margin: 0;
        font-size: 1rem;
    }

    /* Enhanced mobile navigation buttons */
    .mobile-nav {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 25px;
        position: relative;
        z-index: 20;
    }

    .mobile-nav button {
        background: linear-gradient(135deg, #4cc9f0, #3b82f6);
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 600;
        font-size: 1rem;
        box-shadow: 0 4px 15px rgba(76, 201, 240, 0.3);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-nav button:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(76, 201, 240, 0.4);
    }

    .mobile-nav button:active {
        transform: translateY(1px);
    }

    /* Carousel indicators */
    .carousel-indicators {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #cbd5e1;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .indicator.active {
        background: #4cc9f0;
        transform: scale(1.3);
    }


    /* Card entrance animation for mobile */
    @keyframes slideInUp {
        0% {
            opacity: 0;
            transform: translateY(30px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .project-card.active {
        animation: slideInUp 0.5s ease forwards;
    }
}

/* Enhanced touch interaction for mobile */
@media (max-width: 768px) and (hover: none) {
    .project-card {
        width: 100%;
        /* Take full width on small screens */
        margin: 10px 0;
        /* Add spacing between cards */
        padding: 16px;
        /* Extra padding for touch */
        font-size: 1rem;
        /* Adjust text size for readability */
        border-radius: 12px;
        /* Slightly round corners */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        /* Subtle shadow */
        transition: transform 0.2s ease;
        /* Smooth hover/tap effect */
    }

    .project-card:active {
        transform: scale(0.98);
        /* Slight scale effect on tap */
    }

    .mobile-nav button {
        padding: 14px 28px;
        /* Larger touch targets */
    }
}

/* =========================
   Testimonials Section - Enhanced with Animations
========================= */
.testimonials {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, #f9faff 0%, #eef2ff 100%);
    text-align: center;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(76, 201, 240, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(50, 205, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.testimonials .section-title {
    display: inline-block;
    margin-bottom: 70px;
    margin-left: 0;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
    animation: titleFloat 6s ease-in-out infinite;
}

@keyframes titleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.testimonials .section-title span {
    color: #4cc9f0;
    position: relative;
}

.testimonials .section-title::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 140%;
    background-image:
        radial-gradient(#4cc9f0 2px, transparent 2px),
        radial-gradient(#32cd99 2px, transparent 2px);
    background-size: 20px 20px, 15px 15px;
    background-position: 0 0, 10px 10px;
    top: -20%;
    left: -10%;
    opacity: 0.15;
    z-index: -1;
    border-radius: 20px;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% {
        background-position: 0 0, 10px 10px;
    }

    100% {
        background-position: 100px 100px, 110px 110px;
    }
}

/* =========================
   Enhanced Carousel Container
========================= */
.testimonials-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.testimonials-carousel {
    position: relative;
    width: 100%;
    height: 380px;
    margin: 0 auto;
    perspective: 1200px;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
}

/* =========================
   Enhanced Testimonial Cards
========================= */
.testimonial-card {
    position: absolute;
    width: 350px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.07);
    background: white;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

/* State for the card that is about to enter from the right */
.testimonial-card.next {
    transform: translateX(calc(-50% + 400px)) scale(0.8);
    opacity: 0;
    z-index: 5;
}

/* State for the card that is currently in the center */
.testimonial-card.active {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    z-index: 10;
}

/* State for the card that is exiting to the left */
.testimonial-card.prev {
    transform: translateX(calc(-50% - 400px)) scale(0.8);
    opacity: 0;
    z-index: 5;
}

/* Remove old classes that are not needed anymore */
.testimonial-card.second,
.testimonial-card.third {
    display: none;
}

.testimonial-card .card-content {
    position: relative;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    overflow: hidden;
}

.testimonial-card .card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4cc9f0, #32cd99);
}

.testimonial-card .quote-icon {
    font-size: 2rem;
    color: #4cc9f0;
    margin-bottom: 20px;
    opacity: 0.7;
    animation: pulseIcon 3s ease-in-out infinite;
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.testimonial-card .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.testimonial-card .client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-card .client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4cc9f0;
    box-shadow: 0 5px 15px rgba(76, 201, 240, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card.active .client-avatar {
    animation: avatarGlow 2s ease-in-out infinite;
}

@keyframes avatarGlow {

    0%,
    100% {
        box-shadow: 0 5px 15px rgba(76, 201, 240, 0.3);
    }

    50% {
        box-shadow: 0 5px 20px rgba(76, 201, 240, 0.6);
    }
}

.testimonial-card .client-details h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

.testimonial-card .client-details p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #777;
}

/* =========================
   Enhanced Navigation
========================= */
.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.nav-btn {
    background: linear-gradient(135deg, #4cc9f0, #32cd99);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(76, 201, 240, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 201, 240, 0.6);
}

.nav-btn:active {
    transform: translateY(-1px);
}

/* =========================
   Enhanced Indicators
========================= */
.testimonials-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #4cc9f0, #32cd99);
    transition: left 0.4s ease;
}

.indicator.active::before {
    left: 0;
}

.indicator.active {
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
}

.indicator.pulse {
    animation: indicatorPulse 0.6s ease-in-out;
}

@keyframes indicatorPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }
}

/* =========================
   Auto-rotation Animation
========================= */
@keyframes autoRotateHint {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.auto-rotate-notice {
    margin-top: 20px;
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: autoRotateHint 3s ease-in-out infinite;
}

/* =========================
   Floating Elements
========================= */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(76, 201, 240, 0.1), rgba(50, 205, 153, 0.1));
    animation: float 15s infinite linear;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    animation-duration: 20s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 70%;
    left: 80%;
    animation-duration: 25s;
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 90%;
    animation-duration: 18s;
    animation-delay: -10s;
}

.floating-element:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 10%;
    animation-duration: 22s;
    animation-delay: -7s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* =========================
   Mobile Responsive Styles
========================= */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 15px;
    }

    .testimonials .section-title {
        font-size: 1.8rem;
        margin-bottom: 50px;
    }

    .testimonials-carousel {
        height: 320px;
    }

    .testimonial-card {
        flex: 0 0 280px;
        margin: 0 10px;
    }

    .testimonial-card .card-content {
        padding: 20px;
    }

    .testimonial-card .testimonial-text {
        font-size: 1rem;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
    }

    .floating-element {
        display: none;
        /* Hide on mobile for better performance */
    }
}

/* =========================
   Animation for Card Transitions
========================= */
@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.testimonial-card.slide-in-right {
    animation: slideInFromRight 0.6s ease-out forwards;
}

.testimonial-card.slide-in-left {
    animation: slideInFromLeft 0.6s ease-out forwards;
}

/* =========================
   Enhanced Grateful Section
========================= */
.grateful-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 20px;
    gap: 40px;
    background: linear-gradient(135deg, #e0f7fa, #fce4ec);
    position: relative;
    overflow: hidden;
}

.grateful-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(76, 201, 240, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(242, 34, 114, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.grateful-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Shift testimonial cards left */
.testimonial-cards-left {
    flex: 1 1 55%;
    position: relative;
    left: -20px;
    animation: slideInFromLeft 1s ease-out;
}

/* Grateful message styling */
.grateful-message {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: slideInFromRight 1s ease-out;
}

.grateful-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4cc9f0, #f06292);
}

.grateful-message h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 12px;
    background: rgba(76, 201, 240, 0.1);
    animation: titleFloat 6s ease-in-out infinite;
}

.grateful-message h2 .highlight {
    color: #0288d1;
    position: relative;
    z-index: 1;
}

/* Dotted background behind heading */
.grateful-message h2::before {
    content: '';
    position: absolute;
    width: 100%;
    height: calc(100% + 20px);
    top: -10px;
    left: 0;
    background-image:
        radial-gradient(#4cc9f0 2px, transparent 2px),
        radial-gradient(#f06292 2px, transparent 2px);
    background-size: 15px 15px, 10px 10px;
    background-position: 0 0, 7px 7px;
    opacity: 0.15;
    border-radius: 16px;
    z-index: 0;
    animation: backgroundMove 15s linear infinite;
}

.grateful-message p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

/* Animated box cards */
.grateful-boxes {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.box-card {
    flex: 0 1 300px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    animation: cardEntrance 0.8s ease-out forwards;
}

.box-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 201, 240, 0.1), rgba(242, 34, 114, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.box-card:hover::before {
    opacity: 1;
}

.box-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transition: all 0.5s ease;
}

.box-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.box-card:hover img {
    transform: scale(1.1);
}

/* =========================
   Mobile Styles for Grateful Section
========================= */
@media (max-width: 768px) {
    .grateful-section {
        flex-direction: column;
        gap: 30px;
        margin-top: 0;
        padding: 60px 15px;
    }

    .testimonial-cards-left,
    .grateful-message {
        flex: 1 1 100%;
        left: 0;
    }

    .grateful-message {
        text-align: center;
        padding: 25px 15px;
        margin-top: 0;
    }

    .grateful-message h2 {
        font-size: 1.8rem;
    }

    .grateful-message p {
        font-size: 1.1rem;
    }

    .grateful-boxes {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .box-card {
        width: 90%;
        max-width: 350px;
    }
}

/* =========================
   Latest Insights Section
========================= */
.latest-insights-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    background-image: radial-gradient(#c0e7ff 1px, transparent 1px);
    background-size: 15px 15px;
    overflow: hidden;
}

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

.section-title {
    font-size: 1.7rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #004d7a;
    position: relative;
    margin-left: 0;
    /* Ensure centering */
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4cc9f0, #0288d1);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* =========================
   Insights Grid
========================= */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
}

.insight-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.insight-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid #eee;
    transition: transform 0.4s ease;
}

.insight-card:hover .card-image {
    transform: scale(1.05);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin: 18px 16px 12px;
    color: #004d7a;
    transition: color 0.3s ease;
    align-items: center;
}

.card-snippet {
    font-size: 1rem;
    color: #555;
    text-align: center;
    padding: 0 16px 24px;
    line-height: 1.6;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1024px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-title {
        font-size: 1.8rem;
        justify-content: center;
    }

    .card-image {
        height: 180px;
    }
}

/* ========================= 
   Footer Section - Updated for Top-Left Logo
========================= */
.footer {
    background: linear-gradient(to right, black, rgb(1, 9, 83));
    color: #fff;
    padding: 60px 0 30px;
    font-family: "Arial", sans-serif;
    border-radius: 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1fr 1fr;
    /* Identity column first, then the others */
    gap: 60px;
    padding: 0 40px;
    align-items: start;
}

/* === Left Column: Logo + Contact Info === */
.footer-identity {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

/* Logo Section (top-left) */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-logo-img {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 10px;
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    color: #130e0e;
}

.footer-logo p {
    font-size: 0.9rem;
    color: #d9e3ed;
    margin-top: 3px;
}

/* Contact info (under the logo) */
.contact-info {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #d9e3ed;
    line-height: 1.6;
}

/* === Middle Column: Products === */
.footer-section h3 {
    font-size: 0.95rem;
    color: #b6c3d4;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 0.8;
}

/* === Right Column: Map === */
.footer-map iframe {
    width: 100%;
    height: 200px;
    /* Adjust height as needed */
    border: 0;
    border-radius: 8px;
    filter: grayscale(30%) contrast(1.1);
    transition: filter 0.3s ease;
}

.footer-map iframe:hover {
    filter: grayscale(0%) contrast(1);
}

/* === Footer Bottom Bar === */
.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 40px;
    padding-right: 40px;
}

.footer-bottom-left {
    font-size: 0.9rem;
    color: #d9e3ed;
}

.footer-bottom-left a {
    color: #d9e3ed;
    text-decoration: none;
    margin: 0 5px;
    transition: opacity 0.3s ease;
}

.footer-bottom-left a:hover {
    opacity: 0.8;
}

.web-design-btn {
    background: linear-gradient(to left, rgb(114, 1, 1), blue);
    color: #fff !important;
    padding: 6px 12px;
    border-radius: 30px;
    /* Fixed: removed space between 30 and px */
    font-size: 0.8rem;
    /* Fixed: changed font-weight to font-size */
    text-decoration: none !important;
    animation: blinkRed 1.5s infinite;
    transition: all 0.3s ease;
    position: relative;
    /* Add this */
    top: 10px;
    /* Move down */
    left: -20px;
    /* Move to the left */
    display: inline-block;
    /* Add this */
}

.web-design-btn:hover {
    transform: scale(1.05);
    opacity: 1;
}

@keyframes blinkRed {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(255, 65, 77, 0.5), 0 0 10px rgba(255, 65, 77, 0.5);
    }

    50% {
        box-shadow: 0 0 15px rgba(255, 65, 77, 1), 0 0 25px rgba(255, 65, 77, 1);
    }
}

.separator {
    margin: 0 10px;
}

/* === Social Icons (bottom right) === */
.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-icons a {
    color: #ffffff;
    font-size: 1rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* === Social Icons Section (Right Column) === */
.social-icons-section h3 {
    font-size: 0.95rem;
    color: #b6c3d4;
}

/* === FINAL FIXED MOBILE FOOTER (Single Vertical Stack) === */
@media (max-width: 768px) {

    /* Overall footer container stacked vertically */
    .footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        padding: 0;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
        margin: 0;
        gap: 25px;
    }

    /* Each section full width */
    .footer-section {
        width: 100%;
        padding: 15px;
        text-align: center;
    }

    /* Logo section */
    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin-bottom: 10px;
    }

    .footer-logo h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .footer-logo p {
        font-size: 0.9rem;
        color: #aee1d5;
    }

    .contact-info {
        margin-top: 10px;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Product section */
    .footer-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

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

    .footer-section ul li a {
        color: #dff8f0;
        text-decoration: none;
        font-size: 0.9rem;
    }

    .footer-section ul li a:hover {
        color: #7ed6c2;
    }

    /* Social icons centered */
    .social-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 22px;
        margin-top: 25px;
        padding-bottom: 25px;
        /* space between icons and underline */
        border-bottom: 2px solid rgba(255, 255, 255, 0.25);
        width: 100%;
        text-align: center;
        position: relative;
    }

    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        /* makes it pop off the bg */
        color: #fff;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .social-icons a:hover {
        background: linear-gradient(135deg, #00d1a0, #0075ff);
        transform: scale(1.15);
        box-shadow: 0 4px 12px rgba(0, 209, 160, 0.6);
    }


    /* Footer bottom — centered and stacked */
    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 10px 100px 10px;
        width: 100%;
        margin-top: 10px;
    }

    .footer-bottom-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    .footer-bottom-left .separator {
        display: none;
    }

    .footer-bottom-left .copyright {
        font-size: 0.85rem;
        color: #a0c7be;
        order: 99;
    }

    /* Web design button centered below copyright */
    .web-design-btn {
        background: linear-gradient(135deg, #1a02ee, #ff006a);
        color: #fff;
        padding: 10px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 0.70rem;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
        margin-bottom: 0;
        position: static;
    }

    .web-design-btn:hover {
        background: linear-gradient(135deg, #1306c7, #76048d);
        transform: scale(1.05);
    }

    /* Map section — last element, full width */
    .footer-map {
        order: 99;
        /* force it to be at the bottom */
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .footer-map iframe {
        width: 100%;
        height: 250px;
        border: none;
        border-radius: 10px;
        filter: grayscale(30%) contrast(1.1);
        transition: filter;
        display: block;
    }
}

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

/* Two-Row Navigation Layout */
.desktop-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
}

.nav-bottom-row {
    display: flex;
    align-items: center;
}

/* Email Link Styling */
/* Email Link Styling */
.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 12px;
    background: rgba(37, 211, 102, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.phone-link:hover {
    background: #25D366;
    color: #fff;
}

.phone-link i {
    font-size: 16px;
    animation: shake 2s infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-10deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(10deg);
    }
}

/* Search Feature */
.search-wrapper {
    position: relative;
}

.search-icon {
    background: #4FC3F7;
    border: none;
    color: #000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(79, 195, 247, 0.4);
}

.search-icon:hover {
    background: #29B6F6;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(79, 195, 247, 0.6);
}

.search-box {
    position: absolute;
    top: 45px;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 10px;
    padding: 15px;
    min-width: 300px;
    display: none;
    z-index: 1000;
}

.search-box.active {
    display: block;
}

#searchInput {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 5px;
    outline: none;
}

.search-results {
    max-height: 300px;
    overflow-y: auto;
    margin-top: 10px;
}

.search-result-item {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: background 0.3s;
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.search-result-item a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.no-results {
    color: #888;
    padding: 10px;
    text-align: center;
}

.email-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 12px;
    background: rgba(79, 195, 247, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.email-link:hover {
    background: #4FC3F7;
    color: #000;
}

.email-link i {
    font-size: 16px;
}

/* Social Media Icons */
.nav-top-row .social-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-top-row .social-group a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #000;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.nav-top-row .social-group a:hover {
    background: #4FC3F7;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(79, 195, 247, 0.4);
}

.dropdown-toggle {
    cursor: pointer;
    /* Style to match other nav links */
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all .25s ease, text-shadow .25s ease, box-shadow .25s ease;
    line-height: inherit;
    /* Ensure vertical alignment */

}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(to right, blue, rgba(8, 8, 8, 0.15));
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 10px 0;
    list-style: none;
    display: none;
    flex-direction: column;
    min-width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.dropdown-menu li {
    text-align: left;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.25);
}

.desktop-nav .dropdown-toggle:hover {
    color: #4cc9f0;
    transform: translateY(-2px);
    text-shadow: 0 0 8px #4cc9f0, 0 0 16px #4cc9f0;
    box-shadow: 0 0 12px #4cc9f0, 0 0 24px #4cc9f0;
}

/* Show dropdown on hover for desktop */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: flex;
    }
}

/* Mobile-friendly dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.08);
        box-shadow: none;
        border-radius: 0;
        display: none;
        background: linear-gradient(to right, rgb(47, 47, 248), rgba(255, 255, 255, 0.15));
        backdrop-filter: blur(8px);
        border-radius: 10px;
    }

    .dropdown.open .dropdown-menu {
        display: flex;
    }

    .side-menu .dropdown-toggle,
    .side-menu .menu-links>li>a {
        color: #fff;
        font-size: 1.1rem;
        padding: 10px 6px;
        display: block;
        width: 100%;
        text-align: left;
        /* Glass effect */
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 15px;
    }

    .side-menu .dropdown-toggle {
        font-family: 'Poppins', sans-serif;
    }
}

/* === WhatsApp Floating Button === */
.whatsapp-float {
    position: fixed;
    height: 55px;
    bottom: 40px;
    left: 40px;
    right: auto;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 12px;
    padding: 8px 20px;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
    transition: transform 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
}

.whatsapp-float .whatsapp-text {
    display: block;
}

.whatsapp-float i {
    font-size: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation-play-state: paused;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes wa-shake {
    0%,100% { transform: rotate(0deg) scale(1); }
    10% { transform: rotate(-15deg) scale(1.1); }
    20% { transform: rotate(15deg) scale(1.1); }
    30% { transform: rotate(-10deg) scale(1.05); }
    40% { transform: rotate(10deg) scale(1.05); }
    50% { transform: rotate(0deg) scale(1); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 90px;
        right: 20px;
        left: auto;
        padding: 0;
        border-radius: 50%;
        gap: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: wa-shake 3s ease-in-out infinite;
    }
    .whatsapp-float .whatsapp-text {
        display: none;
    }
    .whatsapp-float i {
        font-size: 26px;
    }
}

/* Mobile Search Box */
.mobile-search-box {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 200px;
    width: 200px;
}

.mobile-search-box input {
    width: 100%;
    padding: 8px 35px 8px 12px;
    border: 2px solid rgba(79, 195, 247, 0.3);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 12px;
    outline: none;
    transition: all 0.3s;
}

.mobile-search-box input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.mobile-search-box input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #4FC3F7;
}

.mobile-search-box button {
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: none;
    background: #4FC3F7;
    color: #000;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 11px;
}

.mobile-search-box button:hover {
    background: #29B6F6;
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .mobile-search-box {
        display: block;
    }

    header {
        position: relative;
    }
}

/* =========================================
   ACTURA STYLE REDESIGN (Hero Section)
   ========================================= */

/* 1. Main Wrapper Setup */
.landing-page-wrapper.actura-style {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: visible;
    background: #000;
}

/* 2. Background Image & Dark Overlay */
.actura-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Uses your existing image path */
    background-image: url('https://images.pexels.com/photos/34076538/pexels-photo-34076538.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.actura-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient: Dark on left, transparent on right */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.container-width {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* 3. Header Adjustments for Dark Theme */
.landing-page-wrapper.actura-style header {
    padding-top: 25px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 4. The "Bracket" Text Box (Crucial for the design) */
.hero-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    /* Vertically center the text */
    position: relative;
    padding-bottom: 100px;
    /* Space for bottom cards */
}

.bracket-box {
    position: relative;
    padding: 30px 0 30px 40px;
    /* Space inside the bracket */
    margin-left: 15px;
    margin-top: 60px;
    max-width: 700px;
    /* THE YELLOW LEFT BORDER */
    border-left: 5px solid #4FC3F7;
}

/* THE YELLOW TOP BORDER (The bracket arm) */
.bracket-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    /* Length of the top line */
    height: 5px;
    background-color: #4FC3F7;
}

/* THE YELLOW BOTTOM BORDER (The bracket arm) */
.bracket-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    /* Length of the bottom line */
    height: 5px;
    background-color: #4FC3F7;
}

/* Typography Overrides */
.top-tag {
    color: #ccc;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.bracket-box h1.brand {
    text-align: left;
    /* Align left unlike previous center */
    font-size: 3.5rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: none;
    /* Remove neon glow for cleaner look */
    animation: none;
}

.bracket-box .highlight {
    color: #fff;
    /* Keep title white */
}

.bracket-box .description {
    text-align: left;
    margin: 0 0 35px 0;
    max-width: 500px;
    color: #b0b0b0;
    font-size: 16px;
}

/* Button Alignment */
.main-actions {
    display: flex;
    gap: 20px;
    margin-top: 0;
}

.btn-play {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-play:hover {
    color: #4FC3F7;
}

/* 5. The Hotspots (Yellow Dots) */
.hotspot {
    position: absolute;
    width: 35px;
    height: 35px;
    background: rgba(79, 195, 247, 0.4);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.hotspot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: #4FC3F7;
    border-radius: 50%;
    animation: pulseSpot 2s infinite;
}

/* Positioning the dots */
.spot-1 {
    top: 20%;
    right: 30%;
}

.spot-2 {
    top: 45%;
    right: 10%;
}

.spot-3 {
    bottom: 35%;
    right: 40%;
}

.spot-4 {
    top: 65%;
    right: 20%;
}

@keyframes pulseSpot {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 195, 247, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(79, 195, 247, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(79, 195, 247, 0);
    }
}

/* 6. The Bottom Cards - Overlapping Effect */
.hero-bottom-cards {
    position: relative;
    z-index: 100;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto -100px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 20px;
    transform: translateY(10%);
}

.h-card {
    background-color: #1a1a1a;
    padding: 40px 30px;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.h-card:last-child {
    border-right: none;
}

.h-card:hover {
    background-color: #222;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Little yellow square accent on cards */
.card-line {
    width: 10px;
    height: 10px;
    background-color: #4FC3F7;
    margin-bottom: 20px;
}

.h-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.h-card p {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.read-more {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.read-more:hover {
    color: #4FC3F7;
}

/* Large faded icon in card background */
.card-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.03);
    /* Very subtle */
    pointer-events: none;
}

/* 7. Mobile Responsive Fixes */
@media (max-width: 768px) {
    .landing-page-wrapper.actura-style {
        height: auto;
        min-height: auto;
    }

    .bracket-box {
        margin-left: 0;
        padding-left: 20px;
        margin-top: 40px;
    }

    .bracket-box h1.brand {
        font-size: 2.2rem;
    }

    .hero-bottom-cards {
        grid-template-columns: 1fr;
        margin: 50px auto 0 auto;
        transform: translateY(0);
    }

    .h-card {
        padding: 25px 20px;
    }

    .h-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .h-card p {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .card-line {
        width: 8px;
        height: 8px;
        margin-bottom: 15px;
    }

    .read-more {
        font-size: 11px;
    }

    .card-icon {
        font-size: 40px;
    }

    .about-section {
        padding: 100px 20px;
    }

    .spot-1,
    .spot-2,
    .spot-3,
    .spot-4 {
        display: none;
        /* Hide dots on mobile */
    }

    .spot-5,
    .spot-6,
    .spot-7,
    .spot-8 {
        display: none;
    }

    .hero-content .spot-1 {
        display: block !important;
        top: 80%;
        left: 15%;
    }

    .hero-content .spot-2 {
        display: block !important;
        top: 85%;
        left: 65%;
    }

    .hero-content .spot-3 {
        display: block !important;
        top: 90%;
        left: 40%;
    }

    .hero-content .spot-4 {
        display: block !important;
        top: 88%;
        left: 80%;
    }

    .hero-content .spot-5 {
        display: block !important;
        top: 82%;
        left: 50%;
    }

    .hero-content .spot-6 {
        display: block !important;
        top: 87%;
        left: 25%;
    }

    .hero-content .spot-7 {
        display: block !important;
        top: 91%;
        left: 70%;
    }

    .hero-content .spot-8 {
        display: block !important;
        top: 84%;
        left: 90%;
    }

    .main-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =========================================
   ABOUT US SECTION (Industrial Design)
   ========================================= */
.about-section {
    background: #fff;
    padding: 200px 20px 100px 20px;
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-col {
    position: relative;
}

.image-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wireframe-border {
    position: absolute;
    width: 90%;
    height: 95%;
    border: 3px solid #ddd;
    top: -20px;
    left: -30px;
    z-index: 0;
}

.dot-pattern {
    position: absolute;
    width: 80px;
    height: 80px;
    bottom: -10px;
    right: -10px;
    background-image: radial-gradient(#ccc 2px, transparent 2px);
    background-size: 12px 12px;
    z-index: 2;
}

.about-image-col img {
    position: relative;
    width: 100%;
    height: 500px;
    object-fit: cover;
    z-index: 1;
}

.about-content-col h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.yellow-square {
    width: 12px;
    height: 12px;
    background: #4FC3F7;
    display: inline-block;
    flex-shrink: 0;
}

.intro-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 4px solid #4FC3F7;
}

.body-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.clean-btn {
    display: inline-block;
    padding: 12px 35px;
    background: #fff;
    color: #222;
    border: 2px solid #222;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.clean-btn:hover {
    background: #222;
    color: #fff;
}

/* =========================================
   OFFERS SECTION
   ========================================= */
.offers-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.offers-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.offers-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.offers-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-card.featured {
    background: linear-gradient(135deg, #4FC3F7 0%, #29B6F6 100%);
    color: #fff;
    box-shadow: 0 15px 40px rgba(79, 195, 247, 0.4);
}

.service-card.featured:hover {
    box-shadow: 0 20px 50px rgba(79, 195, 247, 0.6);
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #222;
}

.service-card.featured h4 {
    color: #fff;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #4FC3F7;
}

.service-card.featured .price {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.service-card.featured .service-desc {
    color: rgba(255, 255, 255, 0.95);
}

.service-includes {
    margin-bottom: 25px;
    flex-grow: 1;
}

.includes-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.service-card.featured .includes-title {
    color: #fff;
}

.service-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-includes li {
    font-size: 0.85rem;
    color: #666;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4FC3F7;
    font-weight: bold;
}

.service-card.featured .service-includes li {
    color: rgba(255, 255, 255, 0.9);
}

.service-card.featured .service-includes li::before {
    color: #fff;
}

.order-link {
    color: #222;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    padding: 12px 20px;
    border: 2px solid #222;
    border-radius: 25px;
    display: inline-block;
    text-align: center;
    margin-top: auto;
}

.service-card.featured .order-link {
    color: #fff;
    border-color: #fff;
}

.order-link:hover {
    background: #222;
    color: #fff;
    transform: translateX(5px);
}

.service-card.featured .order-link:hover {
    background: #fff;
    color: #4FC3F7;
}

.pricing-notice {
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    border-left: 5px solid #fff;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.pricing-notice h5 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.pricing-notice p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-col {
        position: relative;
    }

    .about-image-col::before {
        content: '';
        position: absolute;
        top: -15px;
        left: -15px;
        right: 15px;
        bottom: 15px;
        border: 3px solid #4FC3F7;
        z-index: 0;
        animation: borderPulse 3s infinite;
    }

    .about-image-col::after {
        content: '';
        position: absolute;
        top: 15px;
        right: -15px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #4FC3F7, #29B6F6);
        opacity: 0.3;
        z-index: 3;
        animation: float 4s ease-in-out infinite;
    }

    .about-image-col img {
        height: 350px;
        box-shadow: 0 10px 30px rgba(79, 195, 247, 0.3);
    }

    .about-content-col h2 {
        font-size: 2rem;
    }

    .offers-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .service-card h4 {
        font-size: 1.3rem;
    }

    .service-card .price {
        font-size: 1.6rem;
    }

    .pricing-notice {
        padding: 20px;
        margin-top: 30px;
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px) rotate(-2deg);
    }

    75% {
        transform: translateX(3px) rotate(2deg);
    }
}

@keyframes slideFromRight {
    0% {
        left: 100%;
    }

    50% {
        left: 50%;
    }

    100% {
        left: 50%;
    }
}

@keyframes slideFromLeft {
    0% {
        right: 100%;
    }

    50% {
        right: 50%;
    }

    100% {
        right: 50%;
    }
}

@keyframes snowfall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(50px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes borderPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.02);
        opacity: 0.8;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@media (max-width: 768px) {
    header {
        padding-top: 50px !important;
    }

    .hamburger {
        margin-top: 50px !important;
    }

    .projects-container {
        display: none !important;
    }

    .mobile-nav {
        display: none !important;
    }

    .mobile-projects-intro {
        display: block !important;
        text-align: center;
        padding: 20px;
        background: #f8f8f8;
        border-radius: 10px;
        margin: 20px auto;
    }

    .mobile-projects-intro h3 {
        font-size: 20px;
        color: #222;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .mobile-projects-intro p {
        font-size: 14px;
        color: #666;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .view-work-btn {
        background: linear-gradient(135deg, #4FC3F7, #29B6F6);
        color: #000;
        border: none;
        padding: 12px 30px;
        border-radius: 25px;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s;
    }

    .view-work-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(79, 195, 247, 0.4);
    }

    .mobile-top-bar {
        position: relative;
        overflow: hidden;
    }

    .mobile-top-bar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(90deg, #4FC3F7, #29B6F6);
        animation: slideFromRight 3s infinite;
        z-index: 0;
    }

    .mobile-top-bar::after {
        content: '';
        position: absolute;
        top: 0;
        right: 100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(90deg, #29B6F6, #4FC3F7);
        animation: slideFromLeft 3s infinite;
        z-index: 0;
    }

    .mobile-contact-icon,
    .mobile-social-icons a {
        animation: shake 0.5s infinite;
        position: relative;
        z-index: 2;
    }

    .mobile-contact-icon {
        width: 26px;
        height: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(79, 195, 247, 0.3);
        border-radius: 50%;
        color: #fff;
        font-size: 11px;
        transition: all 0.3s;
    }

    .mobile-contact-icon:hover {
        background: rgba(79, 195, 247, 0.5);
        transform: scale(1.1);
    }

    .mobile-social-icons {
        display: flex;
        gap: 5px;
    }

    .mobile-social-icons a {
        width: 26px;
        height: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        color: #fff;
        font-size: 11px;
        transition: all 0.3s;
    }

    .mobile-social-icons a:hover {
        background: #4FC3F7;
        transform: scale(1.1);
    }

    .snow {
        position: absolute;
        width: 2px;
        height: 2px;
        background: white;
        border-radius: 50%;
        animation: snowfall 3s linear infinite;
        z-index: 1;
    }
}


/* Mobile Projects Modal */
.mobile-projects-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
}

.mobile-projects-modal::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.mobile-projects-modal.active {
    display: block;
}

.mobile-projects-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 20px;
    position: relative;
    z-index: 1;
}

.mobile-projects-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4FC3F7, #29B6F6);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(79, 195, 247, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-projects-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(79, 195, 247, 0.6);
}

.mobile-projects-content h2 {
    color: #222;
    text-align: center;
    margin-bottom: 30px;
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.mobile-projects-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4FC3F7, #29B6F6);
    border-radius: 2px;
}

.mobile-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.mobile-project-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.mobile-project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.3);
    border-color: #4FC3F7;
}

.mobile-project-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s;
}

.mobile-project-item:hover img {
    transform: scale(1.05);
}

.mobile-project-info {
    padding: 12px;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
}

.mobile-project-info h3 {
    color: #222;
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
}

.mobile-project-info p {
    color: #666;
    font-size: 11px;
    line-height: 1.5;
}