/* ===== VARIABLES ===== */
:root {
    --primary-color: #F7941D;
    --primary-dark: #e07e09;
    --primary-light: #ffa94d;
    --white: #ffffff;
    --dark: #1a1a1a;
    --dark-gray: #333333;
    --light-gray: #f5f5f5;
    --text-color: #333333;
    --text-light: #777777;
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --overlay-light: rgba(0, 0, 0, 0.3);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
}

.preloader-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    z-index: -1;
}

.preloader-bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,64L48,96C96,128,192,192,288,197.3C384,203,480,149,576,144C672,139,768,181,864,218.7C960,256,1056,288,1152,266.7C1248,245,1344,171,1392,133.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center no-repeat;
    background-size: cover;
    opacity: 0.6;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    max-width: 90%;
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.logo-container {
    padding: 40px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.1;
}

.shape-1 {
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    animation: floatAnimation 8s infinite alternate;
}

.shape-2 {
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    animation: floatAnimation 7s infinite alternate-reverse;
}

.shape-3 {
    top: 50%;
    right: -15px;
    width: 60px;
    height: 60px;
    animation: floatAnimation 6s infinite alternate;
}

.shape-4 {
    bottom: 30%;
    left: -15px;
    width: 50px;
    height: 50px;
    animation: floatAnimation 9s infinite alternate-reverse;
}

.logo-icon {
    width: 90px;
    height: 90px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 15px 30px rgba(247, 148, 29, 0.3);
    position: relative;
    animation: pulse 2s infinite;
    z-index: 5;
}

.logo-icon i {
    font-size: 44px;
    color: var(--white);
    animation: rotateIcon 5s infinite linear;
}

.logo-icon:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: ripple 2s infinite;
}

.logo-icon:after {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(247, 148, 29, 0.5);
    animation: glow 3s infinite;
}

.logo-text {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 10px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.5s;
    letter-spacing: 1px;
    position: relative;
}

.tagline {
    color: var(--dark-gray);
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.8s;
    margin-bottom: 25px;
    font-weight: 500;
}

.loader-bar {
    width: 85%;
    height: 8px;
    background-color: rgba(247, 148, 29, 0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin: 15px 0;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
    backdrop-filter: blur(5px);
}

.loader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    animation: progress 7s ease-in-out forwards;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(247, 148, 29, 0.3);
}

.loading-status {
    display: flex;
    justify-content: space-between;
    width: 85%;
    margin-top: 8px;
}

.percentage {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
    animation: updatePercentage 7s linear forwards;
}

.loading-text {
    display: flex;
    justify-content: center;
    gap: 2px;
    height: 20px;
}

.loading-text span {
    color: var(--dark-gray);
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    animation: fadeInOut 2.5s infinite;
    text-shadow: 0 0 3px rgba(247, 148, 29, 0.3);
}

/* Add new animations */
@keyframes floatAnimation {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
    100% {
        transform: translateY(5px) rotate(-5deg);
    }
}

@keyframes glow {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.5;
    }
}

@keyframes updatePercentage {
    0% { content: "0%"; }
    5% { content: "5%"; }
    10% { content: "10%"; }
    15% { content: "15%"; }
    20% { content: "20%"; }
    25% { content: "25%"; }
    30% { content: "30%"; }
    35% { content: "35%"; }
    40% { content: "40%"; }
    45% { content: "45%"; }
    50% { content: "50%"; }
    55% { content: "55%"; }
    60% { content: "62%"; }
    65% { content: "67%"; }
    70% { content: "72%"; }
    75% { content: "75%"; }
    80% { content: "80%"; }
    85% { content: "85%"; }
    90% { content: "85%"; }
    95% { content: "90%"; }
    98% { content: "95%"; }
    100% { content: "100%"; }
}

/* ===== GENERAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--white);
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(247, 148, 29, 0.2);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* ===== MOBILE NAV TOGGLE ===== */
.mobile-nav-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-fast);
}

.hamburger {
    width: 30px;
    height: 24px;
    position: relative;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--white);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all var(--transition-fast);
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 10px;
}

.hamburger span:nth-child(3) {
    top: 20px;
}

.hamburger.active span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

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

