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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* ===== MOBILE HEADER FIXES ===== */

/* Header Styles - Enhanced for Mobile */
header {
    background: transparent;
    border: none;
    box-shadow: none;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

/* Header when scrolled */
header.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo Styles */
.logo img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
    /* White logo by default */
}

/* When scrolled, show original logo color */
header.scrolled .logo img {
    filter: none;
    /* Original color when scrolled */
}

.logo img:hover {
    transform: scale(1.05);
}

/* Navigation Styles */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

/* When scrolled, change to dark text */
header.scrolled .main-nav a {
    color: #333;
}

.main-nav a:hover {
    color: #FED975;
}

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

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

/* CTA Button Styles */
.cta-button {
    background: #FED975;
    color: #333;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.cta-button:hover {
    background: #F2C94C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 217, 117, 0.3);
}

/* ===== MOBILE STYLES - FIXED ===== */
@media (max-width: 768px) {

    /* Header container fixes */
    header .container {
        padding: 0 15px;
    }

    /* Hide desktop navigation and CTA on mobile */
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 100px;
        transition: left 0.4s ease;
        z-index: 999;
    }

    .main-nav.active {
        left: 0;
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        width: 100%;
        padding: 0 20px;
    }

    .main-nav a {
        font-size: 1.3rem;
        color: white !important;
        padding: 15px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: block;
        width: 100%;
    }

    .main-nav a:hover {
        color: #FED975 !important;
        background: rgba(254, 217, 117, 0.1);
        transform: translateX(10px);
    }

    /* Hide header CTA on mobile */
    .header-cta {
        display: none;
    }

    /* Hamburger Menu - Fixed */
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 8px;
        background: transparent;
        border: none;
        z-index: 1001;
        position: relative;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: white;
        margin: 3px 0;
        transition: 0.4s;
        border-radius: 2px;
        display: block;
    }

    /* When scrolled, change to dark hamburger */
    header.scrolled .hamburger span {
        background: #333;
    }

    /* Hamburger Animation - Fixed */
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
        background: white;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
        background: white;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Logo size adjustment for mobile */
    .logo img {
        height: 50px;
    }

    header.scrolled .logo img {
        filter: none;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 45px;
    }

    .hamburger {
        padding: 6px;
    }

    .hamburger span {
        width: 22px;
        height: 2.5px;
    }

    .main-nav {
        padding-top: 80px;
    }

    .main-nav a {
        font-size: 1.2rem;
        padding: 12px 15px;
    }
}

/* Hero Section Styles - Slider */
.hero {
    margin-top: 0;
    height: 100vh;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Different backgrounds for each slide */
.hero-slide:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        url('resources/hero2.jpg') center/cover no-repeat;
    z-index: -1;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.hero-slide:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        url('resources/hero1.jpeg') center/cover no-repeat;
    z-index: -1;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.hero-slide:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        url('resources/hero3.jpg') center/cover no-repeat;
    z-index: -1;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin-left: 100px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
    color: #FED975;
}

.hero-content p {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
    font-weight: 500;
}

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

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

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

.dot:hover {
    background: #FED975;
}

/* Slider Arrows */
.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
    transform: translateY(-50%);
}

.arrow {
    background: transparent;
    color: #FED975;
    border: none;
    font-size: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 10px;
}

.arrow:hover {
    color: #ffffff;
    transform: scale(1.2);
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-content p {
        font-size: 1.6rem;
    }
}

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

    .hero-content p {
        font-size: 1.4rem;
    }

    .hero {
        height: 80vh;
    }

    .hero-container {
        margin-left: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-slide::before {
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }

    .arrow {
        font-size: 40px;
    }
}

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

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero {
        height: 70vh;
    }

    .hero-slide::before {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .arrow {
        font-size: 35px;
    }
}

/* Two Column Section */
.two-column-section {
    padding: 100px 0;
    background: #ffffff;
}

.columns-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Left Column */
.left-column h2 {
    font-size: 4rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
}

