/*

TemplateMo 595 3d coverflow

https://templatemo.com/tm-595-3d-coverflow

*/

@charset "utf-8";
/* CSS Document */

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            overflow-x: hidden;
            position: relative;
            background: #000;
        }

        /* Sections */
        .section {
            min-height: 100vh;
            /* position: relative; */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #home {
            background: radial-gradient(ellipse at center, #1a1a2e 0%, #0f0f0f 100%);
        }



/* On small screens, push logo to the left edge */
@media (max-width: 768px) {
  .logo-container {
    margin-left: 0;
    padding-left: 0;
  }

  .logo {
    width: 120px; /* adjust size for small screens */
  }
}



#about {
    /* PNG image on top, gradient behind */
    background: 
        url('images/lines.png') no-repeat center center,  /* PNG image */
        linear-gradient(135deg, #000000 0%, #00000004 100%); /* gradient behind */

    background-size: contain, cover; /* first is image, second is gradient */
    background-repeat: no-repeat, no-repeat; /* image doesn't repeat, gradient doesn't repeat */
    background-position: center, center; /* position image and gradient */
    /* Remove blend-mode if you want image fully visible */
}
        #contact {
            background: radial-gradient(ellipse at center, #000000 0%, #000000 100%);
        }

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 95px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    transition: all 0.3s ease;
}
.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    height: 100px;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.logo-container:hover { transform: translateY(-2px); }
.logo { width: 50px; height: 50px; }
.logo img { width: 100%; height: 100%; }
.logo-text { color: white; font-size: 24px; font-weight: 600; letter-spacing: -0.5px; }

/* Main Menu */
.main-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}
.menu-item {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    cursor: pointer;
}


/* Adjust font size on smaller screens */
@media (max-width: 1280px) { /* You can adjust this width to your needs */
    .menu-item {
        font-size: 12px;
    }
}








.menu-item:hover { color: white; transform: translateY(-2px); }
.menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}
.menu-item:hover::after, .menu-item.active::after { width: 100%; }
.menu-item.active { color: white; }
.menu-item.external::before { content: '↗'; margin-right: 5px; font-size: 12px; opacity: 0.7; }

/* Get a Quote Button */
#get-quote-btn {
    padding: 10px 25px;
    background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #BF953F);
    color: #000;
    font-weight: 600;
    border-radius: 25px;
    border: 2px solid rgb(255, 227, 69);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    animation: glowPop 2s infinite ease-in-out;
    box-shadow: 0 5px 15px rgba(191, 149, 63, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#get-quote-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(191, 149, 63, 0.7);
}
@get-quote-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 60%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}
#get-quote-btn:hover::before { top: -70%; left: -70%; }

/* Glow & pop animation */
@keyframes glowPop {
    0%, 100% { transform: scale(1); box-shadow: 0 5px 15px rgba(191, 149, 63, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 10px 25px rgba(255, 223, 100, 0.7); }
}

/* Action Buttons */
.action-buttons { display: flex; align-items: center; gap: 8px; }
.action-buttons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 18px;
    color: white;
    transition: all 0.3s ease;
}
.whatsapp-btn { background: #25D366; }
.whatsapp-btn:hover { background: #1ebe5d; transform: scale(1.1); }
.call-btn { background: #0077ff; }
.call-btn:hover { background: #005fcc; transform: scale(1.1); }

/* Mobile Menu Toggle */
.menu-toggle { display: none; flex-direction: column; cursor: pointer; padding: 4px; }
.menu-toggle span { width: 25px; height: 3px; background: white; margin: 3px 0; transition: 0.3s; border-radius: 2px; }

/* Submenu */
.has-submenu { position: relative; }
.submenu {
  border: 2px solid gray;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0,0,0,0.95);
    border-radius: 6px;
    padding: 10px 0;
    min-width: 180px;
    z-index: 1000;
    flex-direction: column;
}
.submenu-item {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    transition: all 0.3s ease;
}
.submenu-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.497)
   
}

/* Show submenu on hover (desktop) */
@media (min-width: 769px) {
    .has-submenu:hover .submenu {
        display: flex;
        flex-direction: column;
    }
}
.menu-item {
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.submenu {
    display: none; /* hide by default */
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ccc;
    min-width: 150px;
    z-index: 1000;
}

.has-submenu:hover .submenu {
    display: block; /* show submenu on hover */
}

.submenu-item {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
}

.submenu-item:hover {
    background-color: #919191;
}

.submenu-icon {
    margin-left: 5px;
    font-size: 0.8em;
}

/* Responsive */
@media (max-width: 1024px) { .main-menu { gap: 15px; } }
@media (max-width: 768px) {
    .header { padding: 0 20px; flex-wrap: wrap; height: auto; }
    .menu-toggle { display: flex; }
    .main-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        background: rgba(0,0,0,0.95);
        border-radius: 8px;
        padding: 10px 0;
    }
    .main-menu.active { display: flex; }
    .menu-item { padding: 12px 20px; text-align: center; width: 100%; }
    #get-quote-btn { width: 90%; margin: 10px auto 0 auto; justify-content: center; }
    .action-buttons { margin-top: 10px; gap: 10px; justify-content: flex-start; width: auto; }

    /* Mobile submenu active */
    .submenu {
        position: relative;
        top: 0;
        left: 0;
        background: none;
        padding: 0;
        border-radius: 0;
        display: none;
    }
    .submenu.active { display: flex; flex-direction: column; }
    .submenu-item { padding: 12px 20px; width: 100%; }
}
/* 
header css end */

        /* Home Section with Coverflow */
        .coverflow-wrapper {
            width: 100%;

            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 80px;
        }

        .coverflow-container {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1200px;
            position: relative;
        }

        .coverflow {
            display: flex;
            align-items: center;
            justify-content: center;
            transform-style: preserve-3d;
            position: relative;
            width: 100%;
            height: 400px;
        }

        .coverflow-item {
            position: absolute;
            width: 300px;
            height: 300px;
            transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            cursor: pointer;
            user-select: none;
        }

        .coverflow-item .cover {
            width: 100%;
            height: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            background: #333;
        }

        .coverflow-item .cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        /* Reflection */
        .coverflow-item .reflection {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 10px;
            transform: scaleY(-1);
            opacity: 0.2;
            filter: blur(2px);
            background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0) 0%, 
                rgba(0, 0, 0, 0.8) 50%, 
                rgba(0, 0, 0, 1) 100%);
            overflow: hidden;
        }

        /* Active item (center) */
        .coverflow-item.active {
            z-index: 100;
            transform: translateX(0) translateZ(0) rotateY(0deg);
        }

        .coverflow-item.active .cover {
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
        }

        /* Navigation */
        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            z-index: 200;
        }

        .nav-button:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-50%) scale(1.1);
        }

        .nav-button.prev {
            left: 50px;
        }

        .nav-button.next {
            right: 50px;
        }

        /* Dots indicator */
        .dots-container {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 200;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: rgba(255, 255, 255, 0.8);
            transform: scale(1.3);
        }

        /* Info display */
        .info {
            position: absolute;
            top: 120px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            text-align: center;
            z-index: 200;
        }

        .info h2 {
            font-size: 32px;
            margin-bottom: 10px;
            opacity: 0;
            animation: fadeIn 0.6s forwards;
        }

        .info p {
            font-size: 16px;
            opacity: 0.7;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        /* Play/Pause Button */
        .play-pause-button {
            position: absolute;
            bottom: 120px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            z-index: 200;
        }

        .play-pause-button:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(-50%) scale(1.1);
        }

        .play-pause-button .pause-icon {
            font-size: 16px;
            letter-spacing: 2px;
        }

        /* About Section */
