/* ==============================================
   GLOBAL VARIABLES & COLOR THEME
   ============================================== */
:root {
    /* Updated color scheme for dark mode */
    --primary-bg: #0f1419;
    --dark-text: #110c0c;
    --white-text: #ffffff;
    --accent-color: #c8d82e;
    --light-gray: #1a1f2e;
    --medium-gray: #2a3142;
    --border-color: #3a4252;
    --card-bg: #161b28;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.6);
}

/* ==============================================
   RESET & BASE STYLES
   ============================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-bg);
    color: var(--white-text);
    line-height: 1.6;
}

/* ==============================================
   BACK TO TOP BUTTON
   ============================================== */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--card-bg);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0; /* hide initially */
}

.back-to-top-btn.show {
    opacity: 1;
}

.progress-circle {
    transform: rotate(-90deg);
}

.progress-circle circle {
    stroke: var(--accent-color);
    stroke-linecap: round;
    transition: stroke-dashoffset 0.3s ease;
}

.progress-circle circle:first-child {
    stroke: rgba(255, 255, 255, 0.1); /* background circle */
}

/* Arrow Icon */
.arrow-icon {
    position: absolute;
    font-size: 1.2rem;
    color: var(--white-text);
}

/* ==============================================
   ANNOUNCEMENT BAR
============================================== */
.tech-announcement-bar {
    background: linear-gradient(
        135deg,
        rgba(200, 216, 46, 0.15),
        rgba(200, 216, 46, 0.05)
    );
    border-bottom: 1px solid rgba(200, 216, 46, 0.3);
    padding: 0.5rem 0;
    position: relative;
    z-index: 1000;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
}

.announcement-badge {
    background-color: var(--accent-color);
    color: black;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
}

.announcement-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--white-text);
}

.announcement-content a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}

.announcement-content a:hover {
    text-decoration: underline;
}
/* ===============================
   NAVBAR
================================ */
.custom-navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.navbar-wrapper {
    max-width: 1300px;
    margin: auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand */
.navbar-brand img {
    height: 65px;
    display: block;
}

/* ===============================
   HAMBURGER
================================ */
.navbar-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.navbar-hamburger span {
    width: 26px;
    height: 3px;
    background: var(--accent-color) !important;
    border-radius: 2px;
}

/* Navbar Links */
/* Navbar Links */
.navbar-list li a {
    position: relative;
    color: var(--white-text);
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}

/* Hover effect */
.navbar-list li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px; /* line below text */
    width: 0;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Hover expands underline */
.navbar-list li a:hover::after {
    width: 100%;
}

/* Active link underline */
.navbar-list li a.active::after {
    width: 100%;
}

/* ===============================
   MENU
================================ */
.navbar-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.8rem;
    margin: 0;
    padding: 0;
}

.navbar-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-menu a:hover {
    color: var(--accent);
}

/* Underline */
.navbar-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.navbar-menu a:hover::after {
    width: 100%;
}

/* ===============================
   DROPDOWN BASE
================================ */
.navbar-dropdown {
    position: relative;
}

/* Arrow */
.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

/* Dropdown Panel */
.dropdown-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 220px;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 0.5rem 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: 0.25s ease;
    z-index: 99;
}

.dropdown-panel li a {
    display: block;
    padding: 0.65rem 1.2rem;
    color: var(--text-white);
}

.dropdown-panel li a:hover {
    background: rgba(200, 216, 46, 0.15);
    color: var(--accent);
}