/* Right Column */
.right-column h3 {
    font-size: 2.2rem;
    color: #FED975;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.right-column p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    /* Changed from yellow to gray for better readability */
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.right-column ul {
    list-style: none;
    padding: 0;
}

.right-column li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    /* Changed from yellow to gray for better readability */
    margin-bottom: 0.8rem;
    padding-left: 25px;
    position: relative;
}

.right-column li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FED975;
    /* Keep checkmarks yellow */
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive Two Column Section */
@media (max-width: 1024px) {
    .columns-container {
        gap: 60px;
    }

    .left-column h2 {
        font-size: 3.2rem;
    }

    .right-column h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .two-column-section {
        padding: 80px 0;
    }

    .columns-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .left-column h2 {
        font-size: 2.8rem;
    }

    .right-column h3 {
        font-size: 1.8rem;
    }

    .right-column p,
    .right-column li {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .two-column-section {
        padding: 60px 0;
    }

    .columns-container {
        gap: 40px;
    }

    .left-column h2 {
        font-size: 2.4rem;
    }

    .right-column h3 {
        font-size: 1.6rem;
    }
}

/* Scroll Animation Styles */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out;
}

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

/* Services Section - Slider Version */
.services-section {
    padding: 100px 0;
    background: #f8f9fa;
    overflow: hidden;
}

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

.services-header h2 {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-header p {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Slider */
.services-slider {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    margin-bottom: 50px;
}

.services-track {
    display: flex;
    gap: 40px;
    animation: slide-services 40s linear infinite;
}

.service-slide {
    flex: 0 0 auto;
    width: 280px;
    height: 250px;
    text-align: center;
    padding: 60px 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    justify-content: flex-start;
    align-items: center;
    padding-top: 70px;
}


.service-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #FED975;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-slide:hover::before {
    transform: scaleX(1);
}

/* Service Icons with Secondary Color */
.service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(67%) sepia(64%) saturate(413%) hue-rotate(3deg) brightness(103%) contrast(101%);
    transition: all 0.3s ease;
}

.service-slide:hover .service-icon img {
    transform: scale(1.2);
    filter: brightness(0) saturate(100%) invert(59%) sepia(65%) saturate(450%) hue-rotate(3deg) brightness(95%) contrast(101%);
}

.service-slide h3 {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Update slider animation for larger boxes */
@keyframes slide-services {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-280px * 8 - 40px * 8));
        /* Updated for 280px boxes */
    }
}


/* Pause animation on hover */
.services-slider:hover .services-track {
    animation-play-state: paused;
}

/* Services CTA */
.services-cta {
    text-align: center;
}

.services-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .services-track {
        animation: slide-services 30s linear infinite;
    }
}

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

    .services-header h2 {
        font-size: 2.8rem;
    }

    .services-header p {
        font-size: 1.1rem;
    }

    .service-slide {
        width: 220px;
        height: 200px;
        padding: 50px 20px 30px;
        justify-content: flex-start;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 40px;
    }

    .service-slide h3 {
        font-size: 1.1rem;
    }

    .services-track {
        gap: 30px;
        animation: slide-services 25s linear infinite;
    }
}

@media (max-width: 480px) {
    .services-header h2 {
        font-size: 2.4rem;
    }

    .service-slide {
        width: 200px;
        height: 190px;
        padding: 40px 20px 25px;
        justify-content: flex-start;
    }

    .service-icon {
        margin: 0 auto 35px;
    }

    .service-slide h3 {
        font-size: 1rem;
    }

    .services-track {
        gap: 20px;
        animation: slide-services 20s linear infinite;
    }
}

/* Hosting Partners Section */
.hosting-partners {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

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

.partners-header h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.partners-header p {
    font-size: 1.2rem;
    color: #666;
}

.partners-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.partners-track {
    display: flex;
    animation: slide 40s linear infinite;
    gap: 60px;
}

.partner-logo {
    flex-shrink: 0;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(0);
    /* Black and white */
    opacity: 0.7;
}

.partner-logo:hover img {
    filter: grayscale(0%) brightness(1);
    /* Full color on hover */
    opacity: 1;
    transform: scale(1.1);
}

/* Slide animation */
@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% / 2));
        /* Half because we duplicated the logos */
    }
}