.about-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row on desktop */
    gap: 40px; /* larger visible gap between cards */
    justify-content: center;
    align-items: stretch;
    margin: 0 auto 60px; /* bottom spacing */
    padding: 50px 40px; /* padding around section */
    max-width: 1200px; /* keeps it centered */
}

/* Each Card Wrapper */
.about-visual {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

/* Card Container */
.showcase-main {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12), rgba(118, 75, 162, 0.12));
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0; /* prevent overlap with grid gap */
}

/* Hover Effect */
.showcase-main:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

/* Logo Wrapper */
.showcase-logo {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #20c6f2 0%, #525bbf 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.35);
}

/* Icons */
.showcase-logo svg,
.showcase-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* Title */
.showcase-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Subtitle */
.showcase-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: 0 6px;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .about-main {
        grid-template-columns: repeat(2, 1fr); /* 2 per row on tablet */
        gap: 28px; /* reduce gap for medium screens */
        padding: 40px 25px;
    }
}

@media (max-width: 576px) {
    .about-main {
        grid-template-columns: 1fr; /* 1 per row on mobile */
        gap: 20px;
        padding: 30px 15px;
    }
    .showcase-main {
        max-width: 100%;
    }
}



        /* Decorative corner elements */
        .corner-decoration {
            position: absolute;
            width: 80px;
            height: 80px;
            border: 2px solid rgba(102, 126, 234, 0.3);
        }

        .corner-decoration.top-left {
            top: -20px;
            left: -20px;
            border-right: none;
            border-bottom: none;
            border-radius: 20px 0 0 0;
        }

        .corner-decoration.bottom-right {
            bottom: -20px;
            right: -20px;
            border-left: none;
            border-top: none;
            border-radius: 0 0 20px 0;
        }

        .about-info {
            padding-left: 40px;
        }

        .about-info h3 {
            font-size: 36px;
            margin-bottom: 30px;
            line-height: 1.3;
        }

        .about-info p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
        }

        .feature-list li::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
        }

        .cta-button svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover svg {
            transform: translateX(5px);
        }

        .stats-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            padding: 60px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Contact Section */
        .contact-content {
            max-width: 1200px;
            margin: 50px auto;
            padding: 40px;
            color: white;
        }

        .contact-header {
            text-align: center;
			margin-top: 60px;
            margin-bottom: 60px;
        }

        .contact-header h2 {
            font-size: 48px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-header p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info-section {
            padding-right: 40px;
        }

        .contact-info-section h3 {
            font-size: 25px;
            margin-bottom: 5px;
            color: white;
        }

        .contact-info-section p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(5px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #20c6f2 0%, #525bbf 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .contact-text {
            flex: 1;
        }

        .contact-text h4 {
            font-size: 16px;
            color: white;
            margin-bottom: 5px;
        }

        .contact-text p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        .social-links {
            margin-top: 40px;
        }

        .social-links h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: white;
        }

        .social-buttons {
            display: flex;
            gap: 15px;
        }

        .social-btn {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .social-btn:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
        }

        .social-btn svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .contact-form-section {
            padding-left: 40px;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: rgb(255, 255, 255);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: white;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            background: rgba(255, 255, 255, 0.08);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
            line-height: 1.5;
        }

        .submit-btn {
            background: linear-gradient(135deg, #20c6f2 0%, #525bbf 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
        }

        /* Smooth image loading */
        .image-loading {
            background: linear-gradient(45deg, #333, #555);
            position: relative;
        }

        .image-loading::after {
            content: '📷';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 48px;
            opacity: 0.5;
        }

        /* Footer Styles */
        .footer {
            background: rgba(0, 0, 0, 0.95);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px 20px;
            margin-top: 80px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .footer-copyright a {
            color: #667eea;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-copyright a:hover {
            color: #764ba2;
        }

        .footer-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        /* Scroll to top button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            transform: translateY(100px);
            transition: all 0.3s ease;
            z-index: 999;
        }

        .scroll-to-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .about-main {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .about-visual {
                height: 400px;
            }

            .about-info {
                padding-left: 0;
                text-align: center;
            }

            .feature-list {
                text-align: left;
                max-width: 500px;
                margin: 0 auto 40px;
            }

            .stats-section {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
                padding: 40px;
            }

            /* Contact section responsive */
            .contact-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .contact-info-section {
                padding-right: 0;
            }

            .contact-form-section {
                padding-left: 0;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 0 20px;
            }

            .main-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 20px;
                gap: 20px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .main-menu.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .coverflow-item {
                width: 200px;
                height: 200px;
            }

            .nav-button {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .nav-button.prev {
                left: 20px;
            }

            .nav-button.next {
                right: 20px;
            }

            .info h2 {
                font-size: 24px;
            }

            .info p {
                font-size: 14px;
            }

            .logo-text {
                font-size: 20px;
            }

            .about-header h2 {
                font-size: 36px;
            }

            .about-info h3 {
                font-size: 28px;
            }

            .about-visual {
                height: 400px;
            }

            .showcase-display {
                max-width: 350px;
                height: 400px;
            }

            .showcase-main {
                width: 100%;
                height: 350px;
                padding: 30px;
            }

            .showcase-logo {
                width: 100px;
                height: 100px;
                margin-bottom: 20px;
            }

            .showcase-title {
                font-size: 28px;
            }

            .showcase-subtitle {
                font-size: 14px;
                margin-bottom: 30px;
            }

            .corner-decoration {
                display: none;
            }

            .stat-number {
                font-size: 36px;
            }

            .contact-content h2 {
                font-size: 36px;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .footer-links {
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .header {
                height: 70px;
                padding: 0 15px;
            }

            .header.scrolled {
                height: 60px;
            }

            .logo {
                width: 40px;
                height: 40px;
            }

            .logo-text {
                font-size: 18px;
            }

            .coverflow-item {
                width: 180px;
                height: 180px;
            }

            .about-content,
            .contact-content {
                padding: 20px;
            }

            /* Additional contact section mobile optimization for small screens */
            .contact-container {
                gap: 30px;
            }

            .contact-header {
                margin-bottom: 40px;
            }

            .contact-header h2 {
                font-size: 32px;
                margin-bottom: 15px;
            }

            .contact-header p {
                font-size: 16px;
                padding: 0 10px;
            }

            .contact-info-section {
                margin-bottom: 20px;
            }

            .contact-info-section h3 {
                font-size: 22px;
                margin-bottom: 15px;
            }

            .contact-info-section > p {
                font-size: 14px;
                padding: 0 10px;
                margin-bottom: 30px;
            }

            .contact-details {
                gap: 15px;
            }

            .contact-item {
                padding: 15px;
                gap: 12px;
            }

            .contact-icon {
                width: 40px;
                height: 40px;
            }

            .contact-icon svg {
                width: 20px;
                height: 20px;
            }

            .contact-text h4 {
                font-size: 14px;
            }

            .contact-text p {
                font-size: 12px;
                word-break: break-word;
            }

            .social-links {
                margin-top: 30px;
            }

            .social-links h4 {
                font-size: 16px;
                margin-bottom: 15px;
            }

            .social-buttons {
                gap: 10px;
            }

            .social-btn {
                width: 40px;
                height: 40px;
            }

            .social-btn svg {
                width: 18px;
                height: 18px;
            }

            .contact-form {
                padding: 20px 15px;
                border-radius: 15px;
            }

            .form-group {
                margin-bottom: 20px;
            }

            .form-group label {
                font-size: 14px;
                margin-bottom: 8px;
            }

            .form-group input,
            .form-group textarea {
                padding: 12px;
                font-size: 14px;
                border-radius: 8px;
            }

            .form-group textarea {
                min-height: 120px;
            }

            .submit-btn {
                padding: 12px 30px;
                font-size: 16px;
                border-radius: 25px;
            }
        }


        /* new my css start */

        /* Golden Contact Button */
#contact-btn {
  margin-left: 30px; /* gap from other menu items */
  padding: 12px 28px;
  border-radius: 50px; /* pill shape */
  color: #000;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #BF953F);
  background-size: 400%;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  animation: animate 12s linear infinite, inout 1.8s ease infinite;
  border: 1px solid yellow;
  z-index: 2; /* make sure shine effect is visible */
}

/* Shine Effect */
#contact-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transform: skewX(-25deg);
  transition: 0.7s;
  z-index: 1;
}

#contact-btn:hover::after {
  left: 130%;
}

#contact-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 10px 25px rgba(191, 149, 63, 0.4);
}



/* Responsive */
@media (max-width: 992px) {
  #contact-btn {
    margin-left: 20px;
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  #contact-btn {
    margin-left: 0;
    padding: 9px 20px;
    font-size: 0.9rem;
    width: 100%; /* full-width on mobile */
    text-align: center;
    display: block;
  }
}

