/* ========================================
   Brightkeyz Infrastructure - Main Stylesheet
   ======================================== */

/* CSS Variables - Brikly Theme */
:root {
    --primary-color: #033231;
    --primary-dark: #022423;
    --accent-color: #28A745;
    --accent-hover: #218838;
    --secondary-color: #063231;
    --dark-color: #021a1a;
    --text-color: #4a4a4a;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --light-bg: #f6f7f7;
    --border-color: #e0e0e0;
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ========================================
   Text Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation Classes */
.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.8s ease forwards;
}

.animate-fadeIn {
    animation: fadeIn 1s ease forwards;
}

.animate-slideUp {
    animation: slideUp 0.8s ease forwards;
}

/* Delay Classes */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

.delay-6 {
    animation-delay: 0.6s;
}

/* Initial state for animated elements */
.animate-fadeInUp,
.animate-fadeInLeft,
.animate-fadeInRight,
.animate-fadeIn,
.animate-slideUp {
    opacity: 0;
}

/* Scroll-triggered Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Text Animation Classes */
.text-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.text-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

.text-animate-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.text-animate-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.text-animate-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.text-animate-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.text-animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.text-animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays for text */
.text-delay-1 { transition-delay: 0.1s; }
.text-delay-2 { transition-delay: 0.2s; }
.text-delay-3 { transition-delay: 0.3s; }
.text-delay-4 { transition-delay: 0.4s; }
.text-delay-5 { transition-delay: 0.5s; }

/* Iconoir Icons Styling */
[class^="iconoir-"],
[class*=" iconoir-"] {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
    font-weight: 700;
    border-radius: 50px;
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 700;
    border-radius: 50px;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--accent-color);
}

.btn-white {
    background: var(--white);
    color: var(--secondary-color);
    border-color: var(--white);
    border-radius: 25px;
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
}

/* Section Styling */
.section-subtitle {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    background: #f2f2f2;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 25px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-header {
    margin-bottom: 50px;
}

/* ========================================
   Header / Navigation
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: transparent;
    transition: var(--transition);
}

/* White header for non-home pages */
.header.white-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.white-header .nav-link {
    color: var(--secondary-color);
}

.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 80px;
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 60px;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