.hamburger.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* ===== SIDEBAR NAVIGATION ===== */
.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right var(--transition-medium);
    z-index: 1001;
    overflow-y: auto;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar-header h2 {
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
}

.close-sidebar {
    cursor: pointer;
    font-size: 20px;
    color: var(--dark-gray);
}

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

.sidebar-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-menu li a {
    display: block;
    padding: 15px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.sidebar-menu li a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
    padding-left: 25px;
}

.sidebar-menu li.active a {
    color: var(--primary-color);
    font-weight: 600;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-info p {
    margin: 10px 0;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.contact-info p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

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

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh; /* Full viewport height */
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 7s ease-in-out;
    z-index: 1;
    will-change: opacity, transform;
}

.slide.loaded {
    opacity: 0;
    transform: scale(1.02);
}

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

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide.active-zoom {
    transform: scale(1.15);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease forwards;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 10px;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
    animation-fill-mode: both;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.scroll-down a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.scroll-down i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .scroll-down {
        bottom: 20px;
    }
    
    .scroll-down a {
        font-size: 0.8rem;
    }
    
    .scroll-down i {
        font-size: 1rem;
    }
}

@media (max-height: 600px) {
    .scroll-down {
        display: none;
    }
}

/* ===== SECTION GENERAL STYLES ===== */
.section-padding {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
}

.divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 20px;
}

.divider span {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
    position: relative;
}

.divider span::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -4px;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* ===== SERVICES SECTION ===== */
.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
    padding: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img,
.service-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.service-card:hover .service-image img,
.service-card:hover .service-image video {
    transform: scale(1.1);
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    z-index: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 28px;
    margin: -35px auto 15px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(247, 148, 29, 0.3);
    transition: all var(--transition-fast);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    transition: all 0.7s ease;
    background-color: var(--primary-dark);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
    text-align: center;
    padding: 0 20px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
    padding: 0 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
    padding: 0 20px;
}

.service-features li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 16px;
}

.btn-service {
    display: inline-block;
    background-color: rgba(247, 148, 29, 0.1);
    color: var(--primary-color);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    margin: 0 20px 20px;
}

.btn-service:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.cta-container {
    background-color: var(--primary-color);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(247, 148, 29, 0.3);
}

.cta-container h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-container p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-container .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.cta-container .btn-primary:hover {
    background-color: transparent;
    color: var(--white);
}

/* ===== ANIMATIONS ===== */
.animate-down {
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInDown 1s forwards 0.3s;
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Animation for elements when scrolling */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

@keyframes pulse {
    0% {
        transform: translateY(0) translateX(-50%);
    }
    50% {
        transform: translateY(10px) translateX(-50%);
    }
    100% {
        transform: translateY(0) translateX(-50%);
    }
}

/* Staggered animations for services */
.services-container .service-card:nth-child(1) {
    transition-delay: 0.1s;
}

.services-container .service-card:nth-child(2) {
    transition-delay: 0.2s;
}

.services-container .service-card:nth-child(3) {
    transition-delay: 0.3s;
}

.services-container .service-card:nth-child(4) {
    transition-delay: 0.2s;
}

.services-container .service-card:nth-child(5) {
    transition-delay: 0.3s;
}

.services-container .service-card:nth-child(6) {
    transition-delay: 0.4s;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 994px) {
    .mobile-nav-toggle {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    /* Add styles to make h1 appear more like an h2 on mobile */
    .hero-content h1 {
        line-height: 1.3;
        letter-spacing: -0.5px;
        font-weight: 600;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn {
        width: 100%;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-desc {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 15px;
        font-weight: 600;
        letter-spacing: -0.5px;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .sidebar {
        width: 260px;
        right: -260px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .cta-container {
        padding: 30px 20px;
    }
    
    .cta-container h3 {
        font-size: 1.5rem;
    }
}

/* Additional media query for very small screens */
@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 12px;
        padding: 0 10px;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
}

/* ===== PROJECTS SECTION ===== */
.projects {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 148, 29, 0.05), transparent 70%);
    z-index: 1;
}

.projects::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 148, 29, 0.05), transparent 70%);
    z-index: 1;
}