/* Gradient Animation */
@keyframes animate {
  0% { background-position: 0%; }
  100% { background-position: 400%; }
}

/* Pulse Effect */
@keyframes inout {
  0% { box-shadow: 0 0 0 0px rgba(255, 215, 0, 0.3); }
  100% { box-shadow: 0 0 0 20px rgba(255, 215, 0, 0); }
}

/* Responsive */
@media (max-width: 768px) {
  #contact-btn {
    font-size: 14px;
    padding: 10px 22px;
  }
}
@media (max-width: 480px) {
  #contact-btn {
    font-size: 13px;
    padding: 8px 18px;
  }
}


.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo {
  max-height: 80px;
  height: auto;
  width: auto;
  display: block;
  padding: 5px; /* adds space inside the image box */
}



/* hero section css start */

/* HERO SECTION */

/* ---------- HERO SECTION ---------- */
.hero-section {
  background: #000;
  color: #fff;
  padding: 120px 5% 50px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}

/* Left Content */
.hero-content {
  flex: 1 1 25%;
  text-align: left;
}

.hero-content h1 {
  font-size: clamp(1.4rem, 2.5vw, 2rem); 
  line-height: 1.2;
  margin-bottom: 15px;
  font-weight: 700;
  min-height: 110px;
}

.hero-content h6 {
  font-size: clamp(0.8rem, 1.8vw, 1.1rem); /* reduced font size */
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.highlight-yellow {
  background: linear-gradient(
    90deg,
    #ffe102 0%,
    #FFD700 25%,
    #fff050 50%,
    #ffea00 75%,
    #ffcd35 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.animate-fade {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

/* Reviews */
.reviews {
  font-size: 0.95rem;
  margin: 10px 0;
}

/* Review avatars */
.review-avatars {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 30px;
}

.review-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.review-count {
  background: #fff;
  color: #000;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Buttons */
.btn, .btn2 {
  display: inline-block;
  padding: 9px 18px;
  border: 2px solid #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: 0.3s;
  text-align: center;
  margin-right: 10px;
}

.btn {
  background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #BF953F);
  border-color: rgb(255, 227, 69);
  color: #000;
}

.btn:hover, .btn2:hover {
  background: #fff;
  color: #000;
  border-color: #000;
}

.btn2 {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

/* Center Image */
.hero-image {
  flex: 1 1 40%;
  text-align: center;
}

.hero-image img {
  max-width: 95%;
  border-radius: 18px;
  transition: opacity 1s ease-in-out;
  margin-top: 15px;
}

/* Right Stats */
.hero-stats {
  flex: 1 1 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px 15px;
  border-radius: 18px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.stat {
  text-align: center;
}

.stat i {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #2ea8ff;
}

.stat h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: bold;
  margin: 0;
  color: #fff;
}

.stat p {
  margin: 4px 0 0;
  font-size: clamp(0.8rem, 2vw, 1rem);
  opacity: 0.85;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content, .hero-stats {
    text-align: center;
  }
  .hero-stats {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px;
  }
  .stat { flex: 1 1 100px; }
  .review-avatars img { width: 36px; height: 36px; }
  .review-count { font-size: 0.85rem; padding: 5px 10px; }
}

@media (max-width: 600px) {
  .hero-content h1 { font-size: clamp(1.4rem, 5vw, 2rem); min-height: 90px; }
  .hero-content h6 { font-size: 0.8rem; }
  .reviews { font-size: 0.9rem; }
  .btn { font-size: 0.8rem; padding: 8px 16px; margin-bottom: 6px; }
  .hero-stats {
    flex-direction: column;
    width: 100%;
    padding: 10px;
  }
  .stat h3 { font-size: 1.2rem; }
  .stat i { font-size: 1.4rem; }
  .review-avatars img { width: 32px; height: 32px; }
  .review-count { font-size: 0.8rem; padding: 4px 8px; }
}


/* HERO SECTION end */

.about-section {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #ffffff;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 10px;
  box-sizing: border-box;
}

.main-container {
  display: flex;
  max-width: 1400px;
  width: 100%;
  background-color: #000000;
  border-radius: 20px;
  overflow: hidden;
  flex-wrap: wrap;
}

/* ---------- Left Column ---------- */
.left-column {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.left-column .overlay {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 6/5;
  background-image: url('images/aboutus.png');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

/* ---------- Right Column ---------- */
.right-column {
  flex: 1;
  padding: clamp(15px, 2vw, 60px);
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}

.header-section h1 {
  line-height: 1.2;
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 20px 0;
}

.intelligent-text {
  background: linear-gradient(90deg, #00b0ff, #0050ff, #00b0ff);
  background-size: 200% 100%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientMove 4s ease-in-out infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.header-section p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.5;
  color: #ccc;
  margin-bottom: 20px;
}

.get-started-btn {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: clamp(8px, 2vw, 12px) clamp(20px, 4vw, 30px);
  border-radius: 50px;
  font-size: clamp(0.9rem, 2vw, 1rem);
  cursor: pointer;
  transition: background-color 0.3s;
  text-align: center;
  align-self: flex-start;
}

.get-started-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ---------- Features Grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.feature-card {
  padding: clamp(15px, 3vw, 15px);
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-card h2 {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 600;
  margin: 0 0 5px 0;
}

.feature-card p {
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
}

/* ---------- Feature Card Colors ---------- */
.flexible-card {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
}
.cloud-card {
  background: linear-gradient(135deg, #7b4397, #dc2430);
}
.smart-card {
  background: linear-gradient(135deg, #f7971e, #ff6b00);
}
.support-card {
  background: linear-gradient(135deg, #00b09b, #96c93d);
}

/* ---------- Tablet Screens ---------- */
@media (max-width: 1024px) {
  .main-container {
    flex-direction: column;
    text-align: center;
  }

  .left-column,
  .right-column {
    width: 100%;
    padding: 15px;
  }

  .left-column .overlay {
    max-width: 90%;
    aspect-ratio: 4/3;
    margin: 0 auto;
  }

  .get-started-btn {
    margin: 0 auto;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- Mobile Screens ---------- */
@media (max-width: 480px) {
  .about-section {
    padding: 15px;
  }

  .main-container {
    border-radius: 10px;
  }

  .left-column .overlay {
    max-width: 100%;
    aspect-ratio: 1/1;
    border-radius: 10px;
  }

  .header-section h1 {
    font-size: 1.5rem;
  }

  .header-section p {
    font-size: 0.9rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card {
    padding: 12px;
    flex-direction: column;
    text-align: center;
  }

  .feature-card h2 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.8rem;
  }
}



/* FAQ CSS */

/* Accordion */
.accordion-button {
    transition: all 0.3s ease;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0;
}
.accordion-content.expanded {
    max-height: 400px; /* Slightly smaller max height */
    padding: 0.5rem 1rem;
}
.accordion-icon {
    transition: transform 0.3s ease;
}
.accordion-icon.rotated {
    transform: rotate(45deg);
}

/* Animated Gradient for Heading */
@keyframes gradient-x {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.animate-gradient-x {
    background-size: 200% 200%;
    animation: gradient-x 4s ease infinite;
}

/* FAQ CSS end */


/* Review CSS Start */
/* Reviews Section */
.reviews-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 1rem;
    box-sizing: border-box;
    overflow: hidden;
}

/* Content Container */
.content-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    gap: 2rem; /* slightly bigger gap for larger cards */
}

/* Left Side */
.text-and-stats {
    
    flex: 1 1 400px; /* more space for text */
    min-width: 280px;
}

/* Headings */
.heading-text h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 0.5rem;
}

.heading-text p {
    font-size: 1rem;
    font-weight: 400;
    color: #a0a0a0;
    max-width: 500px;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

/* Stats */
.stats-container {
    
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.stat-item .number {
    font-size: 1.75rem; /* increased size */
    font-weight: 700;
    color: #fff;
}

.stat-item .label {
    font-size: 1rem; /* increased size */
    color: #a0a0a0;
}

/* Right Side: Slider */
.reviews-slider {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1 1 400px; /* more space for slider */
    min-width: 280px;
    gap: 1rem;
    overflow: hidden;
}

/* Cards container */
.review-cards-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.review-cards-container::-webkit-scrollbar {
    display: none;
}

/* Individual card */
.review-card {
    border-radius: 2rem;
    padding: 2rem; /* increased padding */
    width: 350px; /* increased width */
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    color: #fff;
    position: relative;
    transition: transform 0.5s, box-shadow 0.3s;
}

.review-card:hover {
    transform: scale(1.05);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.8);
}

/* Gradients */
.blue-gradient {
    background: linear-gradient(135deg, #4b89f8, #6098ff);
}

.purple-gradient {
    background: linear-gradient(135deg, #7e63ef, #b070f3);
}

.green-gradient {
    background: linear-gradient(135deg, #28c76f, #20a8b8);
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-header img {
    width: 60px; /* bigger logo */
    height: 60px;
    border-radius: 50%;
    border: 2px solid white;
}

.card-header h3 {
    margin: 0;
    font-size: 1.25rem; /* increased font size */
    font-weight: 600;
    color: #fff;
}

.stars {
    color: gold;
    font-size: 1.3rem;
}

.review-text {
    font-size: 1rem; /* bigger text */
    line-height: 1.5;
    margin-top: 0.5rem;
}

.read-more {
    display: inline-block;
    margin-top: 1.2rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background: linear-gradient(90deg, #bb68e3, #6581f1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.read-more:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(187, 104, 227, 0.6);
}









/* Slider Arrows */
.slider-arrow {
 
    color: white;
    border: none;
    border-radius: 50%; /* keeps it circular */
    width: 35px; /* smaller width */
    height: 35px; /* smaller height */
    font-size: 1.2rem; /* slightly smaller icon */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    z-index: 10;
}
.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .content-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .text-and-stats {
        text-align: center;
    }
    .stats-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .reviews-slider {
        flex-direction: column;
    }
    .review-cards-container {
        flex-direction: column;
        align-items: center;
    }
    .review-card {
        width: 90%; /* responsive card width */
    }
    .slider-arrow {
        position: static;
        margin: 1rem 0;
    }
}
/* Review CSS End */



/* blog and post start */


    .wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }

    .card {
      overflow: hidden;
      box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.7);
      background: #1f1f1f;
      border-radius: 0.5rem;
      position: relative;
      width: 350px;
      transition: 0.3s all ease-in-out;
      cursor: pointer;
    }

    .card:hover {
      transform: scale(1.05);
      box-shadow: 0px 6px 40px rgba(255, 255, 255, 0.2);
    }

    .banner-img {
      position: absolute;
      object-fit: cover;
      height: 14rem;
      width: 100%;
      filter: brightness(70%);
    }

    .category-tag {
      font-size: 0.8rem;
      font-weight: bold;
      color: white;
      padding: 0.5rem 1.3rem 0.5rem 1rem;
      text-transform: uppercase;
      position: absolute;
      z-index: 1;
      top: 1rem;
      border-radius: 0 2rem 2rem 0;
      background: #ff3e3e;
    }

    .popular { background: #ff3e3e; }
    .technology { background: #651fff; }
    .psychology { background: #ffa500; }

    .card-body {
      margin: 15rem 1rem 1rem 1rem;
    }

    .blog-hashtag {
      font-size: 0.9rem;
      font-weight: 500;
      color: #4db8ff;
    }

    .blog-title {
      line-height: 1.5rem;
      margin: 1rem 0 0.5rem;
      color: #ffffff;
    }

    .blog-description {
      color: #b0b0b0;
      font-size: 0.9rem;
    }

    .card-profile {
      display: flex;
      margin-top: 2rem;
      align-items: center;
    }

    .profile-img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 50%;
      border: 2px solid #4db8ff;
    }

    .card-profile-info {
      margin-left: 1rem;
    }

    .profile-name {
      font-size: 1rem;
      color: #fff;
    }

    .profile-followers {
      color: #b0b0b0;
      font-size: 0.9rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .wrapper {
        flex-direction: column;
        align-items: center;
      }
      .card {
        width: 90%;
        margin: 1rem 0;
      }
    }

/* blog and post end*/

/* machine purchase start */
.machine-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
  gap: 30px; /* Equal spacing between image & text */
}

.machine-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.machine-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  transition: transform 0.4s ease;
  position: relative;
  /* Image animations */
  animation: popUp 3s infinite ease-in-out, shine 6s infinite ease-in-out;
}

/* Hover zoom */
.machine-image img:hover {
  transform: scale(1.08);
}

/* Pop-up (bounce) animation */
@keyframes popUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Shine Effect */
@keyframes shine {
  0% { filter: brightness(1); }
  45% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
  55% { filter: brightness(1); }
  100% { filter: brightness(1); }
}

.machine-text {
  flex: 1 1 400px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers text equally */
  text-align: center;
  animation: slideUp 1.2s ease-out;
}

.machine-text h1 {
  margin-bottom: 20px;
}

.machine-text p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 32px;
  color: #d9d9d9;
  font-weight: normal;
}

.machine-btn {
  align-self: center; /* Centers button under text */
  padding: 12px 28px;
  border-radius: 50px;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #BF953F);
  background-size: 400%;
  display: inline-block;
  transition: transform 0.3s ease-in-out;
  animation: animate 12s linear infinite, inout 1.8s ease infinite;
  border: 1px solid yellow;
  z-index: 2;
}

.machine-btn:hover {
  background: #ad9f01;
  transform: translateY(-2px);
}

/* Text Slide Up */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 2; transform: translateY(0); }
}

/* Responsive */
@media (min-width: 768px) {
  .machine-section {
    flex-wrap: nowrap;
    text-align: left;
  }
  .machine-text {
    text-align: left;
    align-items: flex-start; /* Left-align on larger screens */
  }
  .machine-btn {
    align-self: flex-start;
  }
}

/* machine purchase end */


/* pressence start */
.client-slider {
  padding: 50px 0;
  text-align: center;

}

.client-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.client-title {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-top: 20px;
  font-weight: 700;
  color: #ffffff;
}

.client-gradient {
  background: linear-gradient(135deg, #20c6f2 0%, #525bbf 100%);
  -webkit-background-clip: text; /* For WebKit browsers */
  -webkit-text-fill-color: transparent; /* Makes the gradient show through the text */
  background-clip: text; /* For future compatibility */
  color: transparent; /* Fallback for other browsers */
}

.client-slider h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: #007bff;
  display: block;
  margin: 10px auto 40px; /* increased bottom margin to create gap */
  border-radius: 2px;
}

.slider {
  overflow: hidden;
  position: relative;
}

.slide-track {
  display: flex;
  animation: scroll 20s linear infinite;
}

.slide {
  flex: 0 0 auto;
  width: 150px;
  margin: 0 20px;
  transition: transform 0.3s;
}

.slide img {
  width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 10px;

}

.slide img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* pressence end*/



/* popup css */

 #my-ann-popup {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    width: 320px;
    max-width: calc(100% - 40px);
    font-family: Arial, sans-serif;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
  }
  #my-ann-popup.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  /* Card Styling */
  .my-ann-card {
    background: #000;
    color: #fff;
    padding: 18px;
    border-radius: 16px;
    border: 2px solid #fff; /* ✅ White border */
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.8); /* ✅ Glowing Blue Shadow */
    position: relative;
  }

  .my-ann-card h3 {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 8px;
    background: linear-gradient(90deg,#34D399,#FBBF24,#F472B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .my-ann-card p {
    font-size: 14px;
    text-align: center;
    color: #ccc;
    margin: 0;
  }

  /* CTA Buttons */
  .my-ann-btns {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap; /* ✅ Wrap on small screens */
  }
  .my-btn {
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    transition: 0.2s;
    flex: 1; /* ✅ Buttons stretch equally on mobile */
    text-align: center;
    min-width: 120px;
  }
  .my-btn:hover { opacity: 0.9; }
  .btn-wa { background: linear-gradient(90deg,#34D399,#059669); color: #000; }
  .btn-call { background: linear-gradient(90deg,#3B82F6,#1D4ED8); }

  /* Close Button */
  .close-btn {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 18px;
    color: #aaa;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  .close-btn:hover { color: #fff; }

  /* ✅ Mobile Optimization */
  @media (max-width: 480px) {
    #my-ann-popup {
      right: 10px;
      left: 10px;
      width: auto;
      bottom: 10px;
    }
    .my-ann-card {
      padding: 15px;
      border-radius: 12px;
    }
    .my-ann-card h3 {
      font-size: 16px;
    }
    .my-ann-card p {
      font-size: 13px;
    }
    .my-btn {
      font-size: 14px;
      padding: 8px 12px;
    }
  }


  

/* popup css end */

/* Black Theme Background */
.client-slider {
  background-color: #000000;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Title Styling */
.client-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.client-gradient {
  background: linear-gradient(90deg, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Trust Strip Styling */
.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.trust-item {
  background: linear-gradient(90deg, #ff00ff, #00b9e7);
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 0.95rem;
  color: #fff;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.trust-item:hover {
  background: linear-gradient(90deg, #ff00ff, #00ffff);
  color: #000;
  transform: scale(1.05);
}

/* Slider Container */
.slider {
  overflow: hidden;
  position: relative;
}

.slide-track {
  display: flex;
  width: calc(250px * 10); /* Number of slides x width */
  animation: scroll 30s linear infinite;
}

.slide {
  width: 250px;
  flex-shrink: 0;
  margin: 0 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.slide img {
  max-width: 150px;
  max-height: 80px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.slide img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Slider Animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive Styling */
@media (max-width: 1200px) {
  .slide-track {
    width: calc(200px * 10);
  }
  .slide {
    width: 200px;
    margin: 0 20px;
  }
  .slide img {
    max-width: 120px;
    max-height: 70px;
  }
}

@media (max-width: 992px) {
  .client-title {
    font-size: 2.2rem;
  }
  .slide-track {
    width: calc(180px * 10);
  }
  .slide {
    width: 180px;
    margin: 0 15px;
  }
  .slide img {
    max-width: 100px;
    max-height: 60px;
  }
}

@media (max-width: 768px) {
  .trust-strip {
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }
  .slide-track {
    width: calc(150px * 10);
  }
  .slide {
    width: 150px;
    margin: 0 10px;
  }
  .slide img {
    max-width: 90px;
    max-height: 50px;
  }
  .client-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .slide-track {
    width: calc(120px * 10);
  }
  .slide {
    width: 120px;
    margin: 0 8px;
  }
  .slide img {
    max-width: 70px;
    max-height: 40px;
  }
  .client-title {
    font-size: 1.5rem;
  }
}



/* products CSS start */
/* Products Section */
/* Products Section */
.products-items {
    width: 98%;
    max-width: 1350px;
    margin: 40px auto;
    text-align: center;
}

/* Section Title */
.section-title {
    font-size: 2.3rem;
    line-height: 1.2;
    margin-bottom: 35px;
    color: #fff;
    font-weight: 700;
}

.title-decoration {
    text-align: center;
    padding: 5px 0;
    margin-bottom: 15px;
}

.title-decoration .line {
    display: inline-block;
    width: 80px;
    height: 2px;
    background: #fff;
    vertical-align: middle;
    margin: 0 12px;
}

.title-decoration .text {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    align-items: stretch;
}

/* Card */
.machine-card {
    background: linear-gradient(145deg, #1a1a1a, #262626);
    border: 1px solid #444;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.machine-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

/* Card Image */
.card-img {
    height: 180px;
    overflow: hidden;
    border-bottom: 4px solid #ff4c4c;
    transition: transform 0.5s, filter 0.5s;
    margin-bottom: 15px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: transform 0.5s, filter 0.5s;
}

.machine-card:hover img {
    transform: scale(1.07);
    filter: grayscale(0%);
}

/* Card Content */
.card-content {
    padding: 15px 20px; /* reduced padding for compact layout */
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
}

/* Titles */
.card-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 3px; /* reduced gap to h5 */
}

.card-content h5 {
    font-size: 0.9rem;
    font-weight: 500;
    color: #aaa;
    margin-bottom: 5px; /* reduced gap to description */
}

/* Description */
.enhanced-desc {
    font-size: 0.80rem;
    line-height: 1.4;
    color: #ccc;
    text-align: left;
    margin-bottom: 10px; /* reduced bottom gap */
    letter-spacing: 0.5px;

}

/* Card Buttons */
.card-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Buttons */
.btn-readmore {
    padding: 0.45rem 1.2rem;
    border-radius: 30px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    text-decoration: none;
}

.btn-readmore:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
}

/* Buy Buttons Gradient */
.btn-helmet { background: linear-gradient(45deg, #ff4c4c, #ff6f61); }
.btn-shoe-spa { background: linear-gradient(45deg, #36d1dc, #5b86e5); }
.btn-shoe-washer { background: linear-gradient(45deg, #00c853, #64dd17); }
.btn-shoe-dryer { background: linear-gradient(45deg, #f7971e, #ffd200); }

.btn-helmet, .btn-shoe-spa, .btn-shoe-washer, .btn-shoe-dryer {
    padding: 0.45rem 1.2rem;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.btn-helmet:hover, .btn-shoe-spa:hover, .btn-shoe-washer:hover, .btn-shoe-dryer:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(255,255,255,0.3);
}

/* Card Border Colors */
.img-helmet { border-bottom-color: #ff4c4c; }
.img-shoe-spa { border-bottom-color: #36d1dc; }
.img-shoe-washer { border-bottom-color: #00c853; }
.img-shoe-dryer { border-bottom-color: #f7971e; }

/* Titles Color */
.title-helmet { color: #ff4c4c; }
.title-shoe-spa { color: #36d1dc; }
.title-shoe-washer { color: #00c853; }
.title-shoe-dryer { color: #f7971e; }

/* Responsive */
@media (max-width: 992px) {
    .products-items { width: 96%; }
}

@media (max-width: 768px) {
    .card-img { height: 160px; }
    .btn-readmore, .btn-helmet, .btn-shoe-spa, .btn-shoe-washer, .btn-shoe-dryer {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 480px) {
    .card-img { height: 140px; }
    .card-buttons { flex-direction: row; justify-content: space-between; }
    .btn-readmore, .btn-helmet, .btn-shoe-spa, .btn-shoe-washer, .btn-shoe-dryer {
        width: 48%;
    }
}

/* products CSS end */



 /* Proof & transparency   */
   /* Section wrapper */
   
 /* Proof & transparency end */






 /* Why Choose Zolopolo?
 */
/* Section Base */
.zolopolo-section {
  background: #000; /* simple solid black for consistency */
  color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* Container Grid */
.zolopolo-container {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

/* Left Image */
.zolopolo-image {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
  transition: transform 0.5s ease;
}
.zolopolo-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.zolopolo-image:hover {
  transform: scale(1.05);
}

/* Heading */
.zolopolo-content h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 700; /* Increased font weight for more emphasis */
}

/* Divider */
.zolopolo-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #c7d900, #cbdd02);
  border-radius: 2px;
  margin-bottom: 25px;
  transition: width 0.3s ease;
}
.zolopolo-divider:hover {
  width: 100px;
}

/* Points Grid */
.zolopolo-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 15px;
}
.zolopolo-points .point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 15px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.zolopolo-points .point:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.15);
}

/* Icon Styling */
.zolopolo-points .icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: inset 0 -3px 5px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.zolopolo-points .icon:hover {
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(255,255,255,0.8);
}

/* Gradient & Vibrant Colors */
.icon.gradient { background: linear-gradient(45deg, #36d1dc, #5b86e5); box-shadow: 0 0 18px rgba(54,209,220,0.7); }
.icon.green    { background:#00c853; box-shadow:0 0 15px rgba(0,200,83,0.7); }
.icon.blue     { background:#2962ff; box-shadow:0 0 15px rgba(41,98,255,0.7); }
.icon.yellow   { background:#ffd600; color:#000; box-shadow:0 0 15px rgba(255,214,0,0.7); }
.icon.purple   { background:#aa00ff; box-shadow:0 0 15px rgba(170,0,255,0.7); }

/* Punchline */
.zolopolo-punchline {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-align: left;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 900px) {
  .zolopolo-container { grid-template-columns: 1fr; gap: 30px; }
  .zolopolo-content h1 { font-size: 2rem; text-align: center; }
  .zolopolo-divider { margin: 0 auto 25px auto; }
  .zolopolo-points { grid-template-columns: 1fr; }
  .zolopolo-punchline { text-align: center; font-size: 18px; }
}

@media (max-width: 600px) {
  .zolopolo-content h1 { font-size: 1.6rem; }
  .zolopolo-points .point { font-size: 14px; padding: 10px; }
  .zolopolo-points .icon { width: 35px; height: 35px; font-size: 18px; }
  .zolopolo-punchline { font-size: 16px; }
  .zolopolo-section { padding: 50px 15px; }
}


 /* Why Choose Zolopolo?
 */


 
 /* General Section Styling */
/* General Section Styling */
.get-quote-section {
  background-color: #030303;
  color: #ffffff;
  padding: 150px 20px 60px 20px; /* top padding increased for navbar */
  font-family: 'Arial', sans-serif;
}

.get-quote-section .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  padding: 0 20px; /* equal gap left & right */
}

.quote-content {
  flex: 1;
  min-width: 300px;
}

.quote-content h2 {
  background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #BF953F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}
.quote-content p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 30px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 14px;
}

.quote-form input::placeholder,
.quote-form select::placeholder,
.quote-form textarea::placeholder {
  color: #bbbbbb;
}

.quote-form button {
  padding: 14px 25px;
  background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #BF953F);
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(191, 149, 63, 0.5);
}

.quote-image {
  flex: 1;
  text-align: center;
}

.quote-image img {
  max-width: 100%;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 900px) {
  .get-quote-section .container {
    flex-direction: column;
    gap: 60px; /* use the same or slightly larger gap for stacked layout */
  }
  .quote-image {
    margin-top: 0; /* remove extra margin, gap handles spacing */
  }
}



/* about us css */

        .container-aboutus {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
            position: relative;
            z-index: 1;
        }

        .container-aboutus::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at top, rgba(0, 198, 255, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(123, 67, 151, 0.08) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        .hero-section {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeIn 1s ease-in;
        }

        .hero-title {
            font-size: clamp(1.5rem, 5vw, 2.4rem);
            background: linear-gradient(135deg, #00c6ff, #0072ff, #7b4397, #dc2430);
            background-size: 300% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 4s linear infinite;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: 3px;
            color: #fff;
        }

        @keyframes shimmer {
            0% { background-position: 0% center; }
            100% { background-position: 300% center; }
        }

        .hero-subtitle {
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            color: #d0d0d0;
            margin-bottom: 30px;
            font-weight: 300;
        }

        .hero-description {
            max-width: 900px;
            margin: 0 auto;
            font-size: clamp(1rem, 1.5vw, 1.1rem);
            line-height: 1.8;
            color: #c0c0c0;
        }

        .divider {
            width: 120px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #00c6ff, #0072ff, transparent);
            margin: 40px auto;
            box-shadow: 0 0 15px rgba(0, 198, 255, 0.4);
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }

        .advantage-card {
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            padding: 35px 28px;
            border-radius: 16px;
            transition: all 0.4s ease;
            border: 1px solid #2a2a2a;
            position: relative;
            overflow: hidden;
        }

        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #00c6ff, #0072ff, #7b4397);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .advantage-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 198, 255, 0.08) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 198, 255, 0.3);
            border-color: #00c6ff;
            background: linear-gradient(145deg, #1f1f1f, #141414);
        }

        .advantage-card:hover::after {
            opacity: 1;
        }

        .advantage-card:hover::before {
            transform: scaleX(1);
        }

        .card-icon {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, #00c6ff, #0072ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 30px;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(0, 198, 255, 0.3);
        }

        .advantage-card:hover .card-icon {
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 10px 35px rgba(0, 198, 255, 0.5);
        }

        .card-title {
            font-size: 1.4rem;
            color: #fff;
            margin-bottom: 12px;
            font-weight: 700;
            background: linear-gradient(135deg, #00c6ff, #0072ff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .card-description {
            color: #b8b8b8;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .mission-section {
            padding: 50px 40px;
            border-radius: 20px;
            margin-bottom: 60px;
            text-align: center;
          
            position: relative;
            overflow: hidden;
        }

        .mission-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 198, 255, 0.06) 0%, transparent 70%);
            animation: rotate 25s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .mission-section > * {
            position: relative;
            z-index: 1;
        }

        .mission-title {
            font-size: clamp(1.5rem, 5vw, 2.4rem);
            background: linear-gradient(135deg, #00c6ff, #0072ff, #7b4397);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            margin-bottom: 30px;
            font-weight: 700;
            letter-spacing: 2px;
            animation: shimmer 3s linear infinite;
        }

        .mission-content {
            max-width: 1000px;
            margin: 0 auto;
            font-size: clamp(1rem, 1.5vw, 1.15rem);
            line-height: 1.9;
            color: #c0c0c0;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .value-item {
            background: #1a1a1a;
            padding: 28px;
            border-radius: 12px;
            border-left: 4px solid;
            border-image: linear-gradient(180deg, #00c6ff, #0072ff) 1;
            transition: all 0.3s ease;
        }

        .value-item:hover {
            background: #1f1f1f;
            transform: translateX(10px);
            box-shadow: -10px 0 30px rgba(0, 198, 255, 0.2);
        }

        .value-icon {
            font-size: 40px;
            margin-bottom: 15px;
            filter: drop-shadow(0 0 10px rgba(0, 198, 255, 0.4));
        }

        .value-title {
            font-size: 1.2rem;
            background: linear-gradient(135deg, #00c6ff, #0072ff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .value-text {
            color: #a8a8a8;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .cta-section {
            text-align: center;
            padding: 50px 30px;
            background: linear-gradient(135deg, #00c6ff 0%, #0072ff 50%, #7b4397 100%);
            border-radius: 20px;
            margin-top: 60px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 198, 255, 0.4);
        }

        .cta-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 20s linear infinite;
        }

        .cta-section > * {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: clamp(1.5rem, 5vw, 2.4rem);
            color: #fff;
            margin-bottom: 15px;
            font-weight: 700;
            letter-spacing: 2px;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-text {
            font-size: clamp(1rem, 1.5vw, 1.2rem);
            color: #f0f0f0;
            margin-bottom: 10px;
            font-weight: 300;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .container-aboutus {
                padding: 40px 15px;
            }

            .mission-section {
                padding: 40px 25px;
            }

            .advantage-card {
                padding: 30px 20px;
            }

            .advantages-grid {
                grid-template-columns: 1fr;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }
        }

        /* about us css end */




        /* franchise  css start*/

/* General Wrapper */
.franchise-wrapper {
    margin: 0 auto;
    padding: 160px 20px;
    color: #e0e0e0;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    background: #0a0a0a;
}

.franchise-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(0, 198, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at top right, rgba(123, 67, 151, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at bottom center, rgba(247, 151, 30, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.franchise-wrapper > * { position: relative; z-index: 1; }

/* Hero Section */
.franchise-hero {
    text-align: center;
    margin-bottom: 100px;
    animation: fadeInDown 1s ease-out;
}
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }

.franchise-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(0, 198, 255, 0.4);
}

.franchise-title {
    font-size: clamp(3rem, 6vw, 5rem);
    background: linear-gradient(135deg, #00c6ff, #0072ff, #7b4397, #dc2430);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: 3px;
}
@keyframes shimmer { 0% { background-position: 0% center; } 100% { background-position: 300% center; } }

.franchise-subtitle {
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    color: #d0d0d0;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
    font-weight: 300;
}

.golden-divider {
    width: 180px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00c6ff, #0072ff, transparent);
    margin: 50px auto;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.5);
}

/* Container */
.container22 { max-width: 1200px; margin: 0 auto; }

/* Models Section */
.models-section { margin-bottom: 100px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-title { font-size: clamp(1.5rem, 5vw, 2.4rem); font-weight: 700; color: #fff; margin-bottom: 15px; letter-spacing: 2px; }

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.model-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 25px;
    padding: 50px 40px;
    border: 1px solid #2a2a2a;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.model-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 198, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.model-card::after {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, #00c6ff, #0072ff, #7b4397, #dc2430, #00c6ff);
    background-size: 400% 400%;
    border-radius: 25px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: gradientMove 6s ease infinite;
}
@keyframes gradientMove { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.model-card:hover { transform: translateY(-15px) rotateX(3deg); box-shadow: 0 30px 80px rgba(0, 198, 255, 0.4); border-color: transparent; }
.model-card:hover::before { left: 100%; }
.model-card:hover::after { opacity: 1; }

.model-card.popular { border: 2px solid #00c6ff; box-shadow: 0 15px 50px rgba(0, 198, 255, 0.3); }

.popular-badge {
    position: absolute; top: 20px; right: 20px;
    background: linear-gradient(135deg, #f7971e, #ff6b00);
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(247, 151, 30, 0.5);
}

.model-icon { font-size: 60px; margin-bottom: 25px; filter: drop-shadow(0 0 20px rgba(0, 198, 255, 0.6)); }
.model-name { font-size: 2rem; background: linear-gradient(135deg, #00c6ff, #0072ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 12px; font-weight: 700; }
.model-type { font-size: 1rem; color: #999; margin-bottom: 30px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }

.model-features { list-style: none; margin-bottom: 35px; }
.model-features li { padding: 5px 0; color: #c8c8c8; font-size: 1rem; display: flex; align-items: start; gap: 12px; line-height: 1.6; }
.model-features li::before { content: '✓'; background: linear-gradient(135deg, #00c6ff, #0072ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: bold; font-size: 1.2rem; flex-shrink: 0; }

.model-price { background: linear-gradient(145deg, #2a2a2a, #1f1f1f); padding: 4px; border-radius: 15px; border: 1px solid #3a3a3a; text-align: center; }
.price-label { font-size: 0.9rem; color: #999; margin-bottom: 1px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
.price-amount { font-size: 2.5rem; background: linear-gradient(135deg, #00c6ff, #0072ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 800; }
.price-note { font-size: 0.85rem; color: #888; }

/* Earnings Section */
.earnings-section {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 70px 50px;
    border-radius: 30px;
    margin-bottom: 100px;
    border: 1px solid #2a2a2a;
    position: relative;
    overflow: hidden;
}

.earnings-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.08) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

.earnings-section > * { position: relative; z-index: 1; }

.earnings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* exactly 3 per row */
    gap: 30px;
      /* center items vertically */
}

.earnings-card {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid #2a2a2a;
    border-left: 5px solid;
    border-image: linear-gradient(180deg, #00c6ff, #0072ff) 1;
    transition: all 0.4s ease;
    text-align: center;
}

.earnings-card:hover { transform: translateY(-10px); box-shadow: 0 10px 40px rgba(0,198,255,0.3); border-left-width: 7px; }

.earnings-icon { font-size: 40px; color: #fff; margin-bottom: 15px; filter: drop-shadow(0 0 10px rgba(0,198,255,0.8)); }

.earnings-label { font-size: 0.9rem; color: #999; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
.earnings-value { font-size: 2.2rem; background: linear-gradient(135deg, #00c6ff, #0072ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 800; margin-bottom: 8px; }
.earnings-detail { font-size: 0.95rem; color: #b8b8b8; }

/* CTA Section */
.cta-section { background: linear-gradient(135deg, #00c6ff 0%, #0072ff 50%, #7b4397 100%); padding: 37px 10px; border-radius: 30px; text-align: center; position: relative; overflow: hidden; box-shadow: 0 25px 80px rgba(0, 198, 255, 0.5); }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%); animation: rotate 20s linear infinite; }
.cta-section > * { position: relative; z-index: 1; }
.cta-title { font-size: clamp(2.2rem, 2vw, 3.5rem); color: #fff; margin-bottom: 5px; font-weight: 800; letter-spacing: 3px; text-shadow: 0 4px 15px rgba(0,0,0,0.3); }
.cta-text { font-size: clamp(1.15rem, 2vw, 1.5rem); color: #f0f0f0; max-width: 800px; margin: 0 auto; line-height: 1.8; font-weight: 300; }
.cta-button { display: inline-block; background: #fff; color: #0072ff; padding: 13px 60px; border-radius: 50px; font-size: 1.15rem; font-weight: 700; text-decoration: none; transition: all 0.3s ease; border: 3px solid #fff; letter-spacing: 2px; text-transform: uppercase; box-shadow: 0 10px 30px rgba(0,0,0,0.3); margin-top: 10px;}
.cta-button:hover { background: transparent; color: #fff; border-color: #fff; transform: scale(1.08); box-shadow: 0 15px 40px rgba(0,0,0,0.4); }

/* Responsive */
@media (max-width: 992px) { .earnings-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .franchise-wrapper { padding: 60px 20px; }
    .models-grid { grid-template-columns: 1fr; }
    .model-card { padding: 40px 30px; }
    .earnings-grid { grid-template-columns: 1fr; }
    .earnings-section { padding: 50px 30px; }
    .cta-section { padding: 60px 30px; }
}
          /* franchise  css end*/