/* ======= css/style.css ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    /* FIX: Remove the padding-top from here */
    padding-top: 0;
}
html{
    scroll-behavior: smooth;
}

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

/* Header wrapper - Important for positioning context */
.header {
    position: relative;
    width: 100%;
    z-index: 1000;
}

/* ===== TOP BAR STYLES ===== */
.top-bar {
    background: #0a0a0a;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    /* Ensure it's above the main nav initially? No, it's in normal flow. */
    position: relative;
    width: 100%;
    z-index: 1001;
    transition: transform 0.3s ease;
}

/* ===== MAIN NAVIGATION STYLES ===== */
.main-nav {
    background: #0a0a0a;
    color: #fff;
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* --- The Scroll Effect --- */
/* When the header has the 'scrolled' class, hide the top-bar */
.header.scrolled .top-bar {
    transform: translateY(-100%);
}
/* When header has fixed-nav, make main-nav fixed at top */
.header.fixed-nav .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* Optional: Add a shadow to the nav when scrolled for better effect */
.header.scrolled .main-nav {
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* ===== Your existing styles below remain exactly the same ===== */
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info span {
    margin-right: 25px;
    display: inline-block;
}

.contact-info i {
    margin-right: 8px;
    color: #ff6b35;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -1px;
}

.logo span {
    color: #ff6b35;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ff6b35;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-icon {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.search-icon:hover {
    color: #ff6b35;
}

.btn-get-started {
    background: #ff6b35;
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s ease;
    display: inline-block;
}

.btn-get-started:hover {
    background: #e54e1b;
}

.mobile-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%; /* Position right below the main-nav */
        left: 0;
        width: 100%;
        background: #0a0a0a;
        flex-direction: column;
        padding: 20px 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        z-index: 9999;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu li {
        margin: 12px 0;
        text-align: center;
    }
        .nav-menu a {
        font-size: 18px;
        display: block;
        padding: 5px 0;
    }
    .mobile-toggle {
        display: block;
        cursor: pointer;
    }
       .slider-btn {
        width: 25px;
        height: 25px;
        font-size: 10px;
    }
        .prev-btn {
        left: 10px;
    }
        .next-btn {
        right: 10px;
        margin-left: 100px;
    }

    .slider-dots {
        bottom: 15px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
    .contact-info span {
        margin-right: 15px;
        font-size: 13px;
    }
}
@media (max-width: 576px) {
    .hero-title{
        font-size: 32px;
    }
     .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
    }

    .btn-discover {
        padding: 10px 25px;
        font-size: 14px;
    }

    .slider-btn {
        width: 30px;
        height: 30px;
    }    
}
@media (max-width: 992px) {
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
    .slider-dots { bottom: 15px; }
    .dot { width: 8px; height: 8px; }
}
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info span {
        display: block;
        margin: 5px 0;
    }
    
    .btn-get-started {
        padding: 8px 16px;
        font-size: 13px;
    }
}
@media (max-width: 768px) {
    .slider-btn {
        width: 35px !important;   /* Pehle 50px tha */
        height: 35px !important;  /* Pehle 50px tha */
        font-size: 14px !important; /* Arrow ka size */
        margin: -15px;
    }
    
    .prev-btn {
        left: 10px !important;    /* Position adjust */
    }
    
    .next-btn {
        right: 10px !important;   /* Position adjust */
    }
}
/* ===== HERO SLIDER STYLES ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #0a0a0a;
}

/* Slides Container */
.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

/* Container */
.hero-slider .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Hero Content */
.hero-slider .hero-content {
    max-width: 700px;
    margin-left: 100px;
    color: #fff;
}

.hero-slider .hero-subtitle {
    color: #ff6b35;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.hero-slider .hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-slider .hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #ccc;
    max-width: 600px;
}