/* ===============================
   DESKTOP HOVER
================================ */
@media (min-width: 993px) {
    .navbar-dropdown:hover > .dropdown-panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar-dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* ===============================
   MOBILE VIEW
================================ */
@media (max-width: 992px) {
    /* Hamburger */
    .navbar-hamburger {
        display: flex;
    }

    /* Menu slide */
    .navbar-menu {
        position: fixed;
        inset: 72px 0 0 0;
        background: var(--primary-bg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .navbar-menu.show {
        transform: translateX(0);
    }

    .navbar-menu ul {
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
        gap: 1.3rem;
        background: #0f1419;
        padding-bottom: 15rem;
    }

    /* Dropdown reset for mobile */
    .dropdown-panel {
        position: static;
        width: 100%;
        box-shadow: none;
        transform: none;
        padding: 0;
        display: none;
        opacity: 1;
        visibility: hidden;
    }

    /* Show via JS */
    .dropdown-panel.show {
        display: block;
        visibility: visible;
    }

    /* Arrow rotate */
    .navbar-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
}
/* =========================================================
   HERO SECTION (BACKGROUND IMAGE)
   ========================================================= */
.home-hero-section {
    position: relative;
    min-height: 90vh;
    padding: 4rem 1rem;
    overflow: hidden;

    /* Background Image */
    background: url('../images/home-image/home-page-hero-section.jpg') center center / cover no-repeat;
}

/* Optional dark overlay for better text visibility */
.home-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* Content above overlay */
.hero-content {
    position: relative;
    z-index: 2;
}

/* =========================================================
   HERO TITLE
   ========================================================= */
.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    animation: fadeUp 1s ease forwards;
}

.hero-title span {
    color: var(--accent-color);
}

/* =========================================================
   HERO SUBTITLE
   ========================================================= */
.hero-subtitle {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #e2e8f0;
    line-height: 1.8;
    animation: fadeUp 1s ease 0.2s forwards;
}

/* =========================================================
   HERO BUTTONS
   ========================================================= */
.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s ease 0.4s forwards;
}

/* =========================================================
   PRIMARY BUTTON
   ========================================================= */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--accent-color), #e5f04b);
    color: #000;
    border: none;
    padding: 0.9rem 2.4rem;
    font-weight: 600;
    border-radius: 0.6rem;
    text-decoration: none;
    transition: all 0.35s ease;
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    transform: translateY(-2px);
}

/* =========================================================
   OUTLINE BUTTON
   ========================================================= */
.btn-outline-custom {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 0.9rem 2.4rem;
    font-weight: 600;
    border-radius: 0.6rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--accent-color);
    color: #000;
    transform: translateY(-3px);
}

/* =========================================================
   ANIMATION
   ========================================================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
    .home-hero-section {
        padding: 3rem 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        gap: 1rem;
    }
}


/* ==============================================
   INTRO SECTION
   ============================================== */
.home-intro-section {
    background-color: var(--card-bg);
    padding: 5rem 0;
    position: relative;
}

.intro-image {
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s ease;
}

.intro-features {
    margin-top: 2rem;
}

.intro-features li {
    padding: 0.75rem 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    color: rgba(240, 240, 240, 0.9);
}

.feature-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: var(--accent-color) !important;
    color: var(--primary-bg) !important;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 1rem;
    font-weight: bold;
}

/* ==============================================
   SECTION TITLE & SUBTITLE
   ============================================== */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white-text);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(240, 240, 240, 0.7);
    margin-bottom: 3rem;
}

.section-description {
    font-size: 1rem;
    color: rgba(240, 240, 240, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ==============================================
   SERVICES OVERVIEW SECTION
   ============================================== */
.home-services-overview-section {
    /* Added dark background image */
    background: linear-gradient(
            135deg,
            rgba(15, 20, 25, 0.9) 0%,
            rgba(26, 31, 46, 0.9) 100%
        ),
        url("https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=800&fit=crop")
            center / cover;
    padding: 5rem 0;
}

.service-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    animation: fadeInUp 0.6s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white-text);
    margin-bottom: 1rem;
}

.service-card p {
    color: rgba(240, 240, 240, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--white-text);
    gap: 0.5rem;
}

/* ==============================================
   WHY CHOOSE SECTION
   ============================================== */
.home-why-choose-section {
    background-color: var(--primary-bg);
    padding: 5rem 0;
}

.why-choose-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
    border: 1px solid var(--border-color);
}

.why-choose-card:hover {
    background-color: var(--medium-gray);
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-choose-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white-text);
    margin-bottom: 0.75rem;
}

.why-choose-card p {
    color: rgba(240, 240, 240, 0.7);
    font-size: 0.9rem;
}

/* ==============================================
   TECH STACK SECTION
   ============================================== */
.home-tech-stack-section {
    /* Added dark background image */
    background: linear-gradient(
            135deg,
            rgba(15, 20, 25, 0.9) 0%,
            rgba(26, 31, 46, 0.9) 100%
        ),
        url("https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=1200&h=800&fit=crop")
            center / cover;
    padding: 5rem 0;
}

