*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #f6881d;
    --primary-orange: #f6881d;
    --secondary-color: #1a2332;
    --accent-color: #3b82f6;
    --text-light: #ffffff;
    --text-dark: #1a2332;
    --dark-text: #1a2332;
    --gray-text: #666666;
    --light-gray: #e0e0e0;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --solutions-primary: #ffffff;
    --solutions-secondary: #ffffff;
    --solutions-accent: #1a2332;
    --solutions-text: #666666;
    --solutions-border: #e0e0e0;
    --solutions-hover: #f5f5f5;
    --dark-blue: #1e3a5f;
    --light-text: #ffffff;
    --text-gray: #b0b8c4;
    --transition: all 0.3s ease;
    --accent: #f6881d;
    --text-muted: #666666;
    --border-color: #e0e0e0;
    --light-bg: #f5f5f5;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

body {
    background-color: #f8f9fa;
}

h1 {
    font-size: 3rem !important;
    /* 48px */
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: 2rem !important;
    /* 32px */
    line-height: 1.3;
    font-weight: 700;

}

h3 {
    font-size: 1.5rem !important;
    /* 24px */
    line-height: 1.35;
    font-weight: 700;

}

h4 {
    font-size: 1.25rem !important;
    /* 20px */
    line-height: 1.4;
    font-weight: 700;

}

h5 {
    font-size: 1.125rem !important;
    /* 18px */
    line-height: 1.45;
    font-weight: 700;

}

h6 {
    font-size: 1rem !important;
    /* 16px */
    line-height: 1.5;
}

/* Text Elements */
p {
    font-size: 0.875rem !important;
    line-height: 1.6;
}

.small {
    font-size: 0.875rem !important;
    /* 14px */
}

/* ===================================
   NAVIGATION BAR
   =================================== */

.navbar {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2332 100%) !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    width: 150px;
}

.brand-text {
    background: linear-gradient(135deg, #f6881d 0%, #ff9a76 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav-desktop {
    gap: 1rem;
}

.navbar-nav-desktop .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav-desktop .nav-link:hover {
    color: #f6881d !important;
}

.navbar-nav-desktop .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #f6881d 0%, #ff9a76 100%);
    transition: width 0.3s ease;
}