.projects .container {
    position: relative;
    z-index: 2;
}

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

.project-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 45px;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid rgba(120, 120, 120, 0.2);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.02);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    z-index: -1;
    transition: width 0.3s ease;
}

.filter-btn:hover::before, 
.filter-btn.active::before {
    width: 100%;
}

.filter-btn:hover, 
.filter-btn.active {
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(247, 148, 29, 0.2);
    transform: translateY(-2px);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-item {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(30px);
    opacity: 0;
    visibility: visible;
    position: relative;
}

.project-item.hide {
    display: none;
    opacity: 0;
    visibility: hidden;
    height: 0;
    margin: 0;
    padding: 0;
}

.project-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.project-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    height: 240px;
}

.project-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-item:hover .project-img::after {
    opacity: 1;
}

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

.project-item:hover .project-img img {
    transform: scale(1.08);
}

.project-info {
    padding: 20px 25px;
    border-top: 1px solid rgba(0,0,0,0.03);
    position: relative;
    background-color: var(--white);
    z-index: 1;
}

.project-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--primary-color);
    transition: height 0.4s ease;
}

.project-item:hover .project-info::before {
    height: 100%;
}

.project-info h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    padding-left: 0;
    transition: padding-left 0.3s ease;
}

.project-item:hover .project-info h3 {
    color: var(--primary-color);
    padding-left: 8px;
}

.project-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-item:hover .project-description {
    color: #333;
}

.project-info .project-category {
    font-size: 13px;
    color: #888;
    display: block;
    font-weight: 500;
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.project-item:hover .project-category {
    padding-left: 8px;
    color: var(--primary-color);
}

.project-info .project-category::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.project-item:hover .project-category::before {
    width: 80px;
}

/* Animation for staggered appearance of projects */
.projects-grid .project-item:nth-child(1) {
    transition-delay: 0.1s;
}

.projects-grid .project-item:nth-child(2) {
    transition-delay: 0.2s;
}

.projects-grid .project-item:nth-child(3) {
    transition-delay: 0.3s;
}

.projects-grid .project-item:nth-child(4) {
    transition-delay: 0.4s;
}

.projects-grid .project-item:nth-child(5) {
    transition-delay: 0.5s;
}

.projects-grid .project-item:nth-child(6) {
    transition-delay: 0.6s;
}

.projects-grid .project-item:nth-child(7) {
    transition-delay: 0.7s;
}

.projects-grid .project-item:nth-child(8) {
    transition-delay: 0.8s;
}

.projects-grid .project-item:nth-child(9) {
    transition-delay: 0.9s;
}

/* ===== RESPONSIVE STYLES FOR PROJECTS ===== */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .project-filters {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 25px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
    }
    
    .project-description {
        -webkit-line-clamp: 2;
    }
    
    .project-img {
        height: 220px;
    }
    
    .project-info {
        padding: 18px 20px;
    }
}