.tech-category {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.tech-category h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white-text);
    margin-bottom: 1.5rem;
    text-align: center;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.tech-badge {
    background-color: var(--medium-gray);
    color: var(--white-text);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

/* ==============================================
   RECENT WORKS SECTION
   ============================================== */
.home-recent-works-section {
    background-color: var(--primary-bg);
}

.works-tabs-container {
    text-align: center;
    margin-bottom: 3rem;
}

.tabs-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    color: var(--white-text);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.tab-btn:hover,
.tab-btn.active {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.work-card {
    background-color: var(--card-bg);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: fadeInUp 0.6s ease;
    border: 1px solid var(--border-color);
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.work-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-card:hover .work-image img {
    transform: scale(1.05);
}

.work-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white-text);
    padding: 1.5rem 1.5rem 0.5rem;
}

.work-card p {
    color: rgba(240, 240, 240, 0.7);
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Hide/Show logic for tabs */
.work-card {
    display: none;
}

.work-card.active {
    display: block;
}

/* ==============================================
   TESTIMONIALS SECTION
   ============================================== */
.home-testimonials-section {
    /* Added dark background image */
    background: linear-gradient(
            135deg,
            rgba(15, 20, 25, 0.9) 0%,
            rgba(26, 31, 46, 0.9) 100%
        ),
        url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1200&h=800&fit=crop")
            center / cover;
    padding: 5rem 0;
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stars {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: rgba(240, 240, 240, 0.8);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author strong {
    color: var(--white-text);
    font-weight: 600;
}

.testimonial-author p {
    color: var(--accent-color);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* ==============================================
   WORK PROCESS SECTION
   ============================================== */
.home-work-process-section {
    background-color: var(--card-bg);
    padding: 5rem 0;
}

.process-card {
    background-color: var(--medium-gray);
   padding: 35px 107px !important;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
    border: 1px solid var(--border-color);
}

.process-card:hover {
    background-color: var(--primary-bg);
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.process-card .custom{
    
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.process-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white-text);
    margin-bottom: 1rem;
}

.process-card p {
    color: rgba(240, 240, 240, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==============================================
   CTA SECTION
   ============================================== */
.home-cta-section {
    /* Added dark background image */
    background: linear-gradient(
            135deg,
            rgba(15, 20, 25, 0.95) 0%,
            rgba(26, 31, 46, 0.95) 100%
        ),
        url("https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=800&fit=crop")
            center / cover;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-title {
    color: white;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

/* ==============================================
   FOOTER SECTION
   ============================================== */
.home-footer-section {
    background: var(--card-bg);
    color: var(--white-text);
    padding: 70px 0 30px;
    border-top: 1px solid var(--border-color);
}

/* Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 140px;
    margin-bottom: 16px;
}

.footer-col h5 {
    color: var(--accent-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.9rem;
    color: rgba(240, 240, 240, 0.75);
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(240, 240, 240, 0.7);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 4px;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    margin-top: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    color: var(--white-text);
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    padding: 10px 18px;
    background: var(--accent-color);
    color: #000;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 0 4px 4px 0;
}

/* Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(240, 240, 240, 0.6);
}

/* Divider */
.footer-divider {
    border-color: var(--border-color);
    margin-bottom: 20px;
}

.footer-address p {
    font-size: 0.9rem;
    color: rgba(240, 240, 240, 0.75);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.footer-address i {
    font-size: 1rem;
}

.footer-social-icons {
    margin-top: 16px;
    display: flex;
    gap: 16px;
}

.footer-social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: var(--light-gray);
    color: var(--white-text);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
}

.footer-social-icons a:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-2px);
}

.footer-copy {
    text-align: center;
    width: 100%;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        border-radius: 4px;
    }
}

/* ==============================================
   ANIMATIONS
   ============================================== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==============================================
   RESPONSIVE DESIGN
   ============================================== */
@media (max-width: 991px) {
    .services-hero-section {
         width: 100% !important;
        height: auto !important;
        padding: 60px 20px !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
    }

    .about-hero-section {
      
         width: 100% !important;
        height: auto !important;
        padding: 60px 20px !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
    }
    .where-it-all-start {
          width: 100% !important;
        height: auto !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
    }

    .services-hero-section {
           width: 100% !important;
        height: auto !important;
        padding: 60px 20px !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
    }

    .career-hero-section {
        width: 100% !important;
        height: auto !important;
        padding: 60px 20px !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
    }

    .product-hero-section{
        width: 100% !important;
        height: auto !important;
        padding: 160px 20px !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
    }

    .contact-hero-section {
        width: 100% !important;
        height: auto !important;
        padding: 70px 20px !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
    }
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
    }

    .works-grid {
        grid-template-columns: 1fr;
    }

    .tabs-buttons {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 0 1rem;
    }

    .container-fluid {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .cta-title {
        font-size: 1.5rem;
    }
}