.header.scrolled .nav-link {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-right .btn {
    padding: 12px 24px;
    font-size: 13px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 10000;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

.header.scrolled .hamburger span {
    background: var(--secondary-color);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(3, 50, 49, 0.75) 0%, rgba(6, 50, 49, 0.65) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    color: var(--white);
    padding-top: 80px;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    background: rgba(40, 167, 69, 0.15);
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid var(--accent-color);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-text {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons .btn-outline {
    background: var(--white);
    color: var(--secondary-color);
    border-color: var(--white);
}

.hero-buttons .btn-outline:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.hero-shape {
    display: none;
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: 80px 0;
    background: #F8F9FA;
    position: relative;
    z-index: 3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: none;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid var(--accent-color);
}

.feature-icon i {
    font-size: 36px;
    color: var(--accent-color);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
}

.feature-card:hover .feature-icon {
    background: var(--accent-color);
}

.feature-card:hover .feature-icon i {
    color: var(--white);
}

/* ========================================
   Welcome Section
   ======================================== */
.welcome-section {
    padding: 100px 0;
    background: var(--white);
}

.welcome-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.welcome-logo {
    height: 80px;
    margin-bottom: 25px;
}

.welcome-subtitle {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.welcome-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.3;
    margin-bottom: 25px;
}

.welcome-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 35px;
}

.welcome-btn {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
    padding: 14px 35px;
    font-size: 13px;
}

.welcome-btn:hover {
    background: #1e8e3e;
    border-color: #1e8e3e;
    color: var(--white);
}

@media (max-width: 768px) {
    .welcome-title {
        font-size: 28px;
    }

    .welcome-logo {
        height: 60px;
    }
}

/* ========================================
   Counter Stats Section
   ======================================== */
.counter-stats-section {
    padding: 60px 0;
    background: var(--dark-color);
}

.counter-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.counter-stat-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.counter-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    line-height: 1;
    margin-bottom: 15px;
}

.counter-plus {
    color: var(--accent-color);
    font-size: 36px;
    margin-left: 2px;
}

.counter-label {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    text-transform: capitalize;
    margin: 0;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .counter-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .counter-stat-item:nth-child(2)::after {
        display: none;
    }

    .counter-number {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .counter-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .counter-stat-item {
        padding: 20px 10px;
    }

    .counter-stat-item::after {
        display: none;
    }

    .counter-number {
        font-size: 32px;
    }

    .counter-plus {
        font-size: 24px;
    }

    .counter-label {
        font-size: 13px;
    }
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 60%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 5px solid var(--white);
}

.about-content .section-title {
    margin-bottom: 25px;
    white-space: nowrap;
}

.about-text {
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-stats {
    display: flex;
    gap: 20px;
    margin: 35px 0;
}

.stat-item {
    text-align: center;
    background: var(--white);
    padding: 25px 30px;
    border-radius: 10px;
    min-width: 140px;
    border: none;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-color);
    margin-top: 8px;
    display: block;
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.service-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    padding: 12px 24px;
    border-radius: 6px;
    margin-top: auto;
    align-self: flex-start;
}

.service-link:hover {
    background: var(--accent-hover);
    color: var(--white);
    gap: 12px;
}

/* ========================================
   Services Section New (Harsh Group Style)
   ======================================== */
.services-section-new {
    padding: 100px 0;
    background: var(--light-bg);
}

.services-header-new {
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-subtitle {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.services-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.services-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-feature-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
}

.service-feature-item:hover .service-feature-icon {
    background: var(--accent-color);
}

.service-feature-icon i {
    font-size: 32px;
    color: var(--accent-color);
    transition: var(--transition);
}

.service-feature-item:hover .service-feature-icon i {
    color: var(--white);
}

.service-feature-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-feature-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-view-btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 14px 35px;
}

.services-view-btn:hover {
    background: var(--primary-color);
    color: var(--accent-color);
}

@media (max-width: 1024px) {
    .services-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-features-grid {
        grid-template-columns: 1fr;
    }

    .services-title {
        font-size: 30px;
    }
}

/* ========================================
   Completed Projects Section
   ======================================== */
.completed-projects-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.completed-projects-section .section-title {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.completed-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* Projects Dots - Hidden on desktop */
.projects-dots {
    display: none;
}

.completed-project-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.completed-project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.completed-project-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.completed-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.completed-project-card:hover .completed-project-image img {
    transform: scale(1.05);
}

.project-badge {
    position: absolute;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.project-badge.completed {
    top: 15px;
    left: 15px;
    background: #28a745;
    color: var(--white);
}

.project-badge.sold-out {
    top: 15px;
    right: 15px;
    background: #dc3545;
    color: var(--white);
}

.completed-project-info {
    padding: 15px;
}

.completed-project-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.completed-project-location {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.completed-project-dates {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.date-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.date-label {
    font-size: 10px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-value {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary-color);
}

.explore-btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 14px 40px;
}

.explore-btn:hover {
    background: var(--primary-color);
    color: var(--accent-color);
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-header {
    margin-bottom: 60px;
}

.testimonials-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.title-underline {
    width: 100px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote i {
    font-size: 40px;
    color: var(--accent-color);
}

.testimonial-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: auto;
    text-align: left;
}

.author-image {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    flex-shrink: 0;
    margin-top: 0px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.author-info h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1.2;
}

.author-info span {
    font-size: 13px;
    color: var(--text-light);
    display: block;
    margin-bottom: 4px;
}

.rating {
    margin-top: 5px;
}

.rating i {
    color: #ffc107;
    font-size: 12px;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Testimonials Dots - Hidden on desktop */
.testimonials-dots {
    display: none;
}

@media (max-width: 768px) {
    .testimonials-grid.testimonials-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 20px 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .testimonials-grid.testimonials-carousel::-webkit-scrollbar {
        display: none;
    }

    .testimonials-carousel .testimonial-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding: 30px 25px;
        overflow: visible;
    }

    .testimonials-title {
        font-size: 30px;
    }

    .testimonials-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .testimonials-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ccc;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .testimonials-dots .dot.active {
        background: var(--accent-color);
        transform: scale(1.2);
    }
}

/* ========================================
   What You Get Section
   ======================================== */
.what-you-get-section {
    padding: 90px 0 60px;
    background: #fbfbfb;
}

.what-you-get-header {
    max-width: 700px;
    margin: 0 auto 50px;
}

.what-you-get-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.what-you-get-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 20px;
}

.what-you-get-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.what-you-get-item {
    text-align: center;
    padding: 20px;
}

.what-you-get-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
}

.what-you-get-icon i {
    font-size: 50px;
    color: var(--accent-color);
}

.what-you-get-item:hover .what-you-get-icon {
    transform: scale(1.05);
    background: var(--accent-color);
    box-shadow: 0 0 0 10px rgba(40, 167, 69, 0.2);
}

.what-you-get-item:hover .what-you-get-icon i {
    color: var(--white);
}

.what-you-get-item h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.item-separator {
    width: 30px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto 20px;
}

.what-you-get-item p {
    font-size: 14px;
    color: #747474;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .what-you-get-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .what-you-get-grid {
        grid-template-columns: 1fr;
    }

    .what-you-get-title {
        font-size: 26px;
    }

    .what-you-get-icon {
        width: 100px;
        height: 100px;
    }

    .what-you-get-icon i {
        font-size: 40px;
    }
}

/* ========================================
   What We Make Section
   ======================================== */
.what-we-make-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.what-we-make-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.what-we-make-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

/* Make Dots - Hidden on desktop */
.make-dots {
    display: none;
}

/* Desktop - normal block layout */
.make-rows-container {
    display: block;
}

.make-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.make-row:last-child {
    margin-bottom: 0;
}

.make-row-reverse {
    flex-direction: row-reverse;
}

.make-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.make-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.make-image:hover img {
    transform: scale(1.05);
}

.make-image .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    transition: var(--transition);
    z-index: 2;
}

.make-image .play-btn:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.make-content {
    flex: 1;
}

.make-content h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.make-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.read-more-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-top: 15px;
}

.read-more-link:hover {
    color: var(--accent-color);
}

.read-more-link i {
    margin-left: 5px;
    font-size: 12px;
}

@media (max-width: 1024px) {
    .make-row {
        gap: 40px;
    }

    .make-content h3 {
        font-size: 26px;
    }

    .make-image img {
        height: 300px;
    }
}

@media (max-width: 768px) {

    .make-row,
    .make-row-reverse {
        flex-direction: column;
        gap: 30px;
    }

    .what-we-make-title {
        font-size: 32px;
    }

    .make-content h3 {
        font-size: 24px;
    }

    .make-image img {
        height: 250px;
    }

    .make-image .play-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

/* ========================================
   Full Spectrum Services Section
   ======================================== */
.full-spectrum-section {
    padding: 100px 0;
    background: #f0f4f3;
}

.full-spectrum-header {
    margin-bottom: 60px;
}

.full-spectrum-subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
}

.full-spectrum-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.full-spectrum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.spectrum-card {
    background: transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.spectrum-card-image {
    position: relative;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: -50px;
}

.spectrum-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.spectrum-card:hover .spectrum-card-image img {
    transform: scale(1.05);
}

.spectrum-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, #f0f4f3 0%, transparent 100%);
}

.spectrum-card-content {
    background: var(--white);
    border-radius: 16px;
    padding: 60px 20px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.spectrum-card-content p {
    flex-grow: 1;
}

.spectrum-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spectrum-icon i {
    font-size: 42px;
    color: var(--primary-color);
}

.spectrum-card-content h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1.2;
}

.spectrum-card-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.spectrum-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 4px;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.spectrum-link:hover {
    color: var(--accent-color);
    text-decoration-color: var(--accent-color);
}

/* Service Card Features List */
.service-card-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px;
    text-align: left;
}

.service-card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.service-card-features li i {
    color: var(--accent-color);
    font-size: 16px;
}

.spectrum-card-content .service-card-features + .spectrum-link {
    margin-top: auto;
}

/* ========================================
   Modern Services Card Design
   ======================================== */
.services-modern-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.services-modern-header {
    margin-bottom: 60px;
}

.services-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #20c997);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.services-main-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.services-main-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-modern-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.service-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.service-modern-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-modern-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-modern-card:hover .service-modern-img img {
    transform: scale(1.1);
}

