/* ---- 1. GENERAL SETTINGS & BRAND COLORS ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

:root {
    --bg-dark: #0B0F19;
    --brand-blue: #0052FF;
    --brand-cyan: #00C2FF;
    --text-white: #FFFFFF;
    --text-gray: #94A3B8;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ---- 2. ATTRACTIVE GLASSMORPHISM NAVBAR--- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 125px; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none !important; 
    z-index: 1000;
    
   
    transition: background-color 0.4s ease, height 0.4s ease, box-shadow 0.4s ease; 
}

.navbar.navbar-scrolled {
    background-color: #0B0F19 !important; 
    height: 85px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important; 
    backdrop-filter: none !important; 
    -webkit-backdrop-filter: none !important;
}


.navbar.navbar-scrolled .nav-links a {
    color: #FFFFFF !important; 
}


.navbar.navbar-scrolled .menu-toggle span {
    background-color: #FFFFFF !important;
}


.navbar.navbar-scrolled .logo img {
    height: 70px; 
}


.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 92px; 
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: height 0.4s ease; 
}


.navbar.navbar-scrolled .logo img {
    height: 70px; 
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: var(--text-white); 
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-blue));
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-btn {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
    color: var(--text-white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 0 25px rgba(0, 194, 255, 0.25);
    transition: all 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(0, 194, 255, 0.45);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--text-white);
    transition: 0.3s;
}


/* ---- 3. LEFT-ALIGNED HERO SECTION WITH VIDEO ---- */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 180px 8% 60px 8%; 
    text-align: left; 
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* 🛠️ FIXED TRANSPARENCY OVERLAY: */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 25, 0.65); 
    z-index: -1;
    pointer-events: none; 
}

.hero-content {
    max-width: 950px; 
    z-index: 10;
}

/* 🛠️ DESKTOP HEADING STYLING */
.balanced-heading {
    font-size: 64px !important;    
    line-height: 1.3 !important;   
    letter-spacing: -1.5px; 
    font-weight: 800; 
    margin-bottom: 40px; 
    color: var(--text-white);
}

.gradient-text {
    color: var(--brand-cyan); 
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-blue));
    -webkit-background-clip: text;
    background-clip: text; 
    -webkit-text-fill-color: transparent;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
    color: var(--text-white);
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 0 30px rgba(0, 194, 255, 0.35);
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 194, 255, 0.5);
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.5; }
}

/* ---- 4. RESPONSIVE MEDIA QUERIES ---- */
@media (max-width: 992px) {
    .balanced-heading {
        font-size: 52px !important;
        line-height: 1.25 !important;
    }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    
    .nav-links {
        position: absolute;
        top: 125px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 125px);
        background-color: var(--bg-dark); 
        flex-direction: column;
        align-items: center;
        padding-top: 60px;
        gap: 35px;
        transition: 0.4s ease;
    }

    .nav-links.active { left: 0; }
    .nav-btn { display: none; }

    .logo img {
        height: 65px;
        max-width: 180px;
    }

    .hero {
        padding: 180px 6% 60px 6%;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .balanced-heading { 
        font-size: 38px !important; 
        letter-spacing: -0.5px;
        line-height: 1.25 !important;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
}


/*section 2*/



.what-we-do-section {
    background-color: #e9e8f1;
    padding: 120px 20px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    position: relative;
    overflow: hidden;
}

.wwd-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}


.wwd-header {
    max-width: 950px; 
    margin-bottom: 70px;
    text-align: left;
}

.wwd-main-heading {
    font-size: 54px !important; 
    font-weight: 850; 
    color: #0b132b; 
    margin-bottom: 24px;
    letter-spacing: -2px; 
    line-height: 1.15;
}


.text-gradient {
    background: linear-gradient(135deg, #0052cc, #00a2ff);
    -webkit-background-clip: text;
    background-clip: text; /* ਇਹ ਸਟੈਂਡਰਡ ਲਾਈਨ ਵੀ ਜੋੜੋ */
    -webkit-text-fill-color: transparent;
    display: inline-block;
}


.wwd-sub-desc {
    font-size: 1.18rem; 
    color: #4a5568;
    line-height: 1.8; 
}


.wwd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px; /* ਕਾਰਡਾਂ ਦੇ ਵਿਚਕਾਰ ਬਿਲਕੁਲ ਬਰਾਬਰ ਗੈਪ */
}