@media (max-width: 576px) {
    .filter-btn {
        margin: 5px;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .project-description {
        -webkit-line-clamp: 3;
        font-size: 13px;
    }
    
    .project-info h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .project-info .project-category {
        font-size: 12px;
    }
    
    .project-img {
        height: 200px;
    }
}

/* Full-screen image view in lightbox */
.lightbox-img-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-img-container img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
    border: 3px solid var(--white);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.close-img-view {
    position: absolute;
    top: -40px;
    right: -20px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.close-img-view:hover {
    color: var(--primary-color);
}

/* ===== PROCESS SECTION (HOW WE WORK) ===== */
.process {
    background-color: var(--white);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 50px auto 80px;
    padding: 20px 0;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 0;
    background-color: var(--primary-color);
    transform: translateX(-50%);
    transition: height 0.5s ease;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 30px 40px;
    box-sizing: border-box;
    margin-bottom: 50px;
    transition: all var(--transition-medium);
    opacity: 0;
    transition: all 0.8s ease;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    transform: translateX(-30px);
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    transform: translateX(30px);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-number {
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--white), 0 0 0 8px rgba(247, 148, 29, 0.2);
    transition: all var(--transition-medium);
}

.timeline-item:nth-child(odd) .timeline-number {
    right: -20px;
}

.timeline-item:nth-child(even) .timeline-number {
    left: -20px;
}

.timeline-item:hover .timeline-number {
    transform: scale(1.2);
    box-shadow: 0 0 0 4px var(--white), 0 0 0 8px rgba(247, 148, 29, 0.4);
}

.timeline-content {
    position: relative;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-medium);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    border-radius: 8px 0 8px 8px;
}

.timeline-item:nth-child(even) .timeline-content {
    border-radius: 0 8px 8px 8px;
}

.timeline-item:nth-child(odd) .timeline-content:before {
    content: '';
    position: absolute;
    top: 20px;
    right: -15px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid var(--light-gray);
}

.timeline-item:nth-child(even) .timeline-content:before {
    content: '';
    position: absolute;
    top: 20px;
    left: -15px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid var(--light-gray);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(247, 148, 29, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
    transition: all var(--transition-medium);
}

.timeline-item:nth-child(odd) .timeline-icon {
    margin-left: auto;
}

.timeline-item:hover .timeline-icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: rotateY(360deg);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.process-cta {
    text-align: center;
    margin-top: 60px;
}

.process-cta p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* Staggered animation for timeline items */
.timeline-item:nth-child(2) {
    transition-delay: 0.2s;
}

.timeline-item:nth-child(3) {
    transition-delay: 0.3s;
}

.timeline-item:nth-child(4) {
    transition-delay: 0.4s;
}

/* ===== RESPONSIVE STYLES FOR PROCESS SECTION ===== */
@media (max-width: 992px) {
    .timeline {
        max-width: 700px;
    }
    
    .timeline-item {
        padding: 25px 30px;
        margin-bottom: 40px;
    }
    
    .timeline-content {
        padding: 25px;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .timeline {
        max-width: 100%;
        margin: 40px auto 60px;
    }
    
    .timeline-progress {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 15px;
        padding-top: 20px;
        padding-bottom: 20px;
        text-align: left;
        margin-bottom: 30px;
    }
    
    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        left: 10px !important;
        right: auto !important;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-content:before {
        display: none;
    }
    
    .timeline-item:nth-child(odd) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        margin-left: 0;
        margin-right: auto;
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        border-radius: 8px;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .timeline {
        margin: 30px auto 50px;
        padding: 15px 0;
    }
    
    .timeline-progress {
        width: 3px;
    }
    
    .timeline-item {
        padding-left: 50px;
        padding-right: 10px;
        padding-top: 15px;
        padding-bottom: 15px;
        margin-bottom: 25px;
    }
    
    .timeline-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        left: 8px !important;
        box-shadow: 0 0 0 3px var(--white), 0 0 0 6px rgba(247, 148, 29, 0.2);
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .timeline-content h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .process-cta {
        margin-top: 40px;
    }
    
    .process-cta p {
        font-size: 1rem;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: var(--light-gray);
    position: relative;
}

.testimonial-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 60px;
    overflow: hidden;
}

.testimonial-container {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-item {
    min-width: 100%;
    padding: 40px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}

.testimonial-item.visible {
    opacity: 1;
    transform: scale(1);
}

.testimonial-client {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.client-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.rating {
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-content {
    position: relative;
    padding-left: 30px;
}

.quote-icon {
    position: absolute;
    top: -5px;
    left: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
}

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

.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-light);
    margin: 0 5px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

.testimonial-cta {
    text-align: center;
    margin-top: 40px;
}

.testimonial-cta p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* ===== RESPONSIVE STYLES FOR TESTIMONIALS ===== */
@media (max-width: 768px) {
    .testimonial-item {
        padding: 20px;
    }
    
    .testimonial-client {
        text-align: center;
    }
    
    .client-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-content {
        padding-left: 0;
        text-align: center;
    }
    
    .quote-icon {
        position: static;
        display: block;
        margin-bottom: 10px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .testimonial-content p {
        font-size: 1rem;
    }
}

/* ===== STICKY CONTACT WIDGET ===== */
.sticky-contact-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
}

.contact-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    z-index: 2;
}

.contact-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.contact-icons {
    position: absolute;
    bottom: 75px;
    right: 8px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.sticky-contact-widget.collapsed .contact-icons {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.sticky-contact-widget.expanded .contact-icons {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.contact-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.map-icon {
    background-color: #4285F4;
}

.whatsapp-icon {
    background-color: #25D366;
}

.phone-icon {
    background-color: var(--primary-color);
}

.icon-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    white-space: nowrap;
}

.icon-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--dark-gray);
}

.contact-toggle:hover .icon-tooltip,
.contact-icon:hover .icon-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Add animation for the widget */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translate3d(0, 100px, 0);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translate3d(0, 0, 0);
    }
    70% {
        transform: scale(0.9) translate3d(0, 0, 0);
    }
    100% {
        transform: scale(1) translate3d(0, 0, 0);
    }
}

.sticky-contact-widget .contact-toggle {
    animation: bounceIn 0.6s ease-out both;
}

.sticky-contact-widget.expanded .contact-icon:nth-child(1) {
    animation: bounceIn 0.6s ease-out 0.1s both;
}

.sticky-contact-widget.expanded .contact-icon:nth-child(2) {
    animation: bounceIn 0.6s ease-out 0.2s both;
}

.sticky-contact-widget.expanded .contact-icon:nth-child(3) {
    animation: bounceIn 0.6s ease-out 0.3s both;
}

/* Click animation for contact icons */
@keyframes iconPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(1);
    }
}