.service-modern-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(3, 50, 49, 0.7) 100%);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.service-modern-card:hover .service-modern-overlay {
    opacity: 0.8;
}

.service-modern-badge {
    position: absolute;
    bottom: -25px;
    left: 25px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--accent-color), #20c997);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.35);
    z-index: 2;
    transition: transform 0.3s ease;
}

.service-modern-badge i {
    font-size: 26px;
    color: #fff;
}

.service-modern-card:hover .service-modern-badge {
    transform: scale(1.1) rotate(5deg);
}

.service-modern-body {
    padding: 40px 25px 30px;
}

.service-modern-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-modern-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-modern-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-modern-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 10px;
    padding-left: 5px;
}

.service-modern-list li i {
    color: var(--accent-color);
    font-size: 16px;
    flex-shrink: 0;
}

.service-modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-modern-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.service-modern-btn:hover {
    background: var(--accent-hover);
    transform: translateX(5px);
}

.service-modern-btn:hover i {
    transform: translateX(5px);
}

/* Modern Services Responsive */
@media (max-width: 1024px) {
    .services-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-main-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .services-modern-section {
        padding: 70px 0;
    }

    .services-modern-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .services-main-title {
        font-size: 28px;
    }

    .service-modern-img {
        height: 200px;
    }
}

/* ========================================
   FAQ Section - Modern Accordion Design
   ======================================== */
.faq-section {
    padding: 100px 0;
    background: #fff;
}

.faq-header {
    margin-bottom: 50px;
}

.faq-tag {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-subtitle {
    font-size: 16px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.1);
}