.wwd-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 45px 35px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(11, 19, 43, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease;
}


.wwd-card:hover {
    transform: translateY(-8px); 
    border-color: transparent;
}


.card-glow-blue:hover { box-shadow: 0 30px 60px rgba(0, 82, 204, 0.09); border-bottom: 3px solid #0052cc; }
.card-glow-purple:hover { box-shadow: 0 30px 60px rgba(112, 0, 255, 0.09); border-bottom: 3px solid #7000ff; }
.card-glow-yellow:hover { box-shadow: 0 30px 60px rgba(255, 183, 0, 0.09); border-bottom: 3px solid #ffb700; }
.card-glow-green:hover { box-shadow: 0 30px 60px rgba(16, 185, 129, 0.09); border-bottom: 3px solid #10b981; }
.card-glow-pink:hover { box-shadow: 0 30px 60px rgba(236, 72, 153, 0.09); border-bottom: 3px solid #ec4899; }
.card-glow-orange:hover { box-shadow: 0 30px 60px rgba(249, 115, 22, 0.09); border-bottom: 3px solid #f97316; }


.wwd-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}


.bg-glow-blue { background-color: #ebf5ff; }
.bg-glow-purple { background-color: #f3ebff; }
.bg-glow-yellow { background-color: #fffde6; }
.bg-glow-green { background-color: #e6fcf5; }
.bg-glow-pink { background-color: #fdf0f7; }
.bg-glow-orange { background-color: #fff3eb; }


.wwd-card:hover .wwd-icon-box {
    transform: rotateY(180deg) scale(1.05);
}


.wwd-card h3 {
    font-size: 1.55rem; 
    font-weight: 800; 
    color: #0b132b;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.wwd-card p {
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.65;
}

/*  3. RESPONSIVENESS  */

@media (max-width: 1024px) {
    .wwd-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 30px;
    }
    .wwd-main-heading { 
        font-size: 42px !important; 
    }
    .wwd-sub-desc {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .what-we-do-section { 
        padding: 80px 15px; 
    }
    .wwd-grid {
        grid-template-columns: 1fr; 
        gap: 25px;
    }
    .wwd-header { 
        text-align: center; 
        margin-bottom: 45px; 
    }
    .wwd-main-heading { 
        font-size: 36px !important; 
        letter-spacing: -1px;
    }
    .wwd-card { 
        padding: 35px 25px; 
        align-items: center; 
        text-align: center; 
    }
}
/*section 3 */
.premium-portfolio-section {
   background-color: #e9e8f1;
    padding: 0px 20px 100px 20px;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.cp-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.cp-header {
    max-width: 900px;
    margin-bottom: 50px;
    text-align: left;
}

.cp-main-heading {
    font-size: 54px !important;
    font-weight: 850;
    color: #0b132b;
    margin-bottom: 15px;
    letter-spacing: -2px;
    line-height: 1.15;
}

.cp-gradient {
    background: linear-gradient(135deg, #0052cc, #00a2ff);
    -webkit-background-clip: text;
    background-clip: text; 
    -webkit-text-fill-color: transparent;
    color: transparent;    
    display: inline-block;
}

.cp-sub-desc {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.6;
}

/* ---  3-column grid --- */
.cp-row-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}


.cp-glow-card {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid #e2e8f0;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px; 
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 19, 43, 0.02);
    
    /* Fade-In-Up  */
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                opacity 0.6s ease, 
                border-color 0.3s ease, 
                box-shadow 0.3s ease;
}

.cp-glow-card.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

.cp-glow-card.reveal-active.delay-1 { transition-delay: 0s; }
.cp-glow-card.reveal-active.delay-2 { transition-delay: 0.1s; }
.cp-glow-card.reveal-active.delay-3 { transition-delay: 0.2s; }

.cp-glow-card:hover {
    transform: translateY(-8px);
    border-color: #00a2ff;
    box-shadow: 0 20px 40px rgba(0, 82, 204, 0.08);
}


.cp-inner-content {
    width: 100%;
}

.cp-card-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: #0052cc;
    margin-bottom: 12px;
    display: inline-block;
}

.cp-inner-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0b132b;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.cp-inner-content p {
    font-size: 0.94rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cp-feature-list li {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- 💙 🛠️ FIXED: blue button --- */
.cp-action-area {
    margin-top: 30px;
    width: 100%;
}

.cp-modal-btn {
    background: linear-gradient(135deg, #0052cc, #00a2ff);
    color: #ffffff;
    border: none;
    padding: 13px 0;
    width: 100%;
    font-size: 0.98rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(0, 82, 204, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.cp-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 162, 255, 0.35);
}

/*  PREMIUM POPUP MODAL STYLING*/
.premium-demo-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.premium-demo-modal.is-open { opacity: 1; pointer-events: auto; }
.modal-glass-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(11, 19, 43, 0.4); backdrop-filter: blur(8px); }
.modal-window { background: #ffffff; width: 90%; max-width: 1000px; height: 80vh; border-radius: 20px; box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3); position: relative; z-index: 10; display: flex; flex-direction: column; overflow: hidden; transform: scale(0.9); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.premium-demo-modal.is-open .modal-window { transform: scale(1); }
.modal-top-bar { background: #f1f5f9; padding: 15px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #e2e8f0; }
.modal-dots { display: flex; gap: 8px; }
.modal-dots span { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }
.modal-url-bar { background: #ffffff; color: #64748b; font-size: 0.88rem; padding: 6px 40px; border-radius: 8px; border: 1px solid #e2e8f0; width: 45%; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.modal-close-btn { background: none; border: none; font-size: 1.1rem; cursor: pointer; color: #94a3b8; }
.modal-close-btn:hover { color: #334155; }
.modal-body { flex: 1; width: 100%; height: 100%; background: #ffffff; }
.modal-body iframe { width: 100%; height: 100%; display: block; }

/* PERFECT RESPONSIVENESS */


@media (max-width: 1100px) {
    .cp-row-grid {
        grid-template-columns: repeat(3, 1fr); 
        gap: 20px; 
    }
    .cp-glow-card {
        padding: 30px 20px; 
        min-height: 440px;
    }
    .cp-main-heading { 
        font-size: 42px !important; 
    }
    .modal-window { 
        height: 75vh; 
        width: 95%; 
    }
}


@media (max-width: 768px) {
    .premium-portfolio-section { 
        padding: 0px 15px 60px 15px; 
    }
    .cp-row-grid {
        grid-template-columns: 1fr; 
        gap: 25px;
    }
    .cp-main-heading { 
        font-size: 36px !important; 
        letter-spacing: -1px; 
    }
    .cp-glow-card { 
        min-height: auto; 
        padding: 35px 25px; 
    }
    
    .cp-glow-card.reveal-active.delay-2 { transition-delay: 0s; }
    .cp-glow-card.reveal-active.delay-3 { transition-delay: 0s; }
}


/*section 4 */

/*  ENNOVATESOFT - BENEFITS SECTION */

.brocoder-benefits-section {
  
    background-color: #e9e8f1; 
   
    padding: 0px 0 40px 0; 
    margin-top: 0px; 
    position: relative;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    width: 100%;
}


.ben-svg-wave-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ben-svg-wave-wrapper svg {
    width: 100%;
    height: 100%; 
    display: block;
    object-fit: fill; 
}

.ben-wave-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}


.ben-wave-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.25fr;
    gap: 50px;
    align-items: flex-start; 
}


.ben-wave-text-side {
    color: #ffffff;
    padding-top: 190px; 
}

/* "Why Choose Us"  */
.ben-wave-tag {
    font-size: 52px !important;
    font-weight: 850;
    color: #ffffff !important; 
    line-height: 1.1 !important;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: uppercase;
}


.ben-wave-heading {
    font-size: 26px !important; 
    font-weight: 600;
    color: #cbd5e1 !important; 
    line-height: 1.3 !important;
    letter-spacing: -0.5px;
    margin-bottom: 25px;
}

.ben-wave-desc {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.65;
    margin-bottom: 35px;
}

.ben-live-features-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ben-feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.ben-feat-icon {
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ben-feat-text h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.ben-feat-text p {
    font-size: 0.92rem;
    color: #cbd5e1;
    line-height: 1.5;
}


.ben-wave-visual-side {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 190px; 
}

.cp-custom-img-layer {
    width: 100%;
    max-width: 820px; 
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
}

.ben-user-downloaded-img {
    width: 130%; 
    height: auto;
    display: block;
    object-fit: contain;
    transform: translateY(-45px); 
    
    margin-bottom: -45px; 
    filter: drop-shadow(-20px 30px 45px rgba(0, 0, 0, 0.35));
}

/*responsivenes */


@media (max-width: 1040px) {
    .brocoder-benefits-section { 
       
        background: linear-gradient(135deg, #004cdb 0%, #0077ff 100%) !important;
        padding: 80px 0 80px 0; 
        position: relative;
        overflow: hidden;
    }
    
    
    .ben-svg-wave-wrapper {
        display: none !important;
    }

    .ben-wave-grid { 
        grid-template-columns: 1fr; 
        gap: 50px; 
    }

   
    .ben-wave-text-side { 
        padding-top: 0px; 
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* "Why Choose Us" */
    .ben-wave-tag { 
        font-size: 38px !important; 
        color: #ffffff !important; 
        text-align: center; 
        display: block; 
        line-height: 1.2 !important;
        margin-bottom: 12px;
        font-weight: 850;
    }

    
    .ben-wave-heading { 
        font-size: 22px !important; 
        text-align: center; 
        line-height: 1.3 !important;
        color: #cbd5e1 !important; 
        margin-bottom: 20px;
    }

   
    .ben-wave-desc { 
        text-align: center; 
        font-size: 1rem;
        padding: 0 10px;
        color: #cbd5e1 !important;
        margin-bottom: 30px;
    }

   
    .ben-live-features-list {
        max-width: 480px;
        margin: 0 auto;
        text-align: left;
    }

    .ben-feature-item { 
        align-items: flex-start;
    }

    
    .ben-feat-text h4 {
        color: #ffffff !important; 
    }

    .ben-feat-text p {
        color: #94a3b8 !important;
    }

    .ben-feat-icon {
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        color: #ffffff;
    }

    
    .ben-wave-visual-side { 
        padding-top: 0px; 
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .cp-custom-img-layer { 
        width: 100%;
        max-width: 540px; 
        margin: 0 auto; 
        min-height: auto;
    }
    
    .ben-user-downloaded-img { 
        width: 100%; 
        transform: none; 
    }
}


@media (max-width: 768px) {
    .brocoder-benefits-section {
        padding: 60px 0 60px 0;
    }

    .ben-wave-tag { 
        font-size: 32px !important; 
        letter-spacing: -1px; 
    }

    .ben-wave-heading { 
        font-size: 20px !important; 
    }
}


/* section 5 */

:root {
    --bg-card-gradient: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%); 
    --primary-blue: #007bff;  
    --neon-blue: #00bfff;      
    --text-dark: #0f172a;     
    --text-muted: #64748b;    
    --card-shadow: 0 15px 35px rgba(0, 123, 255, 0.06), 0 5px 15px rgba(0, 0, 0, 0.02);
}

.reviews-section {
    padding: 100px 20px;
     background-color: #e9e8f1; 
    font-family: 'Segoe UI', Roboto, sans-serif;
    overflow: hidden;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}


.section-title {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-dark); 
    margin-bottom: 50px;
    text-align: left;
    letter-spacing: -1px;
}


.section-title .highlight-blue {
    color: var(--neon-blue);
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 20px 0; 
}

.reviews-grid {
    display: flex;
    gap: 28px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.review-card {
    flex: 0 0 calc(33.333% - 19px);
    box-sizing: border-box;
    background: var(--bg-card-gradient); 
    border-top: 4px solid var(--primary-blue);
    border-left: 1px solid #e9f2ff;
    border-right: 1px solid #e9f2ff;
    border-bottom: 1px solid #e9f2ff;
    border-radius: 16px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 440px;
    transition: all 0.4s ease;
    position: relative;
}


.review-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(180deg, #f0f6ff 0%, #e1eeff 100%);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.12);
}

.client-img {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.15); 
}


.client-name {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.client-role {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.review-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-blue); 
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
}

.rating-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    background-color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.08);
}

.rating-number {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark);
}

.stars {
    color: var(--primary-blue);
    font-size: 13px;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 968px) {
    .review-card { flex: 0 0 calc(50% - 14px); }
    .section-title { font-size: 36px; }
}
@media (max-width: 640px) {
    .review-card { flex: 0 0 100%; }
    .section-title { font-size: 30px; text-align: center; }
}
/* section 6 */
:root {
    --cta-bg: #e9e8f1;             
    --ennovate-blue: #0066ff;       
    --ennovate-blue-hover: #0052cc; 
    --cta-text-black: #0f172a;     
    --cta-text-gray: #475569;
}

.contact-section {
    padding: 100px 20px;
    background-color: var(--cta-bg); 
    font-family: 'Segoe UI', Roboto, sans-serif;
    position: relative;
    overflow: hidden;
}


.contact-section::after {
    content: '';
    position: absolute;
    top: -12%;
    right: -10%;
    width: 460px;
    height: 460px;
    background-color: var(--ennovate-blue);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.9;
    pointer-events: none;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.contact-left {
    flex: 1;
}


.contact-main-heading {
    font-size: 40px;
    font-weight: 800;
    color: var(--cta-text-black);
    line-height: 1.25;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}


.contact-main-heading .highlight-theme-blue {
    color: var(--ennovate-blue);
}

.contact-sub-heading {
    font-size: 16px;
    color: var(--cta-text-gray);
    margin-bottom: 35px;
    line-height: 1.5;
}

.features-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.features-check-list li {
    font-size: 15px;
    color: var(--cta-text-black);
    font-weight: 500;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}


.check-icon {
    color: var(--ennovate-blue);
    font-weight: bold;
    font-size: 14px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}


.video-wrapper {
    position: relative;
    background: #ffffff;     
    padding: 12px;           
    border-radius: 16px;
    overflow: hidden;
    max-width: 500px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.video-wrapper video {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 280px;
    border-radius: 8px;       
}


.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background-color: var(--ennovate-blue);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
    transition: all 0.3s ease;
}

.play-btn svg {
    width: 26px;
    height: 26px;
    color: #ffffff;
    margin-left: 4px;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--ennovate-blue-hover);
}

/*  PURE WHITE FORM CARD */
.contact-right {
    flex: 1;
    max-width: 500px;
}

.booking-form {
    background: #ffffff;     
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); 
    border: 1px solid #eef2f6;
}

.form-group {
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}


.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    background-color: #f1f5f9; 
    color: var(--cta-text-black);
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ennovate-blue);
    background-color: #ffffff; 
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--cta-text-black);
    cursor: pointer;
}


.form-submit-btn {
    width: auto;
    align-self: flex-start;
    padding: 14px 38px;
    background: transparent;
    border: 2px solid var(--ennovate-blue);
    color: var(--ennovate-blue);
    font-size: 14px;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 15px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background: var(--ennovate-blue);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 102, 255, 0.2);
}

/* Responsive */
@media (max-width: 968px) {
    .contact-container {
        flex-direction: column;
        gap: 50px;
    }
    .contact-right {
        max-width: 100%;
    }
    .contact-section::after {
        display: none;
    }
}

/*footer*/
:root {
    --footer-dark-bg: #1e293b;     
    --ennovate-theme-blue: #0066ff; 
    --text-white: #ffffff;
    --text-muted-gray: #94a3b8;
}

.main-footer {
    background-color: var(--footer-dark-bg);
    color: var(--text-white);
    font-family: 'Segoe UI', Roboto, sans-serif;
    position: relative;
    padding-top: 60px; 
    padding-bottom: 30px;
}


.footer-wave {
    position: absolute;
    top: -1px; 
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background-color: transparent;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 0 20px;
}


.footer-top-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a, 
.footer-column p {
    font-size: 14px;
    color: var(--text-muted-gray);
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--text-white);
}

.footer-phone {
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-email {
    font-size: 14px;
    color: var(--ennovate-theme-blue);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.footer-email:hover {
    text-decoration: underline;
    opacity: 0.9;
}


.footer-bottom-bar {
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 13px;
    color: var(--text-muted-gray);
}

.footer-legal-links a {
    font-size: 13px;
    color: var(--text-muted-gray);
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--text-white);
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: var(--text-muted-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: var(--text-white);
}

/*  Scroll To Top  */
.scroll-top-btn {
    background-color: var(--ennovate-theme-blue);
    color: var(--text-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    background-color: #0052cc;
}

/* RESPONSIVE MEDIA QUERY  */
@media (max-width: 768px) {
    .footer-wave {
        display: none; 
    }
    
    .main-footer {
        padding-top: 40px;
    }

    .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-legal-links a {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .footer-top-grid {
        grid-template-columns: 1fr;
    }
}