.icon-pulse {
    animation: iconPulse 0.5s ease;
}

/* Toggle animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(135deg);
    }
}

@keyframes spinReverse {
    0% {
        transform: rotate(135deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.sticky-contact-widget.expanded .contact-toggle i {
    animation: spin 0.3s forwards;
}

.sticky-contact-widget.collapsed .contact-toggle i {
    animation: spinReverse 0.3s forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sticky-contact-widget {
        right: 10px;
    }
    
    .contact-toggle {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .contact-icons {
        gap: 10px;
        bottom: 70px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .icon-tooltip {
        display: none;
    }
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--white);
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    margin-top: 50px;
}

.contact-info-col {
    grid-column: 1;
    grid-row: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.contact-form-col {
    grid-column: 2;
    grid-row: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.contact-map-col {
    grid-column: 1 / span 2;
    grid-row: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.contact-info-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-card h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-detail {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-detail i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-detail h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.contact-detail p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 5px;
}

.btn-call {
    display: inline-block;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-call:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.contact-whatsapp {
    margin-bottom: 25px;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: var(--white);
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-whatsapp i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

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

.contact-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.form-group label {
    display: block;
    color: var(--dark-gray);
    font-weight: 500;
    margin-bottom: 8px;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(247, 148, 29, 0.2);
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 500;
    height: 20px;
}

.form-submission-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-submission-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-submission-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.map-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

/* ===== FOOTER SECTION ===== */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 70px 0 20px;
}

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

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after,
.footer-services h3:after,
.footer-contact h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-services ul li {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact p i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE STYLES FOR CONTACT & FOOTER ===== */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    
    .contact-info-col {
        grid-column: 1;
        grid-row: 1;
    }
    
    .contact-form-col {
        grid-column: 1;
        grid-row: 2;
    }
    
    .contact-map-col {
        grid-column: 1;
        grid-row: 3;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-detail {
        flex-direction: column;
    }
    
    .contact-detail i {
        margin-bottom: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .contact-info-card,
    .contact-form {
        padding: 25px 20px;
    }
    
    .btn-whatsapp {
        font-size: 0.9rem;
    }
}

.preloader.completing .logo-icon {
    animation: completeAnimation 0.5s forwards;
}

.preloader.completing .logo-text {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

@keyframes completeAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

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

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

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

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in-down {
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Staggered Animation Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

.delay-600 {
    transition-delay: 0.6s;
}

.delay-700 {
    transition-delay: 0.7s;
}

.delay-800 {
    transition-delay: 0.8s;
}

/* Apply animations to specific elements */
/* Hero Section */
.hero-content h1 {
    animation: fadeInDown 1s ease forwards;
}

.hero-content p {
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
    animation-fill-mode: both;
}

.cta-buttons {
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
    animation-fill-mode: both;
}

/* Services Section */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Projects Section */
.project-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.project-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Timeline Section */
.timeline-item {
    opacity: 0;
    transition: all 0.8s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Testimonials Section */
.testimonial-item {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}

.testimonial-item.visible {
    opacity: 1;
    transform: scale(1);
}

/* Contact Section */
.contact-info-col.visible, .contact-form-col.visible, .contact-map-col.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Section */
.footer-content > div {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.footer-content > div.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fix for horizontal scrolling issues */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Additional responsive fixes */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-map-col {
        grid-column: 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-item {
        padding: 20px;
    }
    
    iframe {
        width: 100% !important;
    }
    
    .project-filters {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .sticky-contact-widget {
        right: 10px;
    }
}

/* Fix for very small screens */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 5px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-detail {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-detail i {
        margin-bottom: 10px;
    }
}

/* Remove project overlay styles */
.project-overlay {
    display: none;
}

.project-item:hover .project-overlay {
    display: none;
}

/* Responsive styles for hero section */
@media (max-width: 1200px) {
    .hero {
        height: 100vh;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero {
        height: 100vh;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .slide.active-zoom {
        transform: scale(1.12);
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .slide.active-zoom {
        transform: scale(1.08);
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-buttons .btn {
        margin: 8px 0;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        padding: 0 5px;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .slide.active-zoom {
        transform: scale(1.05);
    }
    
    .slide:before {
        background: rgba(0, 0, 0, 0.6); /* Darker overlay for better readability on mobile */
    }
}

@media (max-height: 600px) and (max-width: 992px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        margin-bottom: 20px;
    }
}
@media (max-width: 992px) {
    .hero-content h1 {
      font-size: 2.8em; /* Slightly smaller */
      line-height: 1.3;
    }
  }
  
  /* Media query for smaller screens (e.g., mobile devices) */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2em; /* Even smaller */
      line-height: 1.4;
    }
  }
  
  /* Media query for even smaller screens (common for portrait mobile) */
  @media (max-width: 576px) {
    .hero-content h1 {
      font-size: 1.6em; /* Smallest size */
      line-height: 1.5;
    }
  }

/* ===== GALLERY PREVIEW ===== */
.gallery-preview {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.gallery-preview-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-medium);
}

.gallery-preview-item:hover {
    transform: translateY(-10px);
}

.gallery-preview-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.gallery-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

.gallery-preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px;
    color: var(--white);
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

.gallery-preview-item:hover .gallery-preview-overlay {
    transform: translateY(0);
}

.gallery-preview-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.gallery-preview-overlay p {
    font-size: 1rem;
    opacity: 0.8;
}

.gallery-preview-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== GALLERY PAGE ===== */
.gallery-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('projects/WhatsApp Image 2025-04-13 at 19.44.29_13b34f13.jpg') center/cover;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.gallery-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-medium);
    margin: 0;
}

.gallery-item.hide {
    display: none;
}

.gallery-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    opacity: 0;
    transition: opacity var(--transition-medium);
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    transform: translateY(-20px);
    transition: transform var(--transition-medium);
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: transform var(--transition-medium);
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

.view-image {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transform: scale(0);
    transition: transform var(--transition-medium);
}

.gallery-item:hover .view-image {
    transform: scale(1);
}

.view-image:hover {
    background: var(--primary-dark);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.close-lightbox:hover {
    color: var(--primary-color);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
    padding: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .gallery-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-preview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-header h1 {
        font-size: 2.5rem;
    }
    
    .gallery-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .gallery-header h1 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-overlay h3 {
        font-size: 1.2rem;
    }
}

/* Add responsive margins for gallery */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        padding: 40px 20px;
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 30px 25px;
    }
    
    .gallery-item {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 25px 30px;
    }
    
    .gallery-item {
        margin: 0 15px;
    }
    
    .gallery-filters {
        padding: 0 30px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px 35px;
    }
    
    .gallery-item {
        margin: 0 20px;
    }
    
    .gallery-filters {
        padding: 0 35px;
    }
    
    .filter-btn {
        margin: 5px;
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        padding: 15px 40px;
    }
    
    .gallery-item {
        margin: 0 25px;
    }
    
    .gallery-filters {
        padding: 0 40px;
    }
}