.faq-item.active {
    border-color: var(--accent-color);
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-number {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    background: rgba(40, 167, 69, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    flex-shrink: 0;
}

.faq-question h4 {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.4;
}

.faq-toggle {
    width: 36px;
    height: 36px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-toggle i {
    font-size: 18px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: var(--accent-color);
}

.faq-item.active .faq-toggle i {
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 22px 80px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 70px 0;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-question {
        padding: 18px 20px;
        gap: 15px;
    }

    .faq-question h4 {
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 20px 18px 20px;
    }

    .faq-number {
        display: none;
    }
}

@media (max-width: 1024px) {
    .full-spectrum-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .full-spectrum-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .full-spectrum-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .full-spectrum-title {
        font-size: 30px;
    }

    .spectrum-card-image {
        height: 280px;
    }
}

/* ========================================
   Team Section New Design
   ======================================== */
.team-section-new {
    padding: 80px 0;
    background: var(--white);
}

.team-header-new {
    margin-bottom: 60px;
}

.team-title-new {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 600;
    color: var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
}

.team-grid-new {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
}

/* Team Dots - Hidden on desktop */
.team-dots {
    display: none;
}

.team-member-new {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 20px 40px;
}

.team-avatar {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(135deg, #f5f0e8 0%, #e8e0d5 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.member-role {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #0077b5;
    text-decoration: none;
    transition: var(--transition);
}

.linkedin-link i {
    font-size: 16px;
}

.linkedin-link:hover {
    color: var(--primary-color);
}

.team-divider {
    display: none;
}

/* Vertical lines between team members on desktop */
.team-grid-new .team-member-new:not(:last-of-type)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 280px;
    background: #e0e0e0;
}

.team-grid-new .team-member-new {
    position: relative;
}

@media (max-width: 1024px) {
    .team-title-new {
        font-size: 32px;
    }

    .team-member-new {
        padding: 20px;
    }

    .team-avatar {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    /* Team Carousel on Mobile */
    .team-grid-new.team-carousel {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding: 20px 15px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        align-items: stretch;
    }

    .team-grid-new.team-carousel::-webkit-scrollbar {
        display: none;
    }

    .team-carousel .team-member-new {
        flex: 0 0 75%;
        max-width: none;
        background: var(--white);
        border-radius: 16px;
        padding: 30px 20px;
        box-shadow: var(--shadow);
    }

    /* Hide vertical lines on mobile carousel */
    .team-carousel .team-member-new::after {
        display: none !important;
    }

    .team-carousel .team-divider {
        display: none !important;
    }

    .team-dots {
        display: none;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }

    .team-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ccc;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .team-dots .dot.active {
        background: var(--accent-color);
        transform: scale(1.2);
    }

    .team-title-new {
        font-size: 26px;
    }
}

/* ========================================
   Mission & Vision Section
   ======================================== */
.mission-vision-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.mv-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.mv-row:last-child {
    margin-bottom: 0;
}

.mv-row-reverse {
    flex-direction: row-reverse;
}

.mv-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
}

.mv-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
}

.mv-content {
    flex: 1;
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mv-icon i {
    font-size: 28px;
    color: var(--white);
}

.mv-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mv-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.mv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mv-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--secondary-color);
    padding: 8px 0;
}

.mv-list li i {
    color: var(--accent-color);
    font-size: 18px;
}

@media (max-width: 768px) {
    .mission-vision-section {
        padding: 60px 0;
    }

    .mv-row,
    .mv-row-reverse {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 40px;
    }

    .mv-image {
        width: 100%;
    }

    .mv-image img {
        height: 220px;
        width: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    .mv-content {
        text-align: center;
    }

    .mv-content h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .mv-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .mv-icon {
        margin: 0 auto 15px;
    }

    .mv-list {
        display: inline-block;
        text-align: left;
    }

    .mv-list li {
        font-size: 14px;
        padding: 6px 0;
    }
}

/* ========================================
   Founder Message Section
   ======================================== */
.founder-section {
    padding: 100px 0;
    background: var(--white);
}

.founder-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-top: 50px;
}

.founder-image {
    flex: 0 0 350px;
}

.founder-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.founder-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.founder-placeholder i {
    font-size: 120px;
    color: #adb5bd;
}

.founder-message {
    flex: 1;
}

.founder-message p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.founder-message p:last-of-type {
    margin-bottom: 30px;
}

.founder-signature {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 20px;
    border-top: 2px solid var(--accent-color);
    width: fit-content;
}

.founder-signature strong {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.founder-signature span {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .founder-image {
        flex: 0 0 280px;
    }

    .founder-image img {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .founder-content {
        flex-direction: column;
        gap: 40px;
    }

    .founder-image {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .founder-image img {
        height: 350px;
    }

    .founder-message {
        text-align: center;
    }

    .founder-signature {
        margin: 0 auto;
        text-align: center;
    }
}

/* ========================================
   Services Detail Section
   ======================================== */
.services-detail-section {
    padding: 100px 0;
    background: var(--white);
}

.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
    border-bottom: 1px solid #e9ecef;
}

.service-row:first-of-type {
    padding-top: 0;
}

.service-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-row-reverse {
    flex-direction: row-reverse;
}

.service-row-image {
    flex: 1;
}

.service-row-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-row-content {
    flex: 1;
}

.service-row-content h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-row-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--secondary-color);
    padding: 8px 0;
}

.service-features li i {
    color: var(--accent-color);
    font-size: 18px;
}

@media (max-width: 1024px) {
    .service-row {
        gap: 40px;
    }

    .service-row-content h3 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {

    .service-row,
    .service-row-reverse {
        flex-direction: column;
        gap: 30px;
        padding: 40px 0;
    }

    .service-row-image img {
        height: 250px;
    }

    .service-row-content {
        text-align: center;
    }

    .service-row-content h3 {
        font-size: 24px;
    }

    .service-features {
        display: inline-block;
        text-align: left;
    }
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 80px 0;
    background: var(--primary-dark);
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* ========================================
   Dream CTA Section
   ======================================== */
.dream-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 50%, #a5d6a7 100%);
    position: relative;
}

.dream-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.dream-cta-text {
    flex: 1;
}

.dream-cta-text h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.dream-cta-text p {
    font-size: 16px;
    color: var(--secondary-color);
    opacity: 0.9;
    line-height: 1.7;
    max-width: 600px;
}

.dream-cta-button .btn-primary {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
    padding: 14px 32px;
    font-size: 14px;
}

.dream-cta-button .btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

@media (max-width: 768px) {
    .dream-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .dream-cta-text h2 {
        font-size: 28px;
    }

    .dream-cta-text p {
        max-width: 100%;
    }
}

/* ========================================
   Contact Section New
   ======================================== */
.contact-section-new {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.contact-two-col {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 60px;
}

.contact-form-col {
    order: 2;
    align-self: end;
    margin-top: 80px;
}

.contact-content-col {
    order: 1;
    align-self: start;
}

.contact-new-form {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-field {
    margin-bottom: 15px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--secondary-color);
    transition: var(--transition);
    background: #f9fafb;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #999;
    font-size: 14px;
}

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    color: #999;
}

.form-field textarea {
    resize: none;
    min-height: 70px;
}

.contact-new-btn {
    width: 100%;
    padding: 12px 20px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.contact-new-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.contact-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--secondary-color);
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.contact-features li:last-child {
    border-bottom: none;
}

.contact-features li i {
    font-size: 20px;
    color: var(--accent-color);
}

@media (max-width: 1024px) {
    .contact-two-col {
        gap: 40px;
    }

    .contact-heading {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .contact-section-new {
        padding: 60px 0;
    }

    .contact-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-col {
        order: 2;
    }

    .contact-content-col {
        order: 1;
        text-align: center;
    }

    .contact-heading {
        font-size: 28px;
    }

    .contact-new-form {
        padding: 25px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-features {
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: #033231;
    color: #ffffff;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    color: #ffffff;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-col ul a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
    margin-top: 4px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links a:hover {
    color: #ffffff;
}

/* ========================================
   Page Header (For Inner Pages)
   ======================================== */
.page-header {
    padding: 150px 0 80px;
    background: var(--secondary-color);
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
}

.page-title {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--white);
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: var(--accent-color);
}

/* ========================================
   Contact Page
   ======================================== */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-cards {
    display: grid;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-info-card:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.contact-info-card:hover i {
    color: var(--primary-color);
}

.contact-info-card i {
    font-size: 24px;
    color: var(--accent-color);
    width: 30px;
}

.contact-info-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.contact-info-card:hover h4 {
    color: var(--white);
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-light);
}

.contact-info-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(203, 255, 84, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ========================================
   EMI Calculator
   ======================================== */
.calculator-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.calculator-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.calculator-form h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.calculator-result {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 10px;
    color: var(--white);
}

.calculator-result h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--white);
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    color: rgba(255, 255, 255, 0.7);
}

.result-value {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--accent-color);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 34px;
    }

    .hero-title {
        font-size: 44px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .completed-projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 9999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--secondary-color);
        font-size: 16px;
    }

    .nav-right .btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        min-height: auto;
        padding: 140px 0 80px;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }

    .hero-content {
        padding: 20px 15px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 10px;
    }

    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 12px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        text-align: center;
    }

    .about-img-main {
        width: 100%;
    }

    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 70%;
        margin-top: -50px;
    }

    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Projects Carousel on Mobile */
    .completed-projects-grid.projects-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 20px 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .completed-projects-grid.projects-carousel::-webkit-scrollbar {
        display: none;
    }

    .projects-carousel .completed-project-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        overflow: visible;
    }

    .projects-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .projects-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ccc;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .projects-dots .dot.active {
        background: var(--accent-color);
        transform: scale(1.2);
    }

    /* What We Make Carousel on Mobile */
    .make-rows-container.make-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 20px 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .make-rows-container.make-carousel::-webkit-scrollbar {
        display: none;
    }

    .make-carousel .make-row,
    .make-carousel .make-row.make-row-reverse {
        flex: 0 0 85%;
        scroll-snap-align: center;
        flex-direction: column;
        margin-bottom: 0;
        background: var(--white);
        border-radius: 16px;
        overflow: visible;
        box-shadow: var(--shadow);
    }

    .make-carousel .make-row .make-image {
        width: 100%;
        border-radius: 16px 16px 0 0;
        overflow: hidden;
    }

    .make-carousel .make-row .make-image img {
        height: 200px;
    }

    .make-carousel .make-row .make-content {
        padding: 20px;
    }

    .make-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .make-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ccc;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .make-dots .dot.active {
        background: var(--accent-color);
        transform: scale(1.2);
    }

    .projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Footer - 2 column grid on mobile */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        text-align: left;
    }

    .footer-col:first-child {
        grid-column: span 2;
        text-align: center;
    }

    .footer-col:first-child .social-links {
        justify-content: center;
    }

    .footer-col:last-child {
        grid-column: span 2;
    }

    .footer-col:last-child .contact-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .footer-col:last-child .contact-info li:first-child {
        grid-column: span 2;
    }

    .footer-col:last-child .contact-info li:last-child {
        grid-column: span 2;
    }

    .footer-col h4::after {
        left: 0;
        transform: none;
    }

    .social-links {
        justify-content: flex-start;
    }

    .contact-info li {
        justify-content: flex-start;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
    }

    .contact-grid,
    .calculator-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 36px;
    }

    /* What We Make Section - Fix mobile layout */
    .make-row,
    .make-row-reverse {
        flex-direction: column;
        gap: 25px;
    }

    .make-image {
        width: 100%;
        border-radius: 12px;
    }

    .make-image img {
        height: 250px;
        width: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    .make-content {
        text-align: center;
        padding: 0 10px;
    }

    .make-content h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .make-content p {
        font-size: 15px;
    }

    .make-image .play-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    /* Disable horizontal animations on mobile to prevent overflow */
    .text-animate-left,
    .text-animate-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .text-animate-left.animated,
    .text-animate-right.animated {
        opacity: 1 !important;
        transform: none !important;
    }

    .animate-fadeInLeft,
    .animate-fadeInRight {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    /* Fix about section title overflow on mobile */
    .about-content .section-title {
        white-space: normal;
    }

    /* Fix about images overflow */
    .about-images {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .hero {
        min-height: auto;
        padding: 140px 0 60px;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }

    .hero-content {
        padding-top: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-subtitle {
        font-size: 12px;
        padding: 8px 15px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero-text {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .btn {
        padding: 12px 20px;
        font-size: 12px;
    }

    /* Features */
    .features {
        padding: 50px 0;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 24px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    /* Welcome Section */
    .welcome-section {
        padding: 60px 0;
    }

    .welcome-logo {
        height: 50px;
    }

    .welcome-title {
        font-size: 24px;
    }

    .welcome-text {
        font-size: 14px;
    }

    /* Counter Stats */
    .counter-stats-section {
        padding: 40px 0;
    }

    .counter-number {
        font-size: 28px;
    }

    .counter-plus {
        font-size: 20px;
    }

    .counter-label {
        font-size: 12px;
    }

    /* About */
    .about-section {
        padding: 60px 0;
    }

    .about-stats {
        gap: 10px;
    }

    .stat-item {
        padding: 15px 20px;
        min-width: 100px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* What We Make - improved mobile */
    .what-we-make-section {
        padding: 50px 0;
    }

    .what-we-make-title {
        font-size: 24px;
        margin-bottom: 35px;
    }

    .make-row {
        margin-bottom: 35px;
        gap: 20px;
    }

    .make-image {
        width: 100%;
        margin: 0 auto;
    }

    .make-image img {
        height: 220px;
        width: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .make-content {
        text-align: center;
    }

    .make-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .make-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .make-image .play-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .read-more-link {
        display: inline-block;
        margin-top: 5px;
    }

    /* Full Spectrum */
    .full-spectrum-section {
        padding: 60px 0;
    }

    .full-spectrum-title {
        font-size: 26px;
    }

    .spectrum-card-image {
        height: 220px;
        margin-bottom: -40px;
    }

    .spectrum-card-content {
        padding: 60px 20px 30px;
        margin: 0 10px;
    }

    .spectrum-icon {
        width: 50px;
        height: 50px;
    }

    .spectrum-icon i {
        font-size: 28px;
    }

    .spectrum-card-content h3 {
        font-size: 18px;
    }

    /* Services */
    .services-section-new {
        padding: 60px 0;
    }

    .services-title {
        font-size: 26px;
    }

    .service-feature-item {
        padding: 30px 20px;
    }

    .service-feature-icon {
        width: 60px;
        height: 60px;
    }

    .service-feature-icon i {
        font-size: 24px;
    }

    /* Projects */
    .completed-projects-section {
        padding: 60px 0;
    }

    .completed-project-image {
        height: 180px;
    }

    .completed-project-info {
        padding: 20px;
    }

    .completed-project-title {
        font-size: 18px;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-title {
        font-size: 26px;
    }

    .testimonial-card {
        padding: 25px 20px;
        text-align: center;
        align-items: center;
    }

    .testimonial-quote i {
        font-size: 30px;
    }

    .testimonial-text {
        font-size: 14px;
        text-align: center;
    }

    .testimonial-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-info {
        align-items: center;
    }

    .rating {
        text-align: center;
    }

    .author-image {
        width: 50px;
        height: 50px;
    }

    /* What You Get */
    .what-you-get-section {
        padding: 60px 0;
    }

    .what-you-get-title {
        font-size: 24px;
    }

    .what-you-get-icon {
        width: 80px;
        height: 80px;
    }

    .what-you-get-icon i {
        font-size: 35px;
    }

    .what-you-get-item h3 {
        font-size: 15px;
    }

    .what-you-get-item p {
        font-size: 13px;
    }

    /* Dream CTA */
    .dream-cta-section {
        padding: 40px 0;
    }

    .dream-cta-text h2 {
        font-size: 24px;
    }

    .dream-cta-text p {
        font-size: 14px;
    }

    /* Contact Form */
    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-title {
        font-size: 24px;
    }

    .contact-form-side {
        padding: 25px 20px;
    }

    .contact-info-icon {
        width: 45px;
        height: 45px;
    }

    .contact-info-icon i {
        font-size: 16px;
    }

    .enquiry-form input,
    .enquiry-form select,
    .enquiry-form textarea {
        padding: 12px 15px;
        font-size: 13px;
    }

    .submit-btn {
        padding: 14px 25px;
        font-size: 14px;
    }

    /* Footer - keep 2 column on small mobile */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }

    .footer-col:last-child .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .footer-col:last-child .contact-info li:first-child,
    .footer-col:last-child .contact-info li:last-child {
        grid-column: span 2;
    }

    .footer-top {
        padding: 50px 0 30px;
    }

    .footer-logo {
        height: 60px;
    }

    .footer-col h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer-col ul a,
    .footer-col p {
        font-size: 12px;
    }

    .footer-col ul li {
        margin-bottom: 8px;
    }

    .social-links a {
        width: 32px;
        height: 32px;
    }

    .footer-bottom {
        padding: 15px 0;
    }

    .footer-bottom p,
    .footer-links a {
        font-size: 11px;
    }

    .contact-info li {
        font-size: 11px;
        gap: 8px;
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-info i {
        width: 14px;
        font-size: 11px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    /* Page Header */
    .page-header {
        padding: 120px 0 50px;
    }

    .page-title {
        font-size: 28px;
    }

    /* Calculator */
    .calculator-form,
    .calculator-result,
    .contact-form-wrapper {
        padding: 20px;
    }

    .calculator-form h3,
    .contact-form-wrapper h3 {
        font-size: 22px;
    }

    .result-value {
        font-size: 20px;
    }

    /* Logo */
    .logo img {
        height: 50px;
    }

    .header.scrolled .logo img {
        height: 45px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 22px;
    }

    .section-title {
        font-size: 20px;
    }

    .counter-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .counter-number {
        font-size: 22px;
    }

    .counter-label {
        font-size: 11px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 11px;
    }

    .what-you-get-icon {
        width: 70px;
        height: 70px;
    }

    .what-you-get-icon i {
        font-size: 30px;
    }

    /* Footer - still 2 columns */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }

    .footer-col:last-child .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .footer-col:last-child .contact-info li:first-child,
    .footer-col:last-child .contact-info li:last-child {
        grid-column: span 2;
    }

    .footer-col h4 {
        font-size: 13px;
    }

    .footer-col ul a,
    .footer-col p {
        font-size: 11px;
    }

    .footer-logo {
        height: 50px;
    }

    /* What We Make */
    .what-we-make-title {
        font-size: 22px;
    }

    .make-content h3 {
        font-size: 18px;
    }

    .make-image img {
        height: 180px;
    }

    .make-image .play-btn {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
}

/* ========================================
   Tenure Toggle (EMI Calculator)
   ======================================== */
.tenure-toggle {
    display: flex;
    gap: 0;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--accent-color);
}

.tenure-btn {
    flex: 1;
    padding: 14px 20px;
    border: none;
    background: var(--white);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tenure-btn.active {
    background: var(--accent-color);
    color: var(--white);
}

.tenure-btn:hover:not(.active) {
    background: #f0f4f3;
}

/* ========================================
   EMI Benefits Section
   ======================================== */
.emi-benefits-section {
    padding: 100px 0;
    background: var(--white);
}

.emi-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.emi-benefit-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.emi-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.emi-benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.emi-benefit-icon i {
    font-size: 32px;
    color: var(--accent-color);
}

.emi-benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.emi-benefit-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .emi-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .emi-benefits-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 50px auto 0;
    }
}

/* ========================================
   About Stats (inline)
   ======================================== */
.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.about-stat {
    text-align: center;
}

.about-stat .stat-num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.about-stat .stat-label {
    font-size: 13px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .about-stats {
        gap: 20px;
    }

    .about-stat .stat-num {
        font-size: 28px;
    }
}

/* ========================================
   Core Values Section
   ======================================== */
.core-values-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: var(--transition);
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.value-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: #f0f0f0;
    line-height: 1;
    margin-bottom: 15px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 50px auto 0;
    }
}

/* Member Bio */
.member-bio {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 10px;
    line-height: 1.6;
}

/* ========================================
   Packages Page Styles
   ======================================== */

/* Page Header */
.page-header {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 80px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 50, 49, 0.92), rgba(6, 50, 49, 0.85));
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-header-content h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-header-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Packages Section */
.packages-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.package-featured {
    border: 3px solid var(--accent-color);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

.package-header {
    padding: 40px 30px 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.package-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.package-icon i {
    font-size: 36px;
    color: var(--white);
}

.package-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.package-price {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.package-price span {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
}

.package-body {
    padding: 30px;
    flex: 1;
}

.package-section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    margin-top: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.package-section-title:first-child {
    margin-top: 0;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    font-size: 20px;
    color: var(--accent-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.package-features li i.ph-x-circle {
    color: #e74c3c;
    opacity: 0.6;
}

.package-footer {
    padding: 0 30px 30px;
}

.package-btn {
    width: 100%;
    text-align: center;
    padding: 14px 30px;
    font-weight: 600;
}

/* Package Note */
.package-note {
    margin-top: 50px;
    background: #fff9e6;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    overflow: hidden;
}

.package-note-content {
    padding: 25px 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.package-note-content i {
    font-size: 24px;
    color: #ff9800;
    margin-top: 3px;
    flex-shrink: 0;
}

.package-note-content p {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
    margin: 0;
}

/* Why Packages Section */
.why-packages-section {
    padding: 80px 0;
    background: var(--white);
}

.why-packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-package-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: var(--transition);
}

.why-package-item:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.why-package-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-package-icon i {
    font-size: 40px;
    color: var(--white);
}

.why-package-item h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.why-package-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   Process Minimal Section
   ======================================== */
.process-minimal-section {
    padding: 80px 0;
    background: var(--white);
}

.process-minimal {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Horizontal connecting line */
.process-line {
    position: absolute;
    top: 8px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e0e0;
}

.process-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

/* The dot on the line */
.process-dot {
    width: 18px;
    height: 18px;
    background: var(--white);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    margin: 0 auto 35px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-item:hover .process-dot {
    background: var(--accent-color);
    box-shadow: 0 0 0 6px rgba(40, 167, 69, 0.15);
}

/* Large faded number */
.process-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: rgba(40, 167, 69, 0.2);
    line-height: 1;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.process-item:hover .process-num {
    color: rgba(40, 167, 69, 0.35);
}

.process-item h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.process-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .process-minimal-section {
        padding: 60px 0;
    }

    .process-minimal {
        flex-direction: column;
        padding-left: 50px;
        margin-top: 40px;
        gap: 10px;
    }

    .process-line {
        left: 24px;
        right: auto;
        top: 10px;
        bottom: 10px;
        width: 2px;
        height: calc(100% - 20px);
    }

    .process-item {
        text-align: left;
        padding: 15px 0 15px 25px;
        position: relative;
    }

    .process-dot {
        position: absolute;
        left: -34px;
        top: 20px;
        margin: 0;
    }

    .process-num {
        font-size: 36px;
        margin-bottom: 5px;
    }

    .process-item h4 {
        font-size: 16px;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .why-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .why-packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-header {
        height: 280px;
    }

    .page-header-content h1 {
        font-size: 32px;
    }

    .page-header-content p {
        font-size: 16px;
    }

    .packages-section {
        padding: 60px 0;
    }

    .why-packages-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .package-header {
        padding: 30px 20px 25px;
    }

    .package-title {
        font-size: 20px;
    }

    .package-price {
        font-size: 36px;
    }

    .package-body {
        padding: 25px 20px;
    }

    .package-footer {
        padding: 0 20px 25px;
    }
}

/* ========================================
   Contact Popup
   ======================================== */
.contact-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 950px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35), 0 10px 30px rgba(3, 50, 49, 0.2);
    animation: popupSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10000;
}

.popup-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 500px;
}

.popup-image {
    position: relative;
    overflow: hidden;
    background: var(--secondary-color);
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 50, 49, 0.85) 0%, rgba(6, 50, 49, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.popup-image-text {
    text-align: center;
    color: white;
}

.popup-image-text h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.popup-image-text p {
    font-size: 16px;
    opacity: 0.95;
}

.popup-form-section {
    padding: 30px 28px;
    overflow-y: auto;
    max-height: 90vh;
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--secondary-color);
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.popup-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

/* Popup Image Section Enhancements */
.popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(40, 167, 69, 0.95);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}

.popup-badge i {
    font-size: 18px;
}

.popup-features {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.popup-feature-item i {
    font-size: 20px;
    color: var(--accent-color);
}

/* Popup Form Section */
.popup-header {
    text-align: center;
    margin-bottom: 20px;
}

.popup-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    line-height: 1.3;
}

.popup-header p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.5;
}

.popup-form .form-group {
    margin-bottom: 16px;
}

.popup-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.popup-form label i {
    font-size: 16px;
    color: var(--primary-color);
}

.popup-form input,
.popup-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e8ecef;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    background: #f8f9fa;
}

.popup-form input:hover,
.popup-form textarea:hover {
    border-color: #d0d5dd;
    background: white;
}

.popup-form input:focus,
.popup-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(3, 50, 49, 0.08);
    background: white;
}

.popup-form textarea {
    resize: vertical;
    min-height: 70px;
}

.popup-submit {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(3, 50, 49, 0.25);
}

.popup-privacy {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.popup-privacy i {
    color: var(--accent-color);
    font-size: 14px;
}

@media (max-width: 768px) {
    .popup-content {
        max-height: 95vh;
        overflow-y: auto;
    }

    .popup-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .popup-image {
        display: none;
    }

    .popup-image-text h2 {
        font-size: 22px;
    }

    .popup-image-text p {
        font-size: 14px;
    }

    .popup-form-section {
        padding: 30px 25px;
    }

    .popup-header h3 {
        font-size: 22px;
    }

    .popup-form input,
    .popup-form textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

}

@media (max-width: 480px) {
    .popup-content {
        width: 95%;
    }

    .popup-image {
        min-height: 180px;
        max-height: 200px;
    }

    .popup-image-text h2 {
        font-size: 18px;
    }

    .popup-form-section {
        padding: 25px 20px;
    }

    .popup-header h3 {
        font-size: 20px;
    }

    .popup-form input,
    .popup-form textarea {
        padding: 12px 15px;
        font-size: 13px;
    }
}


/* blog post page ka code */

.section-heading {
    font-family: var(--font-heading);
    font-size: 30px !important;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 30px;
    line-height: 1.3;
}

.section-heading3 {
    font-size: 1.75rem;
    font-weight: 700;
}

.blog-section {
    padding: 60px 0;
}

.left-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.recent-posts-box {
    background: #ffffff;
    padding: 25px;
}

.recent-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.recent-title::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #0d6efd;
    display: block;
    margin-top: 6px;
}

.recent-post-item {
    display: flex;
    margin-bottom: 22px;
}

.recent-post-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.post-content a {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    line-height: 1.4;
    display: block;
}

.post-content a:hover {
    color: #0d6efd;
}

.post-content span {
    font-size: 13px;
    color: #777;
}

/* blog post page ka code khatam */



/* new page ke liye code */
.tso {
    font-family: var(--font-heading);
    font-size: 43px;
    color: var(--white);
    margin-bottom: 15px;
}

.h2so {
    font-family: var(--font-heading);
    font-size: 35px;
    font-weight: 700;
    color: var(--primary-color);
    /* margin-bottom: 20px; */
}

.about-section {
    background: #ffffff;
    padding: 100px 0;
}

/* Image */
.about-img-main {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-heading {
    font-size: 32px;
    font-weight: 700;
    color: #063231;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-h4 {
    font-size: 28px;
    font-weight: 700;
    color: #063231;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
}

.about-full-content {
    /* border-top: 1px solid #e0e0e0; */
    padding-top: 20px;
}

/* MOBILE RESPONSIVE */

@media (max-width: 992px) {

    .about-h4 {
        font-size: 28px;
    }

}

@media (max-width: 768px) {

    .about-section {
        padding: 60px 0;
    }

    .about-h4 {
        font-size: 24px;
        text-align: left;
    }

    .about-text {
        font-size: 15px;
    }

}

@media (max-width: 576px) {

    .about-h4 {
        font-size: 22px;
        line-height: 1.4;
    }

    .about-text {
        font-size: 14px;
        line-height: 1.7;
    }

}


/* banneer */
.construction-page .page-header {
    padding: 140px 0 80px;
}

.construction-page .page-header h1 {
    font-size: 43px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 15px;
}

/* Breadcrumb */
.construction-page .breadcrumb {
    font-size: 14px;
    color: #e5e5e5;
}

.construction-page .breadcrumb a {
    color: #28a745;
}


/* Tablet View */
@media (max-width: 992px) {

    .construction-page .page-header {
        padding: 120px 0 70px;
    }

    .construction-page .page-header h1 {
        font-size: 36px;
        line-height: 1.3;
        text-align: center;
        padding: 0 20px;
    }

    .construction-page .breadcrumb {
        text-align: center;
    }

}

/* Mobile View */
@media (max-width: 768px) {

    .construction-page .page-header {
        padding: 110px 0 60px;
    }

    .construction-page .page-header h1 {
        font-size: 28px;
        line-height: 1.4;
        text-align: center;
        padding: 0 15px;
    }

    .construction-page .breadcrumb {
        font-size: 13px;
        text-align: center;
        padding: 0 15px;
    }

}

/* Small Mobile */
@media (max-width: 576px) {

    .construction-page .page-header {
        padding: 100px 0 50px;
    }

    .construction-page .page-header h1 {
        font-size: 24px;
        line-height: 1.4;
    }

    .construction-page .breadcrumb {
        font-size: 12px;
    }

}



.construction-page .footer-col ul {
    padding-left: 0;
    margin-left: 0;
    list-style: none;
}

.construction-page .footer-links {
    padding-left: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 15px;
}

/* new page ke liye End code */


/* index page add contant code */
.welcome-content1 {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}
.welcome-content2 {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-grid1{
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 20px;
}

.about-grid1 .about-content .btn {
    display: block;
    margin: 20px auto 0;
    text-align: center;
    width: 200px;
}

/* index page add contant code end */