.hero-slider .btn-discover {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-slider .btn-discover:hover {
    background: transparent;
    border-color: #ff6b35;
    color: #ff6b35;
}

/* Slider Controls (Arrows) */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid #ff6b35;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #ff6b35;
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

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

.dot.active {
    background: #ff6b35;
    transform: scale(1.2);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero-slider .hero-title {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-slider .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-slider .hero-title {
        font-size: 42px;
    }
    
    .hero-slider .hero-description {
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-slider .hero-description br {
        display: none;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .hero-slider .hero-title {
        font-size: 36px;
    }
    
    .hero-slider .btn-discover {
        padding: 12px 30px;
        font-size: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
}

/* ===== MODERN BUSINESS SECTION ===== */
.modern-business {
    background: #0a0a0a;
    padding: 100px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.section-subtitle {
    color: #ff6b35;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 60px;
    letter-spacing: -1px;
    max-width: 600px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-item {
    background: rgba(255,255,255,0.03);
    padding: 40px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,107,53,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background: #ff6b35;
    transform: scale(1.1);
}

.service-icon i {
    font-size: 30px;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon i {
    color: #fff;
}

.service-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-item:hover h3 {
    color: #ff6b35;
}

.service-item p {
    color: #999;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.service-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #ff6b35;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .modern-business {
        padding: 60px 0;
        text-align: center;
    }
    .service-item{
        border: .5px solid orangered;
    }
    
    .section-title {
        font-size: 36px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
}



/* ===== ABOUT OUR COMPANY SECTION ===== */
.about-company {
    background: #0a0a0a;
    padding: 100px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Flex container: side-by-side on desktop */
.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left side: image container */
.about-image {
    flex: 1;
    max-width: 450px; /* Adjust width as needed */
}

.image-placeholder {
    line-height: 0; /* Remove extra space below image */
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(255,107,53,0.2);
}

/* Right side: content */
.about-content {
    flex: 1;
}

.about-description {
    color: #ccc;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 10px;
    line-height: 1.2;
}

.stat-text {
    font-size: 16px;
    color: #ccc;
    line-height: 1.5;
}

/* About Link */
.about-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
}

.about-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.about-link:hover {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
}

.about-link:hover i {
    transform: translateX(5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column; /* Stack vertically on tablet/mobile */
        text-align: center;
        gap: 40px;
    }

    .about-image {
        max-width: 100%;
    }

    .about-img {
        max-width: 80%;
        margin: 0 auto;
    }

    .about-description {
        margin-left: auto;
        margin-right: auto;
    }
}

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .about-link {
        font-size: 16px;
    }

    .about-img {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 36px;
    }

    .about-description {
        font-size: 16px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-text {
        font-size: 14px;
    }
}

/* ===== CASE STUDIES SECTION - INDEPENDENT ===== */
.case-studies-section {
    background: #0a0a0a;
    padding: 100px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}

/* Section Header with See All link */
.case-studies-section-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}
.case-studies-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.case-studies-section .see-all {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    border: 2px solid rgba(255,107,53,0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
    /* Removed the problematic margin: 45px 0px */
}

.case-studies-section .see-all i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.case-studies-section .see-all:hover {
    background: #ff6b35;
    border-color: #ff6b35;
}

.case-studies-section .see-all:hover i {
    transform: translateX(5px);
}

/* Category Filters */
.case-studies-section .category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.case-studies-section .filter-item {
    padding: 8px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.case-studies-section .filter-item:hover,
.case-studies-section .filter-item.active {
    background: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
}

/* Portfolio Grid - 3 columns */
.case-studies-section .portfolio-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Portfolio Card - FIXED spacing issues */
.case-studies-section .portfolio-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    /* Removed fixed height/width - using aspect-ratio instead */
    aspect-ratio: 4/5;
    width: 100%;
}

.case-studies-section .portfolio-image {
    position: relative;
    overflow: hidden;
    filter: grayscale(100%);
    width: 100%;
    height: 100%;
    transition: filter 0.3s ease;
}

.case-studies-section .portfolio-image:hover {
    filter: grayscale(0%);
}

.case-studies-section .portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-studies-section .portfolio-card:hover .portfolio-img {
    transform: scale(1.1);
}

/* Overlay - appears on hover */
.case-studies-section .portfolio-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
    transition: bottom 0.3s ease;
}

.case-studies-section .portfolio-card:hover .portfolio-overlay {
    bottom: 0;
}

.case-studies-section .category {
    color: #ff6b35;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 8px;
    background-color: rgba(0,0,0,0.7);
    border: 1px solid #ff6b35;
    border-radius: 20px;
    padding: 4px 12px;
}

.case-studies-section .portfolio-overlay h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

/* Extra tags line */
.case-studies-section .extra-tags {
    margin-top: 40px;
    text-align: center;
}

.case-studies-section .extra-tag {
    display: inline-block;
    padding: 8px 25px;
    background: rgba(255,107,53,0.1);
    border: 1px solid #ff6b35;
    border-radius: 30px;
    color: #ff6b35;
    font-size: 14px;
    font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .case-studies-section .portfolio-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .case-studies-section .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .case-studies-section {
        padding: 60px 0;
    }
    .portfolio-img{
        border: 2px solid #ff6b35;
    }
    .case-studies-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .case-studies-section .portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
        
    }

    .case-studies-section .category-filters {
        justify-content: center;
        gap: 10px;
    }

    .case-studies-section .filter-item {
        padding: 6px 15px;
        font-size: 13px;
        
    }

    .case-studies-section .see-all {
        width: 100%;
        justify-content: center;
    }
    
    .case-studies-section .portfolio-card {
        aspect-ratio: 4/5;
    }
}

@media (max-width: 576px) {
    .case-studies-section .portfolio-overlay {
        padding: 15px;
    }
    
    .case-studies-section .portfolio-overlay h3 {
        font-size: 16px;
    }

    .case-studies-section .extra-tag {
        font-size: 13px;
        padding: 6px 20px;
    }
    
    .case-studies-section .category {
        font-size: 14px;
    }
}

/* For very small devices */
@media (max-width: 400px) {
    .case-studies-section .category-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .case-studies-section .filter-item {
        width: 100%;
        text-align: center;
        border: 2px solid #ff6b35;
    }
}

/* ===== AWARD WINNING SECTION ===== */
.award-winning {
    background: #0a0a0a;
    padding: 100px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Top row - centered */
.award-header {
    text-align: center;
    margin-bottom: 60px;
}

.award-subtitle {
    color: #ff6b35;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
    text-align: left;
}

.award-heading {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    max-width: 700px;
    margin: 0 4px;
    text-align: left;
}

/* Bottom row - two columns */
.award-bottom {
    display: flex;
    align-items: top ;
    gap: 60px;
}

/* Left column: tabs */
.award-tabs {
    flex: 1.2;
}

/* Tab Navigation */
.tab-nav {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

.tab-link {
    background: transparent;
    border: none;
    color: #ccc;
    font-size: 20px;
    font-weight: 600;
    padding: 0 0 15px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: -0.3px;
}

.tab-link::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 0;
    height: 3px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.tab-link:hover {
    color: #fff;
}

.tab-link.active {
    color: #ff6b35;
}

.tab-link.active::after {
    width: 100%;
}

/* Tab Content */
.tab-content {
    margin-top: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.tab-description {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 500px;
}

.tab-list {
    list-style: none;
    padding: 0;
}

.tab-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 16px;
    margin-bottom: 12px;
}

.tab-list li i {
    color: #ff6b35;
    font-size: 18px;
}

/* Right column: image */
.award-image {
    flex: 1;
}

.image-placeholder {
    line-height: 0;
    /* border-radius: 10px; */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.award-img {
    width: 399px;
    height: 513px;
    display: block;
    border-radius: 95px 0px 95px 0px;
    transition: all 0.9s ease;
}

.award-img:hover {
    transform: scale(0.8);
    border-radius: 0px 95px 0px 95px;
}

/* Fallback placeholder */
.placeholder-content {
    background: rgba(255,107,53,0.1);
    border: 2px dashed #ff6b35;
    border-radius: 10px;
    padding: 120px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #ff6b35;
}

.placeholder-content i {
    font-size: 48px;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
    .award-bottom {
        flex-direction: column;
        gap: 50px;
    }

    .award-tabs {
        width: 100%;
    }

    .tab-description {
        max-width: 100%;
    }

    .award-image {
        /* width: 100%; */
        max-width: 600px;
        margin: 0 auto;
    }
    .award-img{
        width: 100%;
        height: auto;
    }

    /* Keep list left aligned */
    .tab-list li {
        justify-content: flex-start; /* left align */
        text-align: left;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .award-winning {
        padding: 60px 20px;
    }

    .award-heading {
        font-size: 36px;
        text-align: center;
    }

    .tab-nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-link {
        font-size: 18px;
        padding-bottom: 10px;
    }

    .tab-link::after {
        bottom: -12px;
    }

    .tab-title {
        font-size: 24px;
        text-align: center;
    }

    .tab-description {
        text-align: center;
    }

    /* List items aligned left with icon */
    .tab-list li {
        justify-content: flex-start; /* left align */
        text-align: left;
    }

    .tab-list li i {
        min-width: 20px; /* ensures icon and text align properly */
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .tab-nav {
        flex-direction: column;
        gap: 10px;
        border-bottom: none;
    }

    .tab-link {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 15px 0;
    }

    .tab-link::after {
        bottom: -1px;
    }

    .award-heading {
        font-size: 32px;
    }

    /* Ensure list items still left aligned on small screens */
    .tab-list li {
        justify-content: flex-start;
        text-align: left;
        gap: 10px; /* maintain space between tick icon and text */
    }
}

/* ===== TEAM MEMBERS SECTION ===== */
.team-section {
    background: #0a0a0a;
    padding: 44px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Team Card */
.team-card {
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

/* Team Image */
.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1.1; /* Slightly vertical */
    filter: grayscale(100%);
}
.team-image:hover{
    filter: grayscale(0%);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Social Icons Overlay */
.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transition: bottom 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: #ff6b35;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #fff;
    color: #ff6b35;
    transform: scale(1.1);
}

/* Team Info */
.team-info {
    padding: 20px 15px;
    text-align: center;
}

.team-role {
    color: #ff6b35;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .team-section {
        padding: 60px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .team-name {
        font-size: 18px;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: #0a0a0a;
    padding: 100px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-section .section-header {
    margin-bottom: 60px;
}

/* FAQ Wrapper - two columns */
.faq-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* Left Sidebar */
.faq-sidebar {
    flex: 0 0 250px;
    background: rgba(255,255,255,0.02);
    padding: 30px 25px;
    border-radius: 10px;
    border-left: 3px solid #ff6b35;
}

.sidebar-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #ff6b35;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 15px;
}

.sidebar-menu a {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.sidebar-menu a:hover {
    color: #ff6b35;
    padding-left: 5px;
}

.has-submenu .submenu {
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
}

.has-submenu .submenu li {
    margin-bottom: 10px;
}

.has-submenu .submenu a {
    font-size: 15px;
    color: #999;
}

.has-submenu .submenu a:hover {
    color: #ff6b35;
}

/* Right Content - FAQ Accordion */
.faq-content {
    flex: 1;
}

.faq-list {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.faq-number {
    color: #ff6b35;
    font-weight: 700;
    font-size: 18px;
    min-width: 30px;
}

.faq-question h4 {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-question:hover h4 {
    color: #ff6b35;
}

.faq-toggle {
    color: #ff6b35;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 20px 0 10px 45px; /* 45px = number width + gap */
    color: #ccc;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .faq-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .faq-sidebar {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

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

    .faq-question {
        gap: 10px;
    }

    .faq-number {
        font-size: 16px;
        min-width: 25px;
    }

    .faq-question h4 {
        font-size: 16px;
    }

    .faq-answer {
        padding-left: 35px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .faq-sidebar {
        padding: 20px;
    }

    .sidebar-title {
        font-size: 20px;
    }

    .sidebar-menu a {
        font-size: 15px;
    }

    .faq-question h4 {
        font-size: 15px;
    }

    .faq-answer {
        padding-left: 35px;
        font-size: 14px;
    }
}


/* here is missing code of sd;lfjsdfsdjfsdfj */
.clients-section{
    width: 100%;
    min-height: 40vh;
    background-color: black;
    padding: 60px 20px;
}

.container1{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
}

/* Header */
.clients-section-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title2{
    color: white;
    font-size: 35px;
    font-family: sans-serif;
}

.clients-description{
    color: white;
    font-size: 16px;
    margin-top: 15px;
    font-weight: lighter;
}

.spn50k{
    color: #ff6b35;
}

/* Logos Grid */
.clients-grid{
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.client-grid1,
.client-grid2{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.client-logo{
    width: 90px;
    height: 30px;
}

.client-logo:hover{
    cursor: pointer;
}

/* ================= */
/* TABLET RESPONSIVE */
/* ================= */

@media (max-width: 992px){

.container1{
    flex-direction: column;
    text-align: center;
}

.clients-grid{
    width: 80%;
}

.section-title2{
    font-size: 30px;
}

}

/* ================= */
/* MOBILE RESPONSIVE */
/* ================= */

@media (max-width: 600px){

.section-title2{
    font-size: 26px;
}

.clients-description{
    font-size: 14px;
}

.clients-grid{
    width: 100%;
    gap: 25px;
}

.client-grid1,
.client-grid2{
    flex-wrap: wrap;
    gap: 20px;
}

.client-logo{
    width: 70px;
    height: auto;
}

}


/* here is missing code of sd;lfjsdfsdjfsdfj */

/* ===== CLIENTS TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: #0a0a0a;
    padding: 41px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    /* margin-top: 60px; */
}
.testimonial-section-header{
    display: flex;
    flex-direction: column;
}
.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

/* Testimonial Card */
.testimonial-card {
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.testimonial-card:hover {
    border-color: #ff6b35;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.testimonial-headline {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
}

.testimonial-headline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #ff6b35;
}

.testimonial-quote {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
    width:200px;
    height: 100px;
    gap: 10px;
}

.test-img{
    width: 60px;
    height: 60px;
}
.div-test-content{
    display: flex;
    flex-direction: column;
}
.testimonial-author strong {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #ff6b35;
    font-size: 14px;
    font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto;
    }

    .testimonial-card {
        padding: 30px 25px;
        border: 2px solid #ff6b35;
    }

    .testimonial-headline {
        font-size: 20px;
    }
}

/* ===== CTA SECTION ===== */

.cta-section {
    width: 100%;
    min-height: 300px;
    background: url(../assets/images/cta-bg1.png);
    background-color: black;
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 30px;
}

.cta-heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
}

.cta-button {
    background: #ff6b35;
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background-color: white;
    color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,107,53,0.3);
}

/* ===== TABLET ===== */

@media (max-width: 992px){

.cta-content{
    flex-direction: column;
    text-align: center;
}

.cta-heading{
    font-size: 34px;
}

}

/* ===== MOBILE ===== */

@media (max-width: 768px){

.cta-section{
    padding: 70px 20px;
}

.cta-heading{
    font-size: 30px;
}

.cta-button{
    padding: 12px 26px;
    font-size: 15px;
}

}

/* ===== SMALL MOBILE ===== */

@media (max-width: 480px){

.cta-heading{
    font-size: 24px;
    line-height: 1.4;
}

.cta-button{
    width: 100%;
    max-width: 220px;
}

}

/* ===== FOOTER SECTION ===== */
.footer {
    background: #0a0a0a;
    color: #fff;
    padding: 80px 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 60px;
}

/* Footer Columns */
.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ff6b35;
}

/* Footer Logo */
.footer-logo {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

/* Footer Links Row */
.footer-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links-row a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links-row a:hover {
    color: #ff6b35;
}

/* Footer Lists */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
    padding-left: 5px;
}

/* Contact Info */
.contact-info {
    margin-top: 20px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 14px;
    margin-bottom: 12px;
}

.contact-info i {
    color: #ff6b35;
    width: 20px;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 5px;
    padding: 15px;
    color: #fff;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #ff6b35;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    background: #ff6b35;
    border: none;
    border-radius: 5px;
    padding: 15px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.newsletter-form button:hover {
    background: #e54e1b;
    transform: translateY(-3px);
}

.privacy-note {
    color: #999;
    font-size: 13px;
    margin-top: 15px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 20px;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 0;
    }

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

    .footer-col {
        text-align: left;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .newsletter-form {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .footer-col h4 {
        font-size: 18px;
    }

    .footer-logo {
        font-size: 28px;
    }

    .footer-description,
    .footer-links a,
    .contact-info p {
        font-size: 13px;
    }

    .newsletter-form input,
    .newsletter-form button {
        padding: 12px;
        font-size: 13px;
    }
}