/* Pause animation on hover */
.partners-carousel:hover .partners-track {
    animation-play-state: paused;
}

/* Responsive Hosting Partners */
@media (max-width: 768px) {
    .hosting-partners {
        padding: 60px 0;
    }

    .partners-header h2 {
        font-size: 2.5rem;
    }

    .partners-header p {
        font-size: 1.1rem;
    }

    .partner-logo {
        padding: 15px 30px;
    }

    .partner-logo img {
        height: 50px;
    }

    .partners-track {
        gap: 40px;
        animation: slide 30s linear infinite;
        /* Faster on mobile */
    }
}

@media (max-width: 480px) {
    .partners-header h2 {
        font-size: 2rem;
    }

    .partner-logo {
        padding: 10px 20px;
    }

    .partner-logo img {
        height: 40px;
    }

    .partners-track {
        gap: 30px;
        animation: slide 25s linear infinite;
        /* Even faster on small screens */
    }
}

/* Commitments Section - Multiple Boxes Slider */
.commitments-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.commitments-header h2 {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.commitments-header p {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.commitments-slider {
    position: relative;
    overflow: hidden;
    padding: 0 80px;
    /* Space for arrows */
}

.commitments-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

.commitment-slide {
    flex: 0 0 calc(33.333% - 20px);
    background: #ffffff;
    padding: 60px 40px;
    /* Increased padding */
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    min-height: 350px;
    /* Increased height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.commitment-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.commitment-slide h3 {
    font-size: 3rem;
    color: #FED975;
    margin-bottom: 20px;
    font-weight: 700;
}

.commitment-slide p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Slider Navigation - Arrows without circle */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    /* Remove circle background */
    color: #FED975;
    /* Secondary color */
    border: none;
    width: auto;
    /* Remove fixed width */
    height: auto;
    /* Remove fixed height */
    border-radius: 0;
    /* Remove circle */
    font-size: 60px;
    /* Larger arrow size */
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 10px;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover,
.slider-next:hover {
    background: transparent;
    /* Keep transparent on hover */
    color: #F2C94C;
    /* Slightly darker secondary color on hover */
    transform: translateY(-50%) scale(1.2);
    /* Scale effect on hover */
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: #FED975;
    transform: scale(1.2);
}

/* Responsive Commitments Slider */
@media (max-width: 1024px) {
    .commitment-slide {
        flex: 0 0 calc(50% - 15px);
    }

    .commitments-slider {
        padding: 0 70px;
    }

    .slider-prev,
    .slider-next {
        width: 55px;
        height: 55px;
        font-size: 50px;
    }
}

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

    .commitments-header h2 {
        font-size: 2.8rem;
    }

    .commitments-header p {
        font-size: 1.1rem;
    }

    .commitment-slide {
        flex: 0 0 100%;
        padding: 50px 30px;
        min-height: 300px;
    }

    .commitment-slide h3 {
        font-size: 2.5rem;
    }

    .commitment-slide p {
        font-size: 1rem;
    }

    .commitments-slider {
        padding: 0 60px;
    }

    .slider-prev,
    .slider-next {
        width: 50px;
        height: 50px;
        font-size: 45px;
    }

    .slider-nav {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .commitments-header h2 {
        font-size: 2.4rem;
    }

    .commitment-slide {
        padding: 45px 25px;
        min-height: 280px;
    }

    .commitment-slide h3 {
        font-size: 2.2rem;
    }

    .commitments-slider {
        padding: 0 50px;
    }

    .slider-prev,
    .slider-next {
        width: 45px;
        height: 45px;
        font-size: 40px;
    }
}

/* Footer Section */
.footer {
    background: #333;
    color: #fff;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    color: #FED975;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Company Info */
.footer-logo img {
    height: 70px;
    margin-bottom: 20px;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #555;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: #FED975;
    transform: translateY(-3px);
    border-color: #FED975;
}

.social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(67%) sepia(64%) saturate(413%) hue-rotate(3deg) brightness(103%) contrast(101%);
    transition: all 0.3s ease;
}

.social-link:hover img {
    filter: brightness(0) invert(1);
    /* White icons on hover */
    transform: scale(1.1);
}


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

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

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

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

/* Contact Info */
.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #ccc;
    font-size: 1rem;
}

/* Contact Icons */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 1rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(67%) sepia(64%) saturate(413%) hue-rotate(3deg) brightness(103%) contrast(101%);
    /* Your secondary color */
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    filter: brightness(0) invert(1);
    /* White on hover */
    transform: scale(1.1);
}

.footer-cta .cta-button {
    background: #FED975;
    color: #333;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-cta .cta-button:hover {
    background: #F2C94C;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #555;
    padding: 25px 0;
}

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

.footer-bottom p {
    color: #999;
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #FED975;
}

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

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0;
    }

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

    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 30px;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #FED975;
    color: #333;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(254, 217, 117, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.back-to-top:hover {
    background: #F2C94C;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(254, 217, 117, 0.4);
}