.navbar-nav-desktop .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.75rem;
    transition: var(--transition);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(217, 117, 96, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===================================
   OFFCANVAS MENU STYLING
   =================================== */

.offcanvas {
    width: 80% !important;
    max-width: 350px !important;
    background: linear-gradient(135deg, #2c3e50 0%, #1a2332 100%) !important;
}

.offcanvas-header {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2332 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

.offcanvas-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.offcanvas-body {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2332 100%);
    padding: 1.5rem;
}

.offcanvas .navbar-nav .nav-link {
    color: #ffffff !important;
    padding: 0.8rem 0;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    border-left: 3px solid transparent;
    padding-left: 1rem;
}

.offcanvas .navbar-nav .nav-link:hover {
    color: #f6881d !important;
    border-left-color: #f6881d;
    padding-left: 1.3rem;
}

.offcanvas .btn-close {
    background-color: #ffffff;
    opacity: 0.8;
    transition: var(--transition);
}

.offcanvas .btn-close:hover,
.offcanvas .btn-close:focus {
    opacity: 1;
    background-color: #f6881d;
}

.offcanvas-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

/* ===================================
   QUOTE BUTTON STYLING
   =================================== */

.quote-btn {
    border: 2px solid #ffffff;
    border-radius: 25px;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    transition: var(--transition);
    color: #ffffff !important;
    text-decoration: none;
    display: inline-block;
}

.quote-btn:hover {
    background-color: #f6881d;
    border-color: #f6881d;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.offcanvas .quote-btn {
    padding: 0.6rem 1.2rem;
}

.offcanvas .quote-btn:hover {
    transform: translateX(5px);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    min-height: 80vh;
    background: linear-gradient(135deg, #f6881d 0%, #c85a47 50%, #1a2332 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(98deg, rgba(252, 90, 17, 0.7) 12.15%, rgba(252, 90, 17, 0.75) 38.95%, rgba(0, 0, 0, 0.8) 71.17%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    animation: slideInLeft 0.8s ease-out;
}

.hero-title {
    font-size: 4rem !important;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem !important;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 700;
    opacity: 0.95;
}

.hero-description {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid #ffffff;
}

.hero-description p {
    color: #ffffff;
    font-size: 1rem !important;
    line-height: 1.6;
    opacity: 0.9;
}

.btn-get-started {
    background-color: #1a2332;
    color: #ffffff;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-get-started:hover {
    background-color: #ffffff;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* ===================================
   HERO IMAGE SECTION
   =================================== */

.hero-image-section {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0px;
    top: 50px;
    animation: slideInRight 0.8s ease-out;
}

.engineer-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.engineer-placeholder {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.engineer-placeholder img {
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

/* ===================================
   STAT CARDS
   =================================== */

.stat-card {
    position: absolute;
    background-color: #ffffff;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2332;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #1a2332;
    margin-top: 0.5rem;
    font-weight: 500;
}

.stat-card-24hrs {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.stat-card-500 {
    bottom: 20%;
    right: 5%;
    animation-delay: 0.5s;
}

.stat-card-98 {
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

/* ===================================
   SOLUTIONS SECTION
   =================================== */

.solutions-wrapper {
    padding: 5rem 0;
    background-color: #fbfbfb;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.solutions-header-block {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 0.8s ease-out;
}

.solutions-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--solutions-accent);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.solutions-main-title span {
    color: #f6881d;
}

.solutions-intro-text {
    font-size: 14px;
    color: var(--solutions-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.solutions-card-wrapper {
    display: flex;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.solutions-card-wrapper:nth-child(1) {
    animation-delay: 0.1s;
}

.solutions-card-wrapper:nth-child(2) {
    animation-delay: 0.2s;
}

.solutions-card-wrapper:nth-child(3) {
    animation-delay: 0.3s;
}

.solutions-feature-card {
    background-color: var(--solutions-secondary);
    padding: 2rem;
    width: 100%;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--solutions-border);
}

.solutions-feature-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
    background-color: #fffaf5 !important;
}

.solutions-feature-icon-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f6881d;
    margin: 0 0 14px 0;
    flex-shrink: 0;
}

.solutions-feature-icon-box i {
    font-size: 2rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solutions-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--solutions-accent);
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.solutions-card-description {
    font-size: 0.95rem;
    color: var(--solutions-text);
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

.solutions-features-list {
    list-style: none;
    flex-grow: 1;
    padding: 0;
    margin: 0;
}

.solutions-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: var(--solutions-text);
    transition: var(--transition);
}

.solutions-feature-item:last-child {
    margin-bottom: 0;
}

.solutions-feature-item:hover {
    color: var(--solutions-accent);
    transform: translateX(5px);
}

.solutions-list-icon {
    font-size: 0.7rem;
    margin-right: 1rem;
    color: var(--solutions-accent);
    font-weight: 700;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-label {
    color: #f6881d;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

/* .section-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background-color: #f6881d;
    margin-right: 15px;
} */

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 0;
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.icon-box {
    width: 80px;
    height: 80px;
    background-color: #1a2332;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 0 40px;
}

.icon-box i {
    font-size: 2.5rem;
    color: white;
}

.card-content {
    padding: 40px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 20px;
}

.card-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-list li {
    color: #1a2332;
    font-weight: 500;
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.service-list li::before {
    content: '›';
    color: #f6881d;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 10px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0;
    background-color: transparent;
    border: none;
    border-top: 2px solid #e0e0e0;
    color: #1a2332;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.view-more-btn .btn-icon {
    width: 45px;
    height: 45px;
    background-color: #1a2332;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.view-more-btn .btn-icon i {
    color: white;
    font-size: 1rem;
}

.view-more-btn:hover {
    color: #f6881d;
}

.view-more-btn:hover .btn-icon {
    background-color: #f6881d;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (min-width: 992px) {
    .navbar-nav-desktop {
        display: flex !important;
    }

    .navbar-toggler {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .navbar-nav-desktop {
        display: none !important;
    }

    .navbar-toggler {
        display: block !important;
    }

    .stat-card-500 {
        bottom: 40% !important;
        right: 5% !important;
        animation-delay: 0.5s;
    }

    .stat-card-98 {
        bottom: 50%;
        left: 12%;
        animation-delay: 1s;
    }

    .hero-image-section {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        bottom: 0px;
        top: -60px;
        animation: slideInRight 0.8s ease-out;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .engineer-placeholder img {
        max-height: 50vh;
    }

    .section-title {
        font-size: 2rem;
    }

    .icon-box {
        margin: 30px 0 0 30px;
    }

    .card-content {
        padding: 30px;
    }

    .hero-image-section {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        bottom: 0px;
        top: 0 !important;
        animation: slideInRight 0.8s ease-out;
    }

    .stat-card-500 {
        bottom: 20% !important;
        right: 5% !important;
        animation-delay: 0.5s;
    }

    .stat-card-98 {
        bottom: 37%;
        left: 25%;
        animation-delay: 1s;
    }

    .hero-image-section {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        bottom: 0px;
        top: -90px;
        animation: slideInRight 0.8s ease-out;
    }
}

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

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

    .navbar-brand {
        font-size: 1.4rem !important;
    }

    .solutions-main-title {
        font-size: 1.8rem;
    }

    .hero-image-section {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        bottom: 0px;
        top: 0 !important;
        animation: slideInRight 0.8s ease-out;
    }

    .stat-card {
        display: none;
    }
}



.project-card-wrapper {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.project-card-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.project-img-container {
    position: relative;
    overflow: hidden;
    padding-bottom: 75%;
}

.project-img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card-wrapper:hover .project-img-container img {
    transform: scale(1.05);
}

.project-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #f6881d;
    color: white;
    padding: 15px 20px;
    border-radius: 4px;
    z-index: 2;
}

.project-date-num {
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    display: block;
}

.project-date-text {
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

.project-content-area {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-meta-info {
    color: #999;
    font-size: 13px;
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.project-meta-info span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.project-heading {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.project-description {
    color: #7f8c8d;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.project-link-btn {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.project-link-btn:hover {
    color: #f6881d;
    gap: 15px;
}

.project-link-btn i {
    transition: transform 0.3s ease;
}

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

.project-tags-list .badge {
    font-size: 12px;
    padding: 8px 15px;
    font-weight: 500;
    border-radius: 20px;
}

.project-stats-box {
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    padding: 15px 0;
}

.project-stat-value {
    font-size: 20px;
    font-weight: bold;
    color: #f6881d;
    margin-bottom: 5px;
}

.project-stat-title {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 0;
}

.project-location-info {
    color: #6c757d;
    font-size: 14px;
}

.project-location-info i {
    color: #f6881d;
}

.heading-label {
    font-size: 14px;
    font-weight: 600;
    color: #f6881d;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    padding-left: 70px;
}

.heading-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 3px;
    background-color: #f6881d;
}

.case-study-heading {
    font-size: 56px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 20px;
    line-height: 1.2;
}

.case-section {
    padding: 80px 0;
}

.heading-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 0;
    max-width: 800px;
}

@media (max-width: 768px) {
    .project-img-container {
        padding-bottom: 60%;
    }

    .project-heading {
        font-size: 20px;
    }

    .project-date-badge {
        padding: 12px 16px;
    }

    .project-date-num {
        font-size: 28px;
    }

    .case-study-heading {
        font-size: 36px;
    }

    .heading-subtitle {
        font-size: 16px;
    }

    .heading-label {
        font-size: 12px;
        padding-left: 50px;
    }

    .heading-label::before {
        width: 35px;
    }
}

.contact-section {
    background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 60%);
    padding: 60px 30px;
    position: relative;
    overflow: visible;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.contact-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
    background: transparent;
    box-shadow: none;
    min-height: 700px;
}

.contact-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: transparent;
    border-right: none;
}

.label-tag {
    display: inline-block;
    color: #f6881d;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-left h1 {
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.contact-left>p {
    color: #888;
    font-size: 15px;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 95%;
}

.support-center {
    width: 470px;
    height: auto;
}

.support-center img {
    width: 100%;
    height: auto;
}

.support-center-label {
    color: #aaa;
    font-size: 12px;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.phone-number {
    font-size: 32px;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: -1px;
}

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

.info-item {
    background: #f4f4f4;
    padding: 16px;
}

.info-item h3 {
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.info-item p {
    color: #aaa;
    line-height: 1.7;
}

.contact-right {
    padding: 70px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    border-top: 5px solid #f6881d;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 0;
}

.form-control,
.form-select {
    border: 1px solid #e5e5e5;
    border-radius: 0;
    padding: 15px 16px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #333;
    width: 100%;
}

.form-control:focus,
.form-select:focus {
    border-color: #f6881d;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    outline: none;
}

.form-control::placeholder {
    color: #aaa;
}

textarea.form-control {
    resize: vertical;
    min-height: 160px;
    font-family: inherit;
    padding: 16px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 40px 0 35px 0;
}

.form-check-input {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid #ddd;
    cursor: pointer;
    margin-top: 0;
    flex-shrink: 0;
    transition: all 0.3s ease;
    appearance: none;
    background-color: white;
}

.form-check-input:checked {
    background-color: #f6881d;
    border-color: #f6881d;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 8l4 4 8-8'/%3e%3c/svg%3e");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.form-check-input:hover:not(:checked) {
    border-color: #f6881d;
}

.checkbox-wrapper label {
    margin-bottom: 0;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    line-height: 1.5;
    font-weight: 500;
}

.button-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 20px;
}

.submit-btn {
    background-color: #f6881d;
    border: none;
    padding: 15px 35px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-family: inherit;
    border-radius: 0;
}

.submit-btn:hover {
    background-color: #e55a23;
    transform: translateX(2px);
}

.submit-btn:active {
    background-color: #d14917;
    transform: translateX(0);
}

.arrow-icon {
    background-color: #1a1a1a;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    flex-shrink: 0;
}

.arrow-icon:hover {
    background-color: #333;
    transform: translateX(3px);
}

/* Tablet (1024px and below) */
@media (max-width: 1024px) {

    .contact-left h1 {
        font-size: 44px;
    }

    .phone-number {
        font-size: 36px;
    }

    .contact-info {
        gap: 50px;
        margin-bottom: 50px;
    }

    .contact-left>p {
        margin-bottom: 50px;
    }

    .support-center {
        width: 690px !important;
        height: auto !important;
    }
}

/* Tablet (768px and down) */
@media (max-width: 768px) {
    .contact-section {
        padding: 30px 20px;
        min-height: auto;
    }

    .contact-section::before {
        display: none;
    }

    .contact-container {
        grid-template-columns: 1fr;
        min-height: auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .contact-left {
        padding: 50px 30px;
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .contact-right {
        padding: 50px 30px;
    }

    .contact-left h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .contact-left>p {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .support-center {
        margin-bottom: 40px;
    }

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

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-control,
    .form-select {
        padding: 13px 14px;
        font-size: 13px;
    }

    textarea.form-control {
        min-height: 130px;
        padding: 14px;
    }

    .checkbox-wrapper {
        margin: 30px 0 25px 0;
        gap: 10px;
    }

    .form-check-input {
        width: 16px;
        height: 16px;
    }

    .button-wrapper {
        gap: 0;
    }

    .submit-btn {
        padding: 13px 25px;
        font-size: 11px;
    }

    .arrow-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .support-center {
        width: 660px !important;
        height: auto;
    }
}

/* Mobile (480px and down) */
@media (max-width: 480px) {
    .contact-section {
        padding: 20px 15px;
    }

    .contact-section::before {
        display: none;
    }

    .contact-left {
        padding: 40px 20px;
    }

    .contact-right {
        padding: 40px 20px;
    }

    .contact-left h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .label-tag {
        font-size: 10px;
        margin-bottom: 15px;
        letter-spacing: 1.5px;
    }

    .contact-left>p {
        font-size: 13px;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .support-center-label {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .phone-number {
        font-size: 26px;
    }

    .contact-info {
        gap: 20px;
        margin-top: 30px;
    }

    .info-item h3 {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .info-item p {
        font-size: 12px;
        line-height: 1.6;
    }

    .form-row {
        gap: 0;
    }

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

    .form-control,
    .form-select {
        padding: 12px 12px;
        font-size: 12px;
    }

    textarea.form-control {
        min-height: 100px;
        padding: 12px;
        font-size: 12px;
    }

    .checkbox-wrapper {
        margin: 25px 0 20px 0;
        gap: 8px;
    }

    .form-check-input {
        width: 16px;
        height: 16px;
        min-width: 16px;
    }

    .checkbox-wrapper label {
        font-size: 12px;
    }

    .submit-btn {
        padding: 12px 20px;
        font-size: 10px;
        letter-spacing: 1px;
    }

    .arrow-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .support-center {
        width: 320px !important;
        height: auto;
    }
}

/* Extra small (360px and below) */
@media (max-width: 360px) {
    .contact-left h1 {
        font-size: 24px;
    }

    .phone-number {
        font-size: 23px;
    }

    .label-tag {
        font-size: 9px;
    }

    .button-wrapper {
        gap: 0;
    }

    .submit-btn {
        padding: 11px 15px;
        font-size: 9px;
        letter-spacing: 0.5px;
    }

    .arrow-icon {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .support-center {
        width: 320px !important;
        height: auto;
    }
}



.page-content {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    color: #666;
    padding: 40px 20px;
}

footer {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c4a7c 50%, #1a2e4d 100%);
    padding: 60px 20px 0;
    position: relative;
    overflow: visible;
    width: 100%;
}

.footer-top {
    padding: 60px 20px;
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    width: 100%;
}

.footer-section-brand {
    display: flex;
    flex-direction: column;
    min-width: 200px;
}


.footer-logo img {
    width: 200px;
    margin-bottom: 10px;

}

.footer-logo::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #1a1a1a;
    border-radius: 50%;
    margin-right: 5px;
    flex-shrink: 0;
}

.footer-tagline {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff24;
    margin-bottom: 10px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.footer-copyright {
    font-size: 14px;
    color: #fff;
    line-height: 1.8;
    margin-top: 10px;
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 700;
    color: #f6881d;
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 0;
    margin-left: 0;
}

.footer-section ul li {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.footer-section ul li:hover {
    color: #f6881d;
    padding-left: 5px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #1a1a1a;
}

.footer-bottom {
    position: relative;
    padding: 30px 20px;
    border-top: 1px solid #666;
    width: 100%;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footer-bottom p {
    font-size: 13px;
    color: #fff;
    text-align: center;
}

.scroll-to-top {
    width: 50px;
    height: 50px;
    background: #ccff00;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 700;
    transition: all 0.3s ease;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #b8e600;
    transform: translateY(-3px);
}

.footer-bg-text {
    position: absolute;
    bottom: -260px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(120px, 30vw, 300px);
    font-weight: 800;
    color: rgba(200, 200, 200, 0.15);
    white-space: nowrap;
    z-index: 1;
    letter-spacing: -5px;
    pointer-events: none;
    width: 100%;
    text-align: center;
}

.footer-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: repeating-linear-gradient(90deg,
            #999 0,
            #999 2px,
            transparent 2px,
            transparent 8px);
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #1a1a1a;
    border-radius: 50%;
}

/* Extra small devices */
@media (max-width: 480px) {
    footer {
        padding: 40px 15px 0;
    }

    .footer-top {
        padding: 40px 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }

    .footer-section-brand {
        order: -1;
    }

    .footer-logo {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-tagline {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-section h3 {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .footer-section ul {
        gap: 10px;
    }

    .footer-section ul li {
        font-size: 12px;
    }

    .footer-copyright {
        font-size: 11px;
        margin-top: 30px;
    }

    .footer-bottom {
        padding: 25px 15px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        font-size: 16px;
        bottom: 20px;
        right: 20px;
    }

    .footer-bg-text {
        font-size: 100px;
        bottom: -260px;
    }
}

/* Small tablets */
@media (min-width: 481px) and (max-width: 768px) {
    footer {
        padding: 50px 20px 0;
    }

    .footer-top {
        padding: 50px 20px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .footer-section-brand {
        grid-column: 1 / -1;
        margin-bottom: 10px;
    }

    .footer-logo {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .footer-tagline {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .footer-bg-text {
        font-size: 150px;
        bottom: -260px;
    }
}

/* Tablets and larger */
@media (min-width: 769px) and (max-width: 1024px) {
    footer {
        padding: 60px 25px 0;
    }

    .footer-top {
        padding: 60px 25px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
    }

    .footer-section-brand {
        grid-column: 1 / -1;
    }

    .footer-bg-text {
        font-size: 200px;
        bottom: -270px;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    footer {
        padding: 80px 30px 0;
    }

    .footer-top {
        padding: 80px 30px;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
    }

    .footer-bg-text {
        font-size: 300px;
        bottom: -280px;
    }
}

/* ===================================
   PLAYFUL COLOR ENHANCEMENTS WITH GLASS EFFECTS
   Add this CSS to your existing styles.css file
   =================================== */

/* Enhanced Color Variables - Add these to your :root */
:root {
    --playful-orange: #f6881d;
    --light-orange: #ff8556;
    --soft-orange: #ffa07a;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 107, 53, 0.2);
}

/* ===================================
   GLASS MORPHISM EFFECTS ON CARDS
   =================================== */

/* Solutions Section - Glass effect cards */
.solutions-feature-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid transparent;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solutions-feature-card:hover {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 3px solid #f6881d;
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
    transform: translateY(-10px);
}

.solutions-feature-card:hover .solutions-card-title {
    color: #f6881d;
}

.solutions-feature-card:hover .solutions-list-icon {
    color: #f6881d;
    transform: scale(1.2);
}

/* Services Section - Glass effect cards */
.service-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid transparent;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 3px solid #f6881d;
    box-shadow: 0 15px 45px rgba(255, 107, 53, 0.2);
    transform: translateY(-8px);
}

.service-card:hover .icon-box {
    background-color: #f6881d;
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .card-title {
    color: #f6881d;
}

/* Case Study Cards - Glass effect */
.project-card-wrapper {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid transparent;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card-wrapper:hover {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 3px solid #f6881d;
    box-shadow: 0 15px 45px rgba(255, 107, 53, 0.2);
    transform: translateY(-8px);
}

.project-card-wrapper:hover .project-heading {
    color: #f6881d;
}

.project-card-wrapper:hover .project-stat-value {
    color: #f6881d;
}

.project-card-wrapper:hover .project-location-info i {
    color: #f6881d;
}

/* ===================================
   NAVBAR ENHANCEMENTS WITH LIGHT ORANGE
   =================================== */

/* Subtle orange hover effect on nav links */
.navbar-nav-desktop .nav-link:hover {
    color: #f6881d !important;
}

.navbar-nav-desktop .nav-link::after {
    background: #f6881d;
}

/* Playful quote button with glass effect */
.quote-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    background: #f6881d;
    border-color: #f6881d;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* ===================================
   HERO SECTION WITH GLASS EFFECTS
   =================================== */

/* Glass effect stat cards with light orange theme */
.stat-card {
    background: rgba(255, 255, 255, 0.23);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    color: #fff;
    border-top: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 3px solid #f6881d;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25);
    transform: translateY(-5px) scale(1.05);
}

.stat-card:hover .stat-number {
    color: #f6881d;
}

/* Playful get started button with glass effect */
.btn-get-started {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2332 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background: #f6881d;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.4);
}

/* ===================================
   CONTACT FORM GLASS EFFECT STYLING
   =================================== */

/* Glass effect on contact form */
.contact-right {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid #f6881d;
}

/* Input fields with glass effect */
.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.form-control:hover,
.form-select:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 107, 53, 0.3);
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.9);
    border-color: #f6881d;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Submit button with glass effect */
.submit-btn {
    background: #f6881d;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: rgba(255, 133, 86, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

/* Arrow icon with glass effect */
.arrow-icon {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.arrow-icon:hover {
    background: #f6881d;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* Checkbox with orange accent */
.form-check-input:checked {
    background-color: #f6881d;
    border-color: #f6881d;
}

.form-check-input:hover:not(:checked) {
    border-color: #f6881d;
}

/* ===================================
   FOOTER WITH GLASS EFFECT
   =================================== */

/* Scroll to top button with glass effect */
.scroll-to-top {
    background: rgba(255, 107, 53, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background: rgba(255, 133, 86, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.4);
}

/* Footer links with orange hover */
.footer-section ul li a:hover {
    color: #f6881d;
}

/* ===================================
   ADDITIONAL PLAYFUL GLASS ANIMATIONS
   =================================== */

/* Smooth glass transitions */
@keyframes glass-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Soft glow effect on hover */
@keyframes soft-glow {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(255, 107, 53, 0.15);
    }

    50% {
        box-shadow: 0 12px 40px rgba(255, 107, 53, 0.25);
    }
}

.solutions-feature-card:hover,
.service-card:hover,
.project-card-wrapper:hover {
    animation: soft-glow 2s ease-in-out infinite;
}

/* Glass shimmer effect */
@keyframes glass-shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.solutions-feature-card::before,
.service-card::before,
.project-card-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.solutions-feature-card:hover::before,
.service-card:hover::before,
.project-card-wrapper:hover::before {
    opacity: 1;
    animation: glass-shimmer 1.5s ease-in-out;
}

/* List icons smooth transition */
.solutions-list-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* View more button glass effect */
.view-more-btn:hover .btn-icon {
    background-color: #f6881d;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ===================================
   BACKGROUND ENHANCEMENTS
   =================================== */

/* Soft background for sections */
.solutions-wrapper {
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 50%, #fff8f5 100%);
}

.services-section {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
}

.case-section {
    background: linear-gradient(135deg, #fff8f5 0%, #ffffff 100%);
}

/* ===================================
   RESPONSIVE GLASS EFFECTS
   =================================== */

@media (max-width: 768px) {

    /* Maintain glass effects on mobile with better performance */
    .solutions-feature-card,
    .service-card,
    .project-card-wrapper {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .solutions-feature-card:hover,
    .service-card:hover,
    .project-card-wrapper:hover {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .contact-right {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

/* ===================================
   ACCESSIBILITY - MAINTAIN READABILITY
   =================================== */

/* Ensure text remains readable on glass backgrounds */
.solutions-feature-card,
.service-card,
.project-card-wrapper {
    position: relative;
}

/* High contrast for better readability */
.solutions-card-description,
.card-description,
.project-description {
    color: #333;
    font-weight: 500;
}

/* ===================================
   RESPONSIVE PLAYFUL ENHANCEMENTS
   =================================== */

@media (max-width: 768px) {

    /* Simplified gradients for better performance */
    .hero-section {
        background: linear-gradient(135deg, #f6881d 0%, #8B5CF6 100%);
    }
}

/* ===================================
   ACCESSIBILITY - MAINTAIN CONTRAST
   =================================== */

/* Ensure text remains readable on colorful backgrounds */
.stat-card-24hrs,
.stat-card-500,
.stat-card-98 {
    font-weight: 600;
}

/* High contrast for links */
.footer-section ul li a {
    font-weight: 500;
}

/* ===================================
   PRINT STYLES - REMOVE COLORS
   =================================== */

@media print {

    .brand-text,
    .btn-get-started,
    .quote-btn,
    .stat-card,
    .submit-btn,
    .arrow-icon,
    .scroll-to-top {
        background: #ffffff !important;
        color: #000000 !important;
    }
}

.feature-section {
    padding: 5rem 0;
}

.feature-header {
    text-align: center;
    margin-bottom: 30px;
}

.feature-header h2 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.feature-header p {
    color: #64748b;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.toggle-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 30px;
    flex-wrap: wrap;
    border: none;
    background: #f1f5f9;
    padding: 0.5rem;
    /* border-radius: 0.75rem; */
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: #64748b;
    padding: 0.75rem 2rem;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.4px;
    position: relative;
    /* border-radius: 0.625rem; */
}

.toggle-btn:hover {
    color: #0f172a;
}

.toggle-btn.active {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
}

.content-section {
    animation: fadeInSoft 0.5s ease-out;
}

@keyframes fadeInSoft {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-title-block {
    text-align: center;
    margin-bottom: 3.75rem;
}

.feature-title-block h2 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.feature-title-block p {
    color: #64748b;
    font-weight: 400;
}

.feature-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    /* border-radius: 0.75rem; */
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f6881d, #ffb74d);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-0.375rem);
    border-color: #cbd5e1;
    box-shadow: 0 0.75rem 1.5rem rgba(15, 23, 42, 0.08);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-icon-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    /* border-radius: 0.75rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f6881d;
    margin: 0 auto 1.5rem;
    flex-shrink: 0;
}

.feature-icon-box i {
    font-size: 2rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-badge-num {
    color: #f1f5f9;
    font-weight: 700;
    position: absolute;
    top: 0.75rem;
    right: 1.25rem;
    z-index: 0;
    opacity: 0.8;
}

.feature-item h3 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    flex-grow: 0;
    font-size: 18px;
}

.feature-item p {
    color: #64748b;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    font-weight: 400;
    flex-grow: 1;
}

.portfolio-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    /* border-radius: 0.75rem; */
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #f6881d;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.portfolio-item:hover {
    transform: translateY(-0.375rem);
    border-color: #cbd5e1;
    box-shadow: 0 0.75rem 1.5rem rgba(15, 23, 42, 0.08);
}

.portfolio-item:hover::before {
    transform: scaleX(1);
}

.portfolio-location-tag {
    text-align: right;
    color: #94a3b8;
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.4px;
}

.portfolio-icon-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    /* border-radius: 0.75rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f6881d;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.portfolio-icon-box i {
    font-size: 1.75rem;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-item h3 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.portfolio-item p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
    flex-grow: 1;
}

.skill-tag-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.skill-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.5rem 1rem;
    /* border-radius: 0.375rem; */
    font-weight: 600;
    border: 1px solid #e2e8f0;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.skill-tag:hover {
    background: #f6881d;
    color: #ffffff;
    border-color: #f6881d;
}

.info-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.metric-info {
    text-align: center;
    padding-top: 1.25rem;
    border-top: 1px solid #e2e8f0;
}

.metric-info-value {
    font-weight: 700;
    color: #f6881d;
    margin-bottom: 0.375rem;
}

.metric-info-label {
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

@media (max-width: 768px) {
    .feature-section {
        padding: 3rem 0;
    }

    .feature-header {
        margin-bottom: 3rem;
    }

    .toggle-nav {
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .toggle-btn {
        padding: 0.75rem 1.5rem;
    }

    .feature-title-block {
        margin-bottom: 2.5rem;
    }

    .feature-item,
    .portfolio-item {
        padding: 2rem 1.5rem;
    }

    .info-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .feature-section {
        padding: 2.5rem 0;
    }

    .feature-header {
        margin-bottom: 2.5rem;
    }

    .toggle-btn {
        padding: 0.75rem 1rem;
    }

    .feature-item,
    .portfolio-item {
        padding: 1.5rem 1rem;
    }

    .toggle-nav {
        gap: 0.75rem;
        margin-bottom: 2.5rem;
    }

    .feature-title-block {
        margin-bottom: 2rem;
    }
}


/* Initial state for elements - hidden before animation */
.fade-in-up,
.fade-in-left,
.fade-in-right,
.fade-in-down,
.scale-in,
.slide-in-left,
.slide-in-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fade in from bottom */
.fade-in-up {
    transform: translateY(60px);
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in from left */
.fade-in-left {
    transform: translateX(-60px);
}

.fade-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in from right */
.fade-in-right {
    transform: translateX(60px);
}

.fade-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in from top */
.fade-in-down {
    transform: translateY(-60px);
}

.fade-in-down.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Scale in */
.scale-in {
    transform: scale(0.8);
}

.scale-in.animated {
    opacity: 1;
    transform: scale(1);
}

/* Slide in from left */
.slide-in-left {
    transform: translateX(-100px);
}

.slide-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Slide in from right */
.slide-in-right {
    transform: translateX(100px);
}

.slide-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger animation delays */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

/* Page load animation */
.page-loading {
    opacity: 0;
}

.page-loaded {
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #1a2332 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #f6881d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Parallax effect */
.parallax {
    transition: transform 0.1s ease-out;
}



.cta-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c4a7c 50%, #1a2e4d 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 152, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-container {
    position: relative;
    z-index: 1;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

.cta-headline h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--light-text);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
    animation: slideDown 0.8s ease-out;
}

.cta-headline p {
    font-size: 15px !important;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 100%;
    animation: slideUp 0.8s ease-out 0.2s backwards;
    font-weight: 400;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeIn 0.8s ease-out 0.4s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.cta-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-btn-primary {
    background: #f6881d;
    color: var(--light-text);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}

.cta-btn-primary:hover {
    background: #e68900;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 152, 0, 0.4);
    color: var(--light-text);
}

.cta-btn-primary:active {
    transform: scale(0.98);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.cta-btn-secondary:hover {
    background: var(--light-text);
    color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
}

.cta-btn i {
    font-size: 1.1rem;
}

.cta-footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2.5rem;
    animation: fadeIn 0.8s ease-out 0.6s backwards;
}

.cta-contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray);
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.cta-contact-detail i {
    font-size: 1.3rem;
    color: #f6881d;
}

.cta-contact-detail a {
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition);
}

.cta-contact-detail a:hover {
    color: #f6881d;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 3.5rem 1.5rem;
    }

    .cta-content {
        gap: 2rem;
    }

    .cta-buttons {
        gap: 1rem;
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .cta-footer-info {
        gap: 1.5rem;
        margin-top: 2rem;
        flex-direction: column;
    }

    .cta-contact-detail {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 2.5rem 1rem;
    }

    .cta-headline h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .cta-headline p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .cta-content {
        gap: 1.5rem;
    }

    .cta-buttons {
        gap: 0.75rem;
    }

    .cta-btn {
        padding: 0.85rem 1.2rem;
        font-size: 0.85rem;
        gap: 0.4rem;
    }

    .cta-btn i {
        font-size: 0.9rem;
    }

    .cta-footer-info {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .cta-contact-detail {
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .cta-contact-detail i {
        font-size: 1.1rem;
    }
}


#loader {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 1021;
    background: rgb(255, 255, 255);
}

.loader {
    position: relative;
    display: block;
    width: 175px;
    height: 60px;
    margin: 25% auto 0;
}

.feature-icon-1 {
    color: var(--accent);
    font-size: 12px;
    /* flex-shrink: 0; */
    gap: 20px;
    padding: 0 10px 0px 0px;
}

.loader span {
    position: absolute;
    color: #fff;
    /* transform: translate(-50%, -50%); */
    font-size: 38px;
    letter-spacing: 5px;
}

.loader span:nth-child(1) {
    color: transparent;
    -webkit-text-stroke: 0.3px #f6881d;
}

.loader span:nth-child(2) {
    color: #f6881d;
    -webkit-text-stroke: 1px #f6881d;
    animation: uiverse723 3s ease-in-out infinite;
}

@keyframes uiverse723 {

    0%,
    100% {
        clip-path: polygon(0% 45%, 15% 44%, 32% 50%,
                54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
    }

    50% {
        clip-path: polygon(0% 60%, 16% 65%, 34% 66%,
                51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
    }
}


/*About us*/

.about-hero {
    background-image: url("images/3.png");
    display: flex;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(47, 47, 47, 0.9) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 10;
}

.about-hero h1 {
    font-weight: 700;
    padding: 100px 32px 100px;
    /* letter-spacing: 8px; */
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--accent) 0%, #e07a15 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* margin-bottom: 2rem; */
    animation: fadeInDown 1s ease-out;
}

.about-hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent);
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ===== SECTION STYLES ===== */

.accent-line {
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin-bottom: 2rem;
    border-radius: 2px;
}

.text-muted-custom {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.9;
}

/* ===== OUR STORY SECTION ===== */
#story {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 6rem 0;
}

.story-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: 350px;
    display: block;
    filter: brightness(1);
    transition: all 0.6s ease;
    object-fit: cover;
}

.story-image:hover img {
    filter: brightness(1.05);
    transform: scale(1.02);
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

#story h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    color: #1a1a1a;
}

#mission h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    color: #1a1a1a;
}

#difference h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    color: #1a1a1a;
}

#services h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    color: #1a1a1a;
}

.feature-icon {
    color: var(--accent);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.feature-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== MISSION SECTION ===== */
#mission {
    background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
    padding: 6rem 0;
}

.mission-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 4px;
    filter: brightness(1);
    transition: all 0.6s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.mission-image:hover img {
    filter: brightness(1.2);
}

.value-box {
    background: linear-gradient(135deg, rgba(246, 136, 29, 0.08) 0%, rgba(246, 136, 29, 0.03) 100%);
    border-left: 3px solid var(--accent);
    border: 1px solid rgba(246, 136, 29, 0.15);
    padding: 1.5rem;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.value-box:hover {
    background: linear-gradient(135deg, rgba(246, 136, 29, 0.12) 0%, rgba(246, 136, 29, 0.06) 100%);
    box-shadow: 0 5px 20px rgba(246, 136, 29, 0.15);
}

.value-box h5 {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== DIFFERENCE SECTION ===== */
#difference {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 6rem 0;
}

.difference-card {
    position: relative;
    padding: 2.5rem;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.4s ease;
    overflow: hidden;
    margin-bottom: 2rem;
}

.difference-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.difference-card:hover {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.difference-card:hover::before {
    transform: scaleX(1);
}

.difference-card h4 {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.difference-card i {
    color: var(--accent);
    font-size: 1.8rem;
    min-width: 2rem;
}

.difference-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===== SERVICES SECTION ===== */
#services {
    background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
    padding: 6rem 0;
}

.service-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 4px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(246, 136, 29, 0.08), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.service-item:hover::after {
    left: 100%;
}

.service-item:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(246, 136, 29, 0.12);
}

.service-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 1rem;
    opacity: 0.6;
}

.service-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}






/*Our Services*/



.services-label {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.services-title {
    color: var(--dark-color);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}

.services-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.services-item.active {
    padding-left: 16px;
}

.services-item.active .services-text {
    color: var(--primary-color);
    font-weight: 700;
}

.services-arrow {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.services-text {
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.services-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.services-btn:hover {
    background-color: #e85a1f;
    transform: scale(1.05);
    color: white;
}

.services-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 350px;
    display: none;
}

.services-image.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

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

.services-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    padding: 30px;
    color: white;
}

.services-overlay-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.services-overlay-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.services-learn-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.services-learn-btn:hover {
    background-color: #e85a1f;
    transform: scale(1.05);
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



/*Services Detail page*/

.go-back-link {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.go-back-link:hover {
    gap: 12px;
    color: #e85a1f;
}

.service-image-container {
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    margin-bottom: 40px;
    height: 500px;
    object-fit: cover;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-heading {
    color: var(--dark-color);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.subheading {
    color: var(--dark-color);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 40px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.services-list li {
    color: #333;
    font-size: 16px;
    padding: 4px 0;
    padding-left: 30px;
    position: relative;
}

.services-list li:before {
    content: "•";
    color: var(--primary-color);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -2px;
}

.services-form-wrapper {
    position: relative;
}

.services-form-container {
    background-color: var(--secondary-color);
    border-radius: 12px;
    padding: 30px;
    color: white;
}

@media (min-width: 992px) {
    .services-form-wrapper {
        position: sticky;
        top: 20px;
        height: fit-content;
    }
}

@media (max-width: 991px) {
    .services-form-wrapper {
        position: relative;
        top: auto;
    }
}

.services-form-title {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.services-form-group {
    margin-bottom: 20px;
}

.services-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.services-form-group input,
.services-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
}

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

.services-accordion-item {
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.services-accordion-button {
    background-color: white;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    padding: 20px;
    border: 1px solid #ddd;
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

.services-accordion-button:not(.collapsed) {
    background-color: white;
    color: var(--secondary-color);
    box-shadow: none;
    border: 1px solid #ddd;
    outline: none;
}

.services-accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.services-accordion-body {
    padding: 20px;
    color: #666;
    line-height: 1.8;
    border: 1px solid #ddd;
    border-top: none;
    background-color: white;
}

.services-faq-section {
    margin-top: 60px;
}

.services-faq-title {
    color: var(--secondary-color);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.services-faq-subtitle {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .services-form-container {
        padding: 25px;
        margin-top: 40px;
    }

    .service-image-container {
        margin-bottom: 30px;
    }

    .services-go-back-link {
        margin-bottom: 30px;
    }
}



/*Projects Page*/


.project-card {
    margin-bottom: 4rem;
}

.project-image {
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.project-image img {
    width: 100%;
    display: block;
    transition: transform 0.3s;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.project-image:hover img {
    transform: scale(1.05);
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.project-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.read-more {
    color: #e85a1f;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(4px);
}

.see-all {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.see-all:hover {
    color: #000;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.clients-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.client-logo {
    opacity: 0.6;
    transition: opacity 0.3s;
}

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

.client-logo img {
    max-width: 150px;
    display: block;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 2rem;
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ddd;
}

.author-info h6 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.author-role {
    color: #999;
    font-size: 0.85rem;
}

/* Responsive */

@media (max-width: 768px) {

    .projects-section,
    .clients-section,
    .testimonials-section {
        padding: 60px 0;
    }

    .project-card {
        margin-bottom: 3rem;
    }

    .clients-grid {
        gap: 1rem;
    }

    .client-logo img {
        max-width: 120px;
    }
}



/* carousel */


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

.brand-section h2 {
    color: #1a3a52;
    font-size: 2rem;
    margin-bottom: 10px;
}

.brand-section p {
    color: #666;
    font-size: 16px;
}

.brand-carousel {
    background: white;
    padding: 40px 20px;
}

.brands-logo {
    background: white;
    padding-top: 40px;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    margin: 10px;
    border-radius: 8px;
    background-color: #f0f0f0;
    aspect-ratio: 16 / 9;
}

.brand-item img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.brand-item span {
    color: #333;
    font-weight: 600;
    font-size: clamp(14px, 4vw, 18px);
}

.author-avatar img {
    display: block;
    width: 100%;
    height: 50px !important;
    object-fit: cover !important;
    border-radius: 50px !important;
}







/*Prokect detail page*/


/* Animations */
@keyframes fadeUpEntry {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes expandScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.elem-fade {
    opacity: 1;
}

.elem-fade.visible {
    animation: fadeUpEntry 0.8s ease-out forwards;
}

.elem-left {
    opacity: 1;
}

.elem-left.visible {
    animation: slideFromLeft 0.8s ease-out forwards;
}

.elem-right {
    opacity: 1;
}

.elem-right.visible {
    animation: slideFromRight 0.8s ease-out forwards;
}

.elem-scale {
    opacity: 1;
}

.elem-scale.visible {
    animation: expandScale 0.8s ease-out forwards;
}

/* Hero Section */
.hero-wrapper {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-shade);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.intro-text {
    color: var(--medium-text);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.description-para {
    color: var(--medium-text);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.spec-details {
    margin-top: 2rem;
}

.spec-row {
    margin-bottom: 1.5rem;
}

.spec-tag {
    font-size: 0.85rem;
    color: var(--medium-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.spec-content {
    font-size: 1rem;
    color: var(--dark-text);
    font-weight: 500;
}

.main-img {
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
}

.main-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery Section */
.gallery-wrapper {
    background-color: var(--light-bg);
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-shade);
    margin-bottom: 3rem;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-thumb {
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
}

.gallery-thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    cursor: pointer;
    height: 400px;
    object-fit: cover;
}

.gallery-thumb:hover img {
    transform: scale(1.05);
}

.gallery-thumb-l {
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
}

.gallery-thumb-l img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    cursor: pointer;
    object-fit: cover;
}

.gallery-thumb-l:hover img {
    transform: scale(1.05);
}

/* Lightbox Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeUpEntry 0.3s ease-out;
}

.modal-overlay.active {
    display: flex;
}

.modal-inner {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.modal-inner img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

.modal-exit-btn {
    position: absolute;
    top: 0px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 2001;
}

.modal-exit-btn:hover {
    color: var(--accent-tone);
}

/* Responsive */
@media (max-width: 768px) {
    .main-heading {
        font-size: 2.5rem;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .main-heading {
        font-size: 2rem;
    }

    .description-para {
        font-size: 1rem;
    }

    .spec-row {
        padding: 0.5rem;
    }

    .hero-wrapper {
        padding: 2rem 0;
    }

    .gallery-wrapper {
        padding: 2rem 0;
    }
}


/*Contact us*/

.contact-support-center {
    width: auto;
    height: 300px;
}

.contact-support-center img {
    width: 100%;
    height: 300px;
}

.contact-us-section {
    background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 60%);
    padding: 60px 30px;
    /* position: relative; */
    /* overflow: visible; */
    /* min-height: 80vh; */
    /* display: flex; */
    /* align-items: center; */
}






.card-wrapper {
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: slideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    height: -webkit-fill-available;
}

.a-card-wrapper {
    outline: none;
    text-decoration: none;
    color: inherit;
}

.card-wrapper:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    background-color: #fffaf5 !important;
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff9500 0%, #ffb84d 100%);
    margin-bottom: 10px;
    box-shadow: 0 8px 20px rgba(255, 149, 0, 0.25);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease;
    cursor: pointer;
}

.icon-wrapper:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 149, 0, 0.35);
}

.icon-wrapper:active {
    transform: translateY(-4px) scale(0.98);
}

.icon-wrapper svg {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 2;
    transition: stroke 0.3s ease;
}

.card-title {
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.card-wrapper:hover .card-title {
    color: #ff9500;
}

.card-description {
    font-size: 16px;
    color: #5a7a8a;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.tools-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    MARGIN-TOP: 20PX;
}

.tool-badge {
    background: #2d3e50;
    color: white;
    padding: 2px 5px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border: 2px solid #2d3e50;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.tool-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.tool-badge:hover::before {
    width: 300px;
    height: 300px;
}

.tool-badge:hover {
    background: #ff9500;
    border-color: #ff9500;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 149, 0, 0.4);
    color: white;
}

.tool-badge:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 149, 0, 0.3);
}

.tool-badge:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.2);
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for tool badges */
.tool-badge:nth-child(1) {
    animation: slideIn 0.6s 0.1s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.tool-badge:nth-child(2) {
    animation: slideIn 0.6s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.tool-badge:nth-child(3) {
    animation: slideIn 0.6s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.tool-badge:nth-child(4) {
    animation: slideIn 0.6s 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.tool-badge:nth-child(5) {
    animation: slideIn 0.6s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

/* Bootstrap responsive adjustments */
@media (max-width: 768px) {
    .card-wrapper {
        padding: 30px 20px;
    }

    .card-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .card-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }

    .icon-wrapper svg {
        width: 35px;
        height: 35px;
    }

    .tools-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .tool-badge {
        padding: 2px 5px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .card-wrapper {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .card-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .card-description {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .icon-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }

    .tools-grid {
        gap: 10px;
    }

    .tool-badge {
        padding: 2px 5px;
        font-size: 12px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


.FAQ-header-section {
    background-color: #f5f5f5;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.FAQ-header-section h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #000;
    letter-spacing: -2px;
    margin: 0;
}

.FAQ-right-section {
    background-color: #fff;
    padding: 60px 50px;
    overflow-y: auto;
}

.FAQ-faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.FAQ-faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 25px 0;
    cursor: pointer;
}

.FAQ-faq-item:last-child {
    border-bottom: none;
}

.FAQ-faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.FAQ-faq-header:hover {
    color: #333;
}

.FAQ-faq-title {
    font-weight: 700;
    margin: 0;
    text-align: left;
}

.FAQ-faq-title:hover {
    color: #e07a15;
}

.FAQ-faq-icon {
    width: 30px;
    height: 30px;
    margin-left: 15px;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.FAQ-faq-item.FAQ-active .FAQ-faq-icon {
    transform: rotate(45deg);
}

.FAQ-faq-item.FAQ-active .FAQ-faq-content {
    max-height: 500px;
    margin-top: 20px;
}

.FAQ-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #777;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-top: 15px;
}



.FAQ-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.FAQ-close-btn:hover {
    color: #333;
}

@media (max-width: 768px) {
    .FAQ-header-section {
        min-height: 200px;
    }

    .FAQ-right-section {
        padding: 40px 20px;
    }

    .FAQ-header-section h1 {
        font-size: 3rem;
    }

    .FAQ-close-btn {
        top: 15px;
        right: 15px;
    }
}