
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Helvetica', Arial, sans-serif;
            line-height: 1.6;
            color: #1e293b;
            background: #ffffff;
            overflow-x: hidden;
        
        }

/* Hide titlebar that creates gap before hero carousel */
.titlebar-inner,
.titlebar-container,
.titlebar {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove gap between header and hero carousel */
.hero-carousel {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove spacing from any parent wrapper */
#main,
.site-content,
.content-area,
.site-main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

:root {
    --landing-max-width: 1200px;
    --landing-side-gap: clamp(16px, 4vw, 60px);
}

.partners .container,
.stats-section > .container,
.services > .container,
.ecosystem,
.works-section,
.cta-section,
.contact-section {
    width: 100%;
    max-width: var(--landing-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--landing-side-gap);
    padding-right: var(--landing-side-gap);
}

         .hero-carousel .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
        }


        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding-left: var(--landing-side-gap);
            padding-right: var(--landing-side-gap);
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: clamp(1rem, 2vw, 1.25rem);
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: flex-start;
            align-items: center;
            margin-top: 32px;
        }

        .btn {
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 16px;
            display: inline-block;
        }

        .btn-primary {
            background: #ffffff;
            color: #1e3a8a;
        }

        .btn-primary:hover {
            background: #f1f5f9;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        
        /* Partners Section */
.partners {
    padding: 0px 0;
    background: white;
    overflow: hidden;
   
}

.partners .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partners-header {
    text-align: center;
    margin-bottom: 40px;
}

.partners-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0 auto 10px auto;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.partner-logo {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

/* Services Tagline */
.services-tagline {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.tags-container {
    display: flex;
    gap: 15px;
    animation: scrollTags 20s linear infinite;
    width: max-content;
}

.tag {
    background: #f1f1f1;
    color: #333;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Animation */
@keyframes scrollTags {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% + 100vw));
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .partners {
        padding: 60px 0;
    }
    
    .partners-grid {
        gap: 30px;
    }
    
    .partner-logo {
        height: 30px;
    }
    
    .tag {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .tags-container {
        animation-duration: 30s;
    }
}

@media (max-width: 480px) {
    .partners-header h3 {
        font-size: 1.2rem;
    }
    
    .partners-grid {
        gap: 20px;
    }
    
    .partner-logo {
        height: 25px;
    }
}

   /* Stats Section */
.stats-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

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

.stats-image {
    flex: 1;
}

.stats-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.stats-content {
    flex: 1;
    position: relative;
}

.stats-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.trusted {
    color: #3b82f6;
}

.partner {
    color: #1e293b;
}

.stats-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Stats Numbers Layout */
.stats-numbers-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.stats-numbers {
    position: relative;
    width: 400px;
    height: 300px;
    margin: 0 auto;
}

.stat-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.8s ease;
    opacity: 0;
    transform: translateY(20px);
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stat-circle {
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    position: absolute;
    z-index: -1;
}

/* Stat Positioning and Sizing */
.stat-1 {
    top: 0;
    left: 50px;
    z-index: 1;
}

.stat-1 .stat-circle {
    width: 140px;
    height: 140px;
}

.stat-2 {
    top: 80px; /* Pushed down */
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 3; /* Highest z-index to stay on top */
}

.stat-2 .stat-circle {
    width: 200px;
    height: 200px;
}

.stat-3 {
    top: 0;
    right: 50px;
    z-index: 1;
}

.stat-3 .stat-circle {
    width: 140px;
    height: 140px;
}

/* Text Styles */
.stat-number {
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-1 .stat-number,
.stat-3 .stat-number {
    font-size: 2.2rem;
}

.stat-2 .stat-number {
    font-size: 3rem; /* Larger text for main stat */
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-2 .stat-label {
    font-size: 1rem; /* Slightly larger label */
}

/* Active State Animation */
.stat-item.active {
    opacity: 1;
    transform: translateY(0);
}

.stat-2.active {
    transform: translateX(-50%) translateY(0);
}

.stat-circle {
    animation: pulse 3s infinite ease-in-out;
}

.stat-1 .stat-circle {
    animation-delay: 0.3s;
}

.stat-3 .stat-circle {
    animation-delay: 0.6s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-container {
        flex-direction: column;
    }
    
    .stats-numbers {
        width: 100%;
        height: 250px;
        margin-bottom: 60px;
    }
    
    .stat-1 {
        left: 20%;
    }
    
    .stat-3 {
        right: 20%;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-numbers {
        height: 200px;
    }
    
    .stat-1 .stat-circle,
    .stat-3 .stat-circle {
        width: 120px;
        height: 120px;
    }
    
    .stat-2 .stat-circle {
        width: 160px;
        height: 160px;
    }
    
    .stat-1 .stat-number,
    .stat-3 .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-2 .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .stats-numbers {
        height: 180px;
    }
    
    .stat-1 {
        left: 10%;
    }
    
    .stat-3 {
        right: 10%;
    }
    
    .stat-1 .stat-circle,
    .stat-3 .stat-circle {
        width: 100px;
        height: 100px;
    }
    
    .stat-2 .stat-circle {
        width: 140px;
        height: 140px;
    }
    
    .stat-1 .stat-number,
    .stat-3 .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-2 .stat-number {
        font-size: 2rem;
    }
}

/* Services Section */
.services {
    padding: 1px 0;
    background: #ffffff;
}

.services .container{
     padding-left: var(--landing-side-gap);
     padding-right: var(--landing-side-gap);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.our {
    color: #1e293b; /* Black */
}

.services-title {
    color: #3b82f6; /* Blue */
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Grid Rows */
.services-row {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.first-row {
    grid-template-columns: 1.5fr 2.5fr;
}

.second-row {
    grid-template-columns: 2.5fr 1.5fr;
}

/* Card Styles */
.service-card {
    border-radius: 12px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Card Content */
.card-content {
    flex: 1;
    padding-right: 20px;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.card-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Service Icons */
.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cylinder-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
}

.shape-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
    transition: transform 0.3s ease;
}

.service-card:hover .shape-icon {
    transform: scale(1.1);
}

/* Solution Buttons */
.solution-buttons {
    margin-top: 20px;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.solution-button {
    display: inline-block;
    background: #f1f1f1;
    color: #1e293b;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    text-transform: lowercase;
    font-weight: 500;
    transition: all 0.2s ease;
}

.solution-button:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .first-row,
    .second-row {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        flex-direction: column;
    }
    
    .card-content {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .service-icon {
        align-self: flex-end;
    }
    
    .cylinder-icon {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .button-row {
        flex-direction: column;
    }
}

/* Ecosystem Section */
.ecosystem {
    padding: 100px 0;
    background: transparent;
}

.ecosystem-header {
    text-align: center;
    margin-bottom: 60px;
     font-size: 2rem;
    font-weight: bold;
}

.tyncad {
    color: #1e293b; /* Black */
}

.ecosystem-title {
    color: #3b82f6; /* Blue */
    font-weight: bold;
}

.ecosystem-header p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.ecosystem .card-content h3 {
    color: #ffffff 
}

.ecosystem .card-content p {
    color: #ffff 
}

/* Sentinel Card (Full width) */
.sentinel-card {
    background: #1e3a8a; /* Dark blue */
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    color: white;
    height: 400px;
    margin-bottom: 30px;
}

.sentinel-card .card-image {
    padding: 30px;
    display: flex;
    align-items: center;
    flex: 0 0 45%;
}

.sentinel-card .card-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sentinel-card .card-content {
    padding: 50px;
    flex: 1;
}

.sentinel-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.sentinel-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Ecosystem Grid (Press and Academy) */
.ecosystem-grid {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr; /* 1.5:2.5 ratio */
    gap: 20px;
}

.ecosystem-card {
    border-radius: 12px;
    padding: 40px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.press-card {
    background-image: url('https://tyncad.net/wp-content/themes/tyncad-theme/assets/images/image 5.png');
}

.academy-card {
    background-image: url('https://tyncad.net/wp-content/themes/tyncad-theme/assets/images/Background-2.png');
}

.press-card .card-content,
.academy-card .card-content {
    color: #ffffff; /* Dark gray/black - change as needed */
}

.press-card::before,
.academy-card::before {
    background: transparent; /* Removes the dark overlay */
}

.ecosystem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.ecosystem-card .card-content {
    position: relative;
    z-index: 2;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ecosystem-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.ecosystem-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
    flex-grow: 1;
}


/* Button Styles */
.card-actions {
    margin-top: auto;
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Hero Carousel Buttons - Matching the image design */
.btn-discover {
    background: #3b82f6;
    color: #ffffff;
    border: none;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 16px;
    min-width: 180px;
    text-align: center;
}

.btn-discover:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn-waitlist {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 16px;
    min-width: 180px;
    text-align: center;
}

.btn-waitlist:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Button ripple effect */
.btn-discover, .btn-waitlist {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Press/Academy Card Button */
.btn-visit {
    background: #3b82f6;
    color: white;
}

.btn-visit:hover {
    background: #1C75BA;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sentinel-card {
        flex-direction: column;
    }
    
    .sentinel-card .card-image {
        padding: 30px 30px 0;
        flex: auto;
    }
    
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ecosystem {
        padding: 60px 0;
    }
    
    .sentinel-card .card-content {
        padding: 30px;
    }
    
    .ecosystem-card {
        padding: 30px;
    }
}
/* Values Section */
.values {
    padding: 100px 0;
    background: #fff;
}

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

.core {
    color: #1e293b; /* Black */
}

.values-title {
    color: #3b82f6; /* Blue */
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Values Grid - Now 1x4 layout */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}

/* Value Items */
.value-item {
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Background Colors */
.value-1, .value-3 {
    background: rgba(59, 130, 246, 0.08); /* Faded blue */
    border-top-right-radius:0px ;
}

.value-2, .value-4 {
    background: rgba(100, 116, 139, 0.08); /* Faded grey */
    border-top-left-radius:0px ;
}

.value-2, .value-3{
    border-top-left-radius:0px ;
    border-top-right-radius:0px ;
    border-bottom-right-radius:0px ;
    border-bottom-left-radius:0px ;

}

.value-4{
    border-bottom-left-radius:0px ;
}

/* Number Styles */
.value-number {
    font-size: 2.5rem;
    font-weight: 300; /* Light */
    color: #3b82f6; /* Blue */
    line-height: 1;
    margin-bottom: 10px;
}

/* Content Styles */
.value-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b; /* Black */
    margin-bottom: 10px;
}

.value-content p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .values {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .value-item {
        padding: 25px;
    }
    
    .value-number {
        font-size: 2.2rem;
    }
}

        /* Works Section */
.works {
    padding: 100px 0;
    background: #fff;
}

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

.our {
    color: #1e293b; /* Black */
}

.works-title {
    color: #3b82f6; /* Blue */
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Filter Container */
.filter-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-label {
    background: #f1f1f1;
    color: #1e293b;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #f1f1f1;
    color: #1e293b;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #3b82f6;
    color: white;
}

.see-more {
    color: #3b82f6;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.see-more:hover {
    color: #1C75BA;
    gap: 8px;
}

/* Works Grid */
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
       margin: 10%;
     margin-top: 0px;
     margin-bottom: 0px;
}

.work-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-hover {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
    transition: bottom 0.3s ease;
}

.work-item:hover .work-hover {
    bottom: 0;
}

.work-item:hover img {
    transform: scale(1.03);
}

/* Responsive Design */
@media (max-width: 768px) {
    .works {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .filter-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .works-grid {
        grid-template-columns: 1fr;
    }
}
        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .impact, .stories {
    color: #3b82f6; /* Both words in blue */
}

        .testimonial {
            background: #f8fafc;
            padding: 40px;
            border-radius: 12px;
            position: relative;
        }

        .testimonial::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 4rem;
            color: #3b82f6;
            opacity: 0.3;
            line-height: 1;
        }

        .testimonial-content {
            margin-bottom: 30px;
            font-style: italic;
            color: #4b5563;
            position: relative;
            z-index: 1;
            line-height: 1.7;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-info h4 {
            color: #1e293b;
            font-weight: 600;
        }

        .author-info p {
            color: #64748b;
            font-size: 0.9rem;
        }

        .stars {
            color: #fbbf24;
            margin-top: 5px;
        }

        /* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.slider-btn {
    background: #3b82f6;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #1C75BA;
    transform: scale(1.1);
}


        /* Blog Section */
        .blog {
            padding: 100px 0;
            background: #f8fafc;
        
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 30px;
            width: 100%;
        }

        @media (max-width: 1024px) {
            .blog-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

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

        .blog-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .blog-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

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

        .blog-content {
            padding: 25px;
        }

        .blog-date {
            color: #3b82f6;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .blog-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .blog-content p {
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .read-more {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
        }

        .read-more:hover {
            color: #1C75BA;
        }

        .read-more::after {
            content: '→';
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .read-more:hover::after {
            transform: translateX(3px);
        }


  .cta-section {
  background: white;
  padding: 0;
  color: #333;
  min-height: 100vh;
}

.cta-section .container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}

.cta-content {
  display: flex;
  gap: 0;
  align-items: stretch;
  height: 100vh;
  min-height: 700px;
}

.cta-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.phone-mockup {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta-form {
  flex: 1;
  background: white;
  padding: 30px 40px;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  max-height: 100vh;
  box-sizing: border-box;
}

.cta-form h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}

.cta-form > p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 0.9rem;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.form-group {
  flex: 1;
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
  font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
  background: white;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007bff;
}

.form-group textarea {
  min-height: 60px;
  resize: vertical;
}

.phone-input {
  display: flex;
  gap: 10px;
}

.country-code {
  flex: 0 0 110px;
}

.phone-input input {
  flex: 1;
}

.privacy-text {
  font-size: 0.8rem;
  color: #666;
  margin: 15px 0 10px 0;
  line-height: 1.4;
}

.privacy-text a {
  color: #007bff;
  text-decoration: none;
}

.privacy-text a:hover {
  text-decoration: underline;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: #007bff;
  color: white;
  width: 100%;
  margin-top: 5px;
}

.btn-primary:hover {
  background: #0056b3;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
    height: auto;
    min-height: auto;
  }
  
  .cta-left {
    height: 300px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .cta-form {
    padding: 30px 20px;
    max-height: none;
  }
}

/* For screens with limited height */
@media (max-height: 800px) {
  .cta-form {
    padding: 20px 40px;
  }
  
  .cta-form h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
  
  .cta-form > p {
    margin-bottom: 15px;
  }
  
  .form-group {
    margin-bottom: 12px;
  }
  
  .form-row {
    margin-bottom: 12px;
  }
}
        /* Decorative Elements */
        .decorative-shape {
            position: absolute;
            opacity: 0.1;
            z-index: 1;
        }

        .shape-circle {
            top: 20%;
            right: 10%;
            width: 100px;
            height: 100px;
        }

        .shape-cube {
            top: 60%;
            left: 5%;
            width: 80px;
            height: 80px;
        }

        .shape-ring {
            top: 30%;
            left: 15%;
            width: 60px;
            height: 60px;
        }

        .shape-cylinder {
            bottom: 20%;
            right: 5%;
            width: 90px;
            height: 90px;
        }

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

            .stats-content {
                max-width: 100%;
                text-align: center;
            }

            .stats-numbers {
                max-width: 500px;
                margin: 0 auto;
            }

            .stats-image {
                height: 350px;
                max-width: 600px;
                margin: 0 auto;
            }

            .cta-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .cta-text {
                text-align: center;
            }

            .cta-form {
                max-width: 500px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 100px 0 60px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 250px;
                text-align: center;
            }

            .stats-numbers {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .stat-item {
                text-align: center;
            }
        }

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

            .hero p {
                font-size: 1rem;
            }

            .service-card,
            .ecosystem-card,
            .value-item,
            .work-item,
            .testimonial,
            .blog-item {
                padding: 25px 20px;
            }

            .testimonial::before {
                font-size: 3rem;
                left: 20px;
            }
        }

/* Carousel Controls - This is what was missing! */
        .carousel-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 20px;
            z-index: 10;
        }

        .control-btn {
  background: #2196F3; /* blue background */
  color: white;
  border: 2px solid #2196F3; /* blue border */
  width: 50px;
  height: 50px;
  border-radius: 10px; /* rounded square */
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

        .control-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
            transform: scale(1.1);
        }

        .indicators {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: white;
            transform: scale(1.2);
        }

        .indicator:hover {
            background: rgba(255, 255, 255, 0.7);
        }


/* Carousel Container */
.hero-carousel {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 900px;
    overflow: hidden;
    margin: 0;
    margin-top: 0;
    padding: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Slides Container */
.carousel-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

/* Individual Slide */
.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    padding: 60px;
    padding-top: 120px;
    color: white;
    margin-left: 0;
}

.slide-content h1 {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.slide-content p {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    margin-bottom: 40px;
    line-height: 1.5;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
    font-weight: 400;
}

.cta-section {
          background: white;
          padding: 0;
          color: #333;
          min-height: 100vh;
        }


        .cta-content {
          display: flex;
          gap: 0;
          align-items: stretch;
          height: 100vh;
          min-height: 700px;
        }

        .cta-left {
          flex: 1;
          display: flex;
          justify-content: center;
          align-items: center;
          overflow: hidden;
        }

        .phone-mockup {
          width: 100%;
          height: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
        }

        .phone-mockup img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          border-radius: 20px;
        }

        .cta-form {
          flex: 1;
          background: white;
          padding: 60px 40px 30px 40px; /* Added more top padding for space */
          color: #333;
          display: flex;
          flex-direction: column;
          justify-content: flex-start;
          overflow-y: auto;
          max-height: 100vh;
          box-sizing: border-box;
        }

        .cta-form h3 {
          font-size: 2.4rem; /* Increased from 1.6rem to 2.4rem */
          font-weight: 700;
          margin-bottom: 20px; /* Increased margin for better spacing */
          color: #333;
          line-height: 1.2;
        }

        .cta-form > p {
          color: #666;
          margin-bottom: 30px; /* Increased margin for better spacing */
          line-height: 1.5;
          font-size: 1rem; /* Slightly increased font size */
        }

        .form-row {
          display: flex;
          gap: 20px;
          margin-bottom: 15px;
        }

        .form-group {
          flex: 1;
          margin-bottom: 15px;
        }

        .form-group label {
          display: block;
          margin-bottom: 6px;
          font-weight: 600;
          color: #333;
          font-size: 0.85rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
          width: 100%;
          padding: 10px 12px;
          border: 2px solid #e0e0e0;
          border-radius: 6px;
          font-size: 0.9rem;
          transition: border-color 0.3s ease;
          background: white;
          box-sizing: border-box;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
          outline: none;
          border-color: #007bff;
        }

        .form-group textarea {
          min-height: 60px;
          resize: vertical;
        }

        .phone-input {
          display: flex;
          gap: 10px;
        }

        .country-code {
          flex: 0 0 110px;
        }

        .phone-input input {
          flex: 1;
        }

        .privacy-text {
          font-size: 0.8rem;
          color: #666;
          margin: 15px 0 10px 0;
          line-height: 1.4;
        }

        .privacy-text a {
          color: #007bff;
          text-decoration: none;
        }

        .privacy-text a:hover {
          text-decoration: underline;
        }

        .btn {
          padding: 12px 24px;
          border: none;
          border-radius: 6px;
          font-size: 0.9rem;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.3s ease;
          text-decoration: none;
          display: inline-block;
          text-align: center;
        }

        .btn-primary {
          background: #007bff;
          color: white;
          width: 100%;
          margin-top: 5px;
        }

        .btn-primary:hover {
          background: #0056b3;
          transform: translateY(-1px);
        }

        /* Responsive */
        @media (max-width: 768px) {
          .cta-content {
            flex-direction: column;
            height: auto;
            min-height: auto;
          }
          
          .cta-left {
            height: 300px;
          }
          
          .form-row {
            flex-direction: column;
            gap: 0;
          }
          
          .cta-form {
            padding: 40px 20px 30px 20px; /* Adjusted padding for mobile */
          }
          
          .cta-form h3 {
            font-size: 2rem; /* Slightly smaller on mobile but still larger than before */
          }
        }

        /* For screens with limited height */
        @media (max-height: 800px) {
          .cta-form {
            padding: 40px 40px 20px 40px; /* Still more top padding than before */
          }
          
          .cta-form h3 {
            font-size: 2rem; /* Larger than the original 1.4rem */
            margin-bottom: 15px;
          }
          
          .cta-form > p {
            margin-bottom: 20px;
          }
          
          .form-group {
            margin-bottom: 12px;
          }
          
          .form-row {
            margin-bottom: 12px;
          }
        }

        .contact-section {
    padding: 80px 0%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
    width: 100%;
}

.image-column {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
}

.image-column img {
    width: auto;
    max-width: none;
    height: auto;
    max-height: none;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

.form-column {
    background: white;
    border-radius: 12px;
    padding: 40px;
}

.form-header {
    text-align: left;
    margin-bottom: 30px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 12px;
}

.form-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group-full {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 14px;
    margin-bottom: 8px;
    color: #444;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
    margin-top: 8px;
}

.form-textarea::placeholder {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-style: italic;
    color: #7a7a7a;
}

.phone-input-container {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.phone-prefix {
    padding: 0 12px;
    height: 100%;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-right: 1px solid #ddd;
    font-size: 15px;
}

.phone-input {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-size: 15px;
}

.phone-input:focus {
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
}

.form-checkbox {
    margin-top: 4px;
}

.checkbox-label {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.privacy-link {
    color: #1C75BA;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.submit-button {
    background-color: #1C75BA;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #0052cc;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        gap: 30px;
    }
    
    .form-column {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .image-column {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 30px;
        order: 2;
    }

    .image-column img {
        max-width: 100%;
        max-height: none;
    }
    
    .form-column {
        order: 1;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 4%;
    }
    
    .form-column {
        padding: 25px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .form-subtitle {
        font-size: 15px;
    }
}

.works-section {
    padding: 80px 5%;
    padding-top: 0px;
}

.works-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
    text-align: center;
}

.works-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 600;
    color: #000;
    white-space: nowrap;
}

.filter-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tag {
    padding: 8px 16px;
    background-color: #f1f1f1;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-tag.active {
    background-color: #1C75BA;
    color: white;
}

.see-more-link {
    padding: 8px 16px;
    color: #1C75BA;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.see-more-link:hover {
    color: #0052cc;
    text-decoration: underline;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-button {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: #1C75BA;
    color: white;
}

.gallery-container {
    overflow: hidden;
    position: relative;
}

.gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.gallery-item {
    flex: 0 0 auto;
    width: 300px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: width 0.5s ease;
}

.gallery-item:hover {
    width: 400px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px 15px 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .works-controls {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-buttons {
        align-self: flex-end;
    }
}

@media (max-width: 768px) {
    .filter-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .gallery-item {
        width: 250px;
    }
    
    .gallery-item:hover {
        width: 300px;
    }
    
}


.fas fa-chevron-left.fas fa-chevron-right{
    color:  black;
}

.service-card.web-dev-card{
    background-color: #E2E7F1 !important;
}

.service-card.web-design-card{
    background-color:#F2F2F2 !important;
}


.service-card.app-dev-card{
    background-color: #F2F2F2 !important;
}

.service-card.creative-card{
    background-color: #E2E7F1 !important;
}

/* Mobile Responsive Styles for Hero Carousel */
@media (max-width: 768px) {
  .hero-carousel {
    height: 90vh;
    min-height: 700px;
    margin-top: 0 !important;
  }
  
  .slide-content {
    max-width: 90%;
    padding: 30px;
    padding-top: 100px;
    margin: 0 auto;
    text-align: left;
  }
  
  .slide-content h1 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    line-height: 1.1;
  }
  
  .slide-content p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    line-height: 1.4;
  }
  
  .carousel-controls {
    bottom: 20px;
    gap: 15px;
  }
  
  .control-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .hero-carousel {
    height: 85vh;
    min-height: 600px;
    margin-top: 0 !important;
  }
  
  .slide-content {
    max-width: 95%;
    padding: 15px;
    padding-top: 80px;
  }
  
  .slide-content h1 {
    font-size: 1.5rem;
  }
  
  .slide-content p {
    font-size: 0.9rem;
  }
  
  .carousel-controls {
    bottom: 15px;
    gap: 10px;
  }
  
  .control-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .btn {
    width: auto;
    min-width: 160px;
    text-align: center;
  }
}

/* Additional responsive improvements */
@media (max-width: 1024px) {
  .slide-content {
    max-width: 70%;
  }
}

/* Ensure images are responsive in carousel */
.slide {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Prevent horizontal scrolling on mobile */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Touch-friendly controls for mobile */
.control-btn, .indicator {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Hide footer widgets (search, recent posts, recent comments) */
footer .widget_search,
footer .widget_recent_entries,
footer .widget_recent_comments,
footer .widget,
footer aside,
footer .sidebar,
footer #search-2,
footer #recent-posts-2,
footer #recent-comments-2 {
    display: none !important;
}

/* Hide any footer content after contact form */
footer {
    display: none !important;
}

/* ==========================================
   HERO CAROUSEL STYLES
   ========================================== */

.hero-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #000;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.carousel-slides .slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.carousel-slides .slide::before {
    z-index: 3;
}

.carousel-slides .slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 4;
    color: white;
    max-width: 600px;
    padding: 60px 0;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-discover {
    background: #4F46E5;
    color: white;
    border-color: #4F46E5;
}

.btn-discover:hover {
    background: #4338CA;
    border-color: #4338CA;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.btn-waitlist {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-waitlist:hover {
    background: white;
    color: #4F46E5;
    transform: translateY(-2px);
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: scale(1.1);
}

.control-btn:active {
    transform: scale(0.95);
}

/* Indicators */
.indicators {
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

/* Animation */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-carousel {
        height: 500px;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .carousel-controls {
        bottom: 20px;
        gap: 20px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 450px;
    }
    
    .slide-content {
        padding: 40px 0;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
}

/* ==========================================
   WORKS GALLERY CAROUSEL
   ========================================== */

.gallery-container {
    overflow: hidden;
    position: relative;
}

.gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.gallery-item {
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #4F46E5;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: #4338CA;
    transform: scale(1.1);
}

.nav-button.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ==========================================
   TESTIMONIALS SLIDER
   ========================================== */

.testimonial {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   FORM ERROR STATES
   ========================================== */

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #EF4444 !important;
}

.checkbox-group.error {
    color: #EF4444;
}