/* Responsive Back to Top */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('resources/team-about.jpg') center/cover no-repeat;
    height: 50vh;
    /* Changed from 60vh to 100vh */
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 0;
    /* Changed from 80px to 0 */
}

.about-hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 1.8rem;
    opacity: 0.9;
}

/* Responsive About Hero */
@media (max-width: 768px) {
    .about-hero {
        height: 40vh;

    }

    .about-hero-content h1 {
        font-size: 3.2rem;
    }

    .about-hero-content p {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 35vh;
        /* Keep 100vh on mobile too */
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }
}

/* About Hero Brand Highlight */
.brand-highlight {
    color: #FED975;
    /* Your secondary color */
    font-size: 1.2em;
    /* Makes it 20% larger than surrounding text */
    font-weight: 700;
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('resources/team-about.jpg') center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 0;
}

.about-hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.about-hero-content p {
    font-size: 1.8rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Responsive About Hero */
@media (max-width: 768px) {
    .about-hero {
        height: 40vh;
    }

    .about-hero-content h1 {
        font-size: 3.2rem;
    }

    .about-hero-content p {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 35vh;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero-content p {
        font-size: 1.2rem;
    }
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background: #ffffff;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text h2 {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.story-image {
    background-image: url('resources/about-story.jpg');
    background-size: cover;
    /* This will fill the container */
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 15px;
    height: 500px;
    width: 100%;
    /* To zoom out, we simulate by adjusting positioning */
    background-position: 50% 50%;
    /* Adjust these values to show different parts */
}

/* Mission, Vision & Values Section - Clean Layout */
.mission-vision-values {
    padding: 100px 0;
    background: #ffffff;
}

.mvv-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

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

/* Alternate layout for vision (icon on right) */
.mvv-item:nth-child(even) {
    direction: rtl;
    /* This flips the order for vision */
}

.mvv-item:nth-child(even)>* {
    direction: ltr;
    /* Reset direction for content */
}

/* Icons */
.mvv-icon {
    text-align: center;
}

.mvv-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(67%) sepia(64%) saturate(413%) hue-rotate(3deg) brightness(103%) contrast(101%);
    transition: transform 0.3s ease;
}

.mvv-icon:hover img {
    transform: scale(1.1);
}

/* Content */
.mvv-content h2 {
    font-size: 2.5rem;
    color: #FED975;
    /* Secondary color for headings */
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mvv-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Scroll Animations */
.fade-in-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s ease-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s ease-out;
}

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

/* Staggered animation delays */
.mvv-item:nth-child(1) .fade-in-left {
    transition-delay: 0.1s;
}

.mvv-item:nth-child(1) .fade-in-right {
    transition-delay: 0.3s;
}

.mvv-item:nth-child(2) .fade-in-left {
    transition-delay: 0.1s;
}

.mvv-item:nth-child(2) .fade-in-right {
    transition-delay: 0.3s;
}

.mvv-item:nth-child(3) .fade-in-left {
    transition-delay: 0.1s;
}

.mvv-item:nth-child(3) .fade-in-right {
    transition-delay: 0.3s;
}

/* Responsive Styles - UPDATED FOR VISION FIX */
@media (max-width: 768px) {
    .mission-vision-values {
        padding: 80px 0;
    }

    .mvv-item {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
        text-align: center;
    }

    /* Reset direction on mobile */
    .mvv-item:nth-child(even) {
        direction: ltr;
    }

    /* For Vision item specifically - icon above text */
    .mvv-item:nth-child(2) {
        display: flex;
        flex-direction: column;
    }

    /* Ensure Vision icon comes first */
    .mvv-item:nth-child(2) .mvv-icon {
        order: -1;
    }

    /* Ensure Vision content comes after icon */
    .mvv-item:nth-child(2) .mvv-content {
        order: 1;
    }

    .mvv-icon img {
        width: 90px;
        height: 90px;
    }

    .mvv-content h2 {
        font-size: 2rem;
    }

    .mvv-content p {
        font-size: 1.1rem;
    }

    /* Reset animation delays on mobile */
    .mvv-item .fade-in-left,
    .mvv-item .fade-in-right {
        transition-delay: 0s;
    }
}

@media (max-width: 480px) {
    .mvv-item {
        gap: 30px;
        margin-bottom: 50px;
    }

    .mvv-icon img {
        width: 80px;
        height: 80px;
    }

    .mvv-content h2 {
        font-size: 1.8rem;
    }

    .mvv-content p {
        font-size: 1rem;
    }
}

/* Why Choose Us - Box Layout */
.why-choose-us {
    padding: 100px 0;
    background: #ffffff;
}

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

.section-header h2 {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.3rem;
    color: #666;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background: #f8f9fa;
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #FED975;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

/* Feature Icons with Secondary Color */
.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(67%) sepia(64%) saturate(413%) hue-rotate(3deg) brightness(103%) contrast(101%);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon img {
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(59%) sepia(65%) saturate(450%) hue-rotate(3deg) brightness(95%) contrast(101%);
}

/* Feature Headings with Secondary Color */
.feature-item h3 {
    font-size: 1.5rem;
    color: #FED975;
    /* Secondary color for headings */
    margin-bottom: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-item:hover h3 {
    color: #333;
    /* Change to dark on hover */
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.feature-item:hover p {
    color: #333;
}

/* Alternative Hover Effect - Change background to secondary color */
.feature-item.alternative-hover:hover {
    background: #FED975;
}

.feature-item.alternative-hover:hover h3 {
    color: #333;
}

.feature-item.alternative-hover:hover p {
    color: #333;
}

.feature-item.alternative-hover:hover .feature-icon img {
    filter: brightness(0) saturate(100%) invert(24%) sepia(98%) saturate(1832%) hue-rotate(3deg) brightness(101%) contrast(101%);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 2.8rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-item {
        padding: 40px 25px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .feature-item h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2.4rem;
    }

    .feature-item {
        padding: 35px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-item h3 {
        font-size: 1.3rem;
    }

    .feature-item p {
        font-size: 0.95rem;
    }
}

/* Stats Section - Unified Design */
.stats-section {
    padding: 100px 0;
    background: #ffffff;
}

.stats-container {
    position: relative;
}

.stats-background {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 80px 40px;
    border: 2px solid rgba(254, 217, 117, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* Subtle secondary color accent */
.stats-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FED975, #F2C94C);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
}

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

/* Number styling */
.stat-number {
    font-size: 3.5rem;
    color: #FED975;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
}

.stat-plus {
    font-size: 2.5rem;
    color: #FED975;
    font-weight: 700;
    margin-left: 2px;
}

/* Label styling */
.stat-label {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Last item (24/7) special styling */
.stat-item:last-child .stat-number {
    font-size: 3rem;
    color: #FED975;
}

/* Hover effects */
.stat-item:hover .stat-number,
.stat-item:hover .stat-plus {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Responsive Stats */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .stats-background {
        padding: 60px 30px;
    }
}

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

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

    .stats-background {
        padding: 50px 20px;
        border-radius: 15px;
    }

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

    .stat-plus {
        font-size: 2rem;
    }

    .stat-item:last-child .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-background {
        padding: 40px 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-plus {
        font-size: 1.8rem;
    }

    .stat-item:last-child .stat-number {
        font-size: 2.2rem;
    }
}

/* About CTA Section */
.about-cta {
    padding: 100px 0;
    background: #FED975;
    text-align: center;
}

.cta-content h2 {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Responsive Styles for About Page */
@media (max-width: 1024px) {
    .story-content {
        gap: 60px;
    }

    .story-text h2,
    .section-header h2,
    .cta-content h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {

    .our-story,
    .mission-vision,
    .why-choose-us,
    .stats-section,
    .about-cta {
        padding: 80px 0;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .story-text h2,
    .section-header h2,
    .cta-content h2 {
        font-size: 2.5rem;
    }

    .mv-grid,
    .features-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {

    .story-text h2,
    .section-header h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .story-text p,
    .mv-card p,
    .feature-item p,
    .stat-item p,
    .cta-content p {
        font-size: 1rem;
    }
}

/* Services Hero Section */
.services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('resources/services1.jpg') center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 0;
}

.services-hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.services-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Services Showcase Section - Fixed Mobile Layout */
.services-showcase {
    padding: 100px 0;
    background: #ffffff;
}

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

.section-header h2 {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.3rem;
    color: #666;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

/* Alternate layout for even items - FIXED FOR MOBILE */
.service-item:nth-child(even) {
    direction: rtl;
}

.service-item:nth-child(even)>* {
    direction: ltr;
}

/* Service Icons */
.service-icon {
    text-align: center;
}

.service-icon img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(67%) sepia(64%) saturate(413%) hue-rotate(3deg) brightness(103%) contrast(101%);
    transition: transform 0.3s ease;
}

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

/* Service Content */
.service-content h3 {
    font-size: 2.2rem;
    color: #FED975;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.service-features li {
    font-size: 1rem;
    color: #666;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FED975;
    font-weight: bold;
    font-size: 1.1rem;
}

/* FIXED MOBILE RESPONSIVE STYLES */
@media (max-width: 768px) {
    .services-showcase {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 2.8rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .services-list {
        gap: 80px;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    /* RESET DIRECTION ON MOBILE - THIS IS THE KEY FIX */
    .service-item:nth-child(even) {
        direction: ltr;
    }

    .service-item:nth-child(even)>* {
        direction: ltr;
    }

    /* Ensure proper order on mobile - content always comes after image */
    .service-item:nth-child(even) .service-icon {
        order: -1;
    }

    .service-item:nth-child(even) .service-content {
        order: 1;
    }

    .service-icon img {
        width: 120px;
        height: 120px;
    }

    .service-content h3 {
        font-size: 1.8rem;
    }

    .service-content p {
        font-size: 1.1rem;
    }

    .service-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .service-features li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .services-list {
        gap: 60px;
    }

    .service-item {
        gap: 30px;
    }

    .service-icon img {
        width: 100px;
        height: 100px;
    }

    .service-content h3 {
        font-size: 1.6rem;
    }

    .service-content p {
        font-size: 1rem;
    }

    .service-features li {
        font-size: 0.9rem;
    }
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FED975;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.process-item {
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.process-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #FED975;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

.process-number {
    font-size: 3rem;
    color: #FED975;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.process-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Consulting CTA Section - Boxed Version */
.consulting-cta {
    padding: 100px 0;
    background: #f8f9fa;
}

.cta-box {
    background: #ffffff;
    border: 2px solid rgba(254, 217, 117, 0.3);
    border-radius: 20px;
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Subtle secondary color accent */
.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #FED975;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.cta-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(254, 217, 117, 0.6);
}

.cta-box:hover::before {
    transform: scaleX(1);
}

.cta-content h2 {
    font-size: 3.2rem;
    color: #FED975;
    /* Secondary color */
    margin-bottom: 1.5rem;
    font-weight: 700;
    transition: all 0.4s ease;
}

.cta-box:hover .cta-content h2 {
    transform: scale(1.05);
}

.cta-content p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.4s ease;
}

.cta-box:hover .cta-content p {
    opacity: 1;
    transform: translateY(-5px);
}

.cta-button {
    background: #FED975;
    /* Secondary color */
    color: #333;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    display: inline-block;
    border: 2px solid #FED975;
}

.cta-button:hover {
    background: transparent;
    color: #FED975;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(254, 217, 117, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .consulting-cta {
        padding: 80px 0;
    }

    .cta-box {
        padding: 60px 30px;
        border-radius: 15px;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .cta-box {
        padding: 50px 20px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 0.8rem;
    }
}

/* Service Features - Updated for more items */
.service-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-features li {
    font-size: 1rem;
    color: #666;
    padding-left: 25px;
    position: relative;
    margin-bottom: 0;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FED975;
    font-weight: bold;
    font-size: 1.1rem;
}

/* For mobile, stack features in one column */
@media (max-width: 768px) {
    .service-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* NUCLEAR OPTION - Remove all link styling from services section */
.services-section a,
.services-section a:link,
.services-section a:visited,
.services-section a:hover,
.services-section a:active,
.services-section a:focus {
    text-decoration: none !important;
    color: inherit !important;
    background: none !important;
    border: none !important;
    outline: none !important;
}

.services-section a.service-slide h3 {
    text-decoration: none !important;
    color: #333 !important;
}

/* Fix anchor link scrolling for fixed header */
html {
    scroll-behavior: smooth;
}

.service-item {
    scroll-margin-top: 120px;
    /* Adjust this value based on your header height */
}


/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero */
.page-hero.contact-page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('resources/touch.jpg') center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 0;
    padding: 120px 0 80px;
}

.page-hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.page-hero-content>p {
    font-size: 1.8rem;
    opacity: 0.9;
    font-weight: 500;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn.primary-btn {
    background: #FED975;
    color: #333;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #FED975;
}

.cta-btn.primary-btn:hover {
    background: transparent;
    color: #FED975;
    transform: translateY(-2px);
}

.cta-btn.secondary-btn {
    background: transparent;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.cta-btn.secondary-btn:hover {
    background: #ffffff;
    color: #333;
    transform: translateY(-2px);
}

/* Contact Methods Section */
.contact-methods-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.section-header h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-method-card {
    text-align: center;
    padding: 50px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    border-color: #FED975;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FED975;
    border-radius: 50%;
    padding: 20px;
}

.contact-method-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.contact-method-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-method-detail {
    font-size: 1.2rem;
    color: #FED975;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-method-info {
    font-size: 0.95rem;
    color: #666;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.form-intro-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-intro-content>p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.form-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-check {
    width: 24px;
    height: 24px;
    background: #FED975;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.form-benefit-item span:last-child {
    color: #666;
    font-weight: 500;
}

/* Form Styles */
.form-content-wrapper {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.form-input-group input,
.form-input-group select,
.form-input-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    font-family: inherit;
}

.form-input-group input:focus,
.form-input-group select:focus,
.form-input-group textarea:focus {
    outline: none;
    border-color: #FED975;
    box-shadow: 0 0 0 3px rgba(254, 217, 117, 0.1);
}

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

.form-submit-btn {
    width: 100%;
    background: #FED975;
    color: #333;
    padding: 16px;
    border: 2px solid #FED975;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-submit-btn:hover {
    background: transparent;
    color: #FED975;
    transform: translateY(-2px);
}

/* FAQ Section - Side by Side Layout */
.contact-faq-section {
    padding: 100px 0;
    background: #ffffff;
}

.faq-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-grid-item {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.faq-grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #FED975;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #FED975;
}

.faq-grid-item:hover::before {
    transform: scaleY(1);
}

.faq-grid-item h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    padding-left: 0;
}

.faq-grid-item p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.faq-grid-item .faq-icon {
    position: absolute;
    top: 35px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: #FED975;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-grid-item:hover .faq-icon {
    background: #333;
    color: #FED975;
    transform: scale(1.1);
}

/* CTA Section - Simplified */
.contact-cta-section {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

.cta-content-wrapper h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content-wrapper p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-cta-section .cta-btn {
    background: #FED975;
    color: #333;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid #FED975;
}

.contact-cta-section .cta-btn:hover {
    background: transparent;
    color: #FED975;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 217, 117, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-cta-section {
        padding: 80px 0;
    }

    .cta-content-wrapper h2 {
        font-size: 2.2rem;
    }

    .cta-content-wrapper p {
        font-size: 1.1rem;
    }

    .contact-cta-section .cta-btn {
        padding: 14px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-content-wrapper h2 {
        font-size: 2rem;
    }

    .cta-content-wrapper p {
        font-size: 1rem;
    }

    .contact-cta-section .cta-btn {
        padding: 12px 30px;
    }
}

/* FAQ becomes single column on mobile */
.faq-grid-container {
    grid-template-columns: 1fr;
    gap: 25px;
}

.faq-grid-item {
    padding: 30px 25px;
}

.faq-grid-item h3 {
    font-size: 1.2rem;
    padding-right: 50px;
}

.faq-grid-item .faq-icon {
    top: 30px;
    right: 25px;
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
}

/* CTA Mobile */
.contact-cta-section {
    padding: 80px 0;
}

.cta-content-wrapper h2 {
    font-size: 2.8rem;
}

.cta-content-wrapper p {
    font-size: 1.2rem;
}

.contact-cta-section .cta-btn.primary-btn {
    padding: 16px 40px;
    font-size: 1.2rem;
}


@media (max-width: 480px) {
    .page-hero.contact-page-hero {
        height: 50vh;
    }

    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .page-hero-content>p {
        font-size: 1.2rem;
    }

    .faq-grid-item {
        padding: 25px 20px;
    }

    .faq-grid-item h3 {
        font-size: 1.1rem;
        padding-right: 45px;
    }

    .faq-grid-item .faq-icon {
        top: 25px;
        right: 20px;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .contact-method-card {
        padding: 35px 20px;
    }

    .cta-content-wrapper h2 {
        font-size: 2.2rem;
    }

    .cta-content-wrapper p {
        font-size: 1.1rem;
    }

    .contact-cta-section .cta-btn.primary-btn {
        padding: 14px 35px;
        font-size: 1.1rem;
    }
}

/* Social Media Icons in Contact Methods */
.social-icons-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0 10px;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon-link:hover {
    background: #FED975;
    transform: translateY(-3px);
    border-color: #FED975;
    box-shadow: 0 5px 15px rgba(254, 217, 117, 0.3);
}

.social-icon-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(40%) sepia(10%) saturate(500%) hue-rotate(180deg) brightness(90%) contrast(90%);
}

.social-icon-link:hover img {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}

/* Adjust the social card for better spacing */
.contact-methods-grid .contact-method-card:nth-child(3) {
    padding: 40px 30px;
}

.contact-methods-grid .contact-method-card:nth-child(3) .contact-method-icon {
    margin-bottom: 20px;
}

.contact-methods-grid .contact-method-card:nth-child(3) h3 {
    margin-bottom: 20px;
}

/* Social Media Icons in Contact Methods - Always Yellow */
.social-icons-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0 10px;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #FED975;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid #FED975;
}

.social-icon-link:hover {
    background: #F2C94C;
    transform: translateY(-3px);
    border-color: #F2C94C;
    box-shadow: 0 5px 15px rgba(254, 217, 117, 0.4);
}

.social-icon-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.social-icon-link:hover img {
    transform: scale(1.1);
}

/* Adjust the social card for better spacing */
.contact-methods-grid .contact-method-card:nth-child(3) {
    padding: 40px 30px;
}

.contact-methods-grid .contact-method-card:nth-child(3) .contact-method-icon {
    margin-bottom: 20px;
}

.contact-methods-grid .contact-method-card:nth-child(3) h3 {
    margin-bottom: 20px;
}