* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background: #f5f5f5;
}


html{
    overflow-x: hidden;
}


/* Hero Section with Sliding Images */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.hero-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex; /* ← KEY CHANGE: flex row mein saari slides */
}

/*
  Clone Trick Order:
  [5-clone] [1] [2] [3] [4] [5] [1-clone]
  Total = 7 slides, each 100vw wide
  Track translateX se move karta hai
*/
.hero-slider-track {
    display: flex;
    width: calc(7 * 100%);
    height: 100%;
    transform: translateX(calc(-1 * (100vw)));  /* Start at real slide 1 */
    transition: transform 0.8s ease-in-out;
}

.hero-slider-track.no-transition {
    transition: none;
}

.slide {
    width: 100vw;
    height: 100%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

/* Hero content — same as before */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out 0.5s both;
    margin-top: 200px;
}

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

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    line-height: 1.2;
}

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

.hero-btn {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    margin-top: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255,165,0,0.4);
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    transition: left 0.4s ease;
}

.hero-btn:hover::before {
    left: 0;
}

.hero-btn span {
    position: relative;
    z-index: 1;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,165,0,0.6);
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: transparent;
    backdrop-filter: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: black;
    font-size: 22px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-btn:hover {
    background: rgba(255, 165, 0, 0.8);
    border-color: #ffa500;
    transform: translateY(-50%) scale(1.1);
}
.prev-btn {
    left: 25px;
}
.next-btn {
    right: 25px;
}


/* Responsive Slider Buttons */
@media (max-width: 768px) {
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .prev-btn {
        left: 10px;
    }
    .next-btn {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
        background: rgba(0, 0, 0, 0.1);
    }
    .prev-btn {
        left: 8px;
    }
    .next-btn {
        right: 8px;
    }
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: black;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active {
    background: #ffa500;
    transform: scale(1.3);
    width: 28px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 480px) {
    .dot { width: 8px; height: 8px; }
    .dot.active { width: 22px; }
    .slider-dots { bottom: 12px; gap: 7px; }
}




/* About Section */
.about {
    padding: 100px 50px;
    position: relative;
    overflow: hidden;
}

.about-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.15;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-img-main {
    position: absolute;
    width: 70%;
    height: 70%;
    top: 0;
    left: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: transform 0.5s ease;
    z-index: 2;
}

.about-img-main:hover {
    transform: scale(1.05) rotate(-2deg);
}

.about-img-small {
    position: absolute;
    width: 50%;
    height: 40%;
    bottom: 0;
    right: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 8px solid #fff;
    transition: transform 0.5s ease;
    z-index: 3;
}

.about-img-small:hover {
    transform: scale(1.05) rotate(2deg);
}

.about-img-main img, .about-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
}

.about-content h2 {
    font-size: 48px;
    color: #1a1a2e;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-content h2 span {
    color: #ffa500;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, #ffa500 0%, transparent 100%);
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-top: 30px;
    text-align: justify;
}

.about-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #ffa500;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255,165,0,0.3);
}

.about-btn:hover {
    background: #ff8c00;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,165,0,0.5);
}

/* Services Section */
.section-title {
    text-align: center;
    font-size: 48px;
    color: #1a1a2e;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title span {
    color: #ffa500;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 300px;
    height: 4px;
    background: linear-gradient(90deg, #ffa500 0%, transparent 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
}

.services {
    max-width: 1300px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
}

.service-card {
    position: relative;
    height: 300px;
    cursor: pointer;
    perspective: 1000px;
}

.card-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
    position: relative;
}

.service-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
}

.card-front {
    border: 2px solid #ff6b35;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3), inset 0 0 30px rgba(255, 107, 53, 0.1);
    z-index: 2;
}

.card-front::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b35, #ffa500, #ffb347, #ff6b35);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.card-front:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 80px;
    margin-bottom: 20px;
    display: inline-block;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}



@keyframes spin {
    0% { transform: rotateZ(0deg); }
    100% { transform: rotateZ(360deg); }
}

.card-front h3 {
    font-size: 20px;
    color: #ffa500;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 20px;
}

.card-back {
    background: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
    transform: rotateY(180deg);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
}

.card-back h3 {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-back p {
    font-size: 14px;
    color: #fff;
    line-height: 1.8;
    font-weight: 500;
}

/* Glassmorphism effect cards alternative */
.services-grid-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 120px;
}

.glass-card {
    background: rgba(255, 107, 53, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 25px;
    padding: 50px 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, #ff6b35, #ffa500, #ffb347, #ff6b35);
    animation: rotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.glass-card:hover::before {
    opacity: 0.3;
}

.glass-card-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.glass-card .service-icon {
    font-size: 70px;
    margin-bottom: 20px;
}

.glass-card h3 {
    font-size: 26px;
    color: #ffa500;
    margin-bottom: 15px;
    font-weight: 700;
}

.glass-card p {
    font-size: 15px;
    color: #ddd;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-20px) scale(1.05);
    border-color: rgba(255, 165, 0, 0.8);
    background: rgba(255, 107, 53, 0.2);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.3);
}

.glass-card:hover p {
    color: #fff;
}

/* Landmarks Section */
.landmarks {
    padding: 100px 50px;
    background: #fff;
}

.landmarks h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 500px;
    height: 4px;
    background: linear-gradient(90deg, #ffa500 0%, transparent 100%);
}

.landmarks-grid {
    max-width: 1400px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.landmark-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.landmark-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.landmark-card:hover .landmark-image {
    transform: scale(1.2);
}

.landmark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,46,0.95) 0%, rgba(255,165,0,0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.landmark-card:hover .landmark-overlay {
    opacity: 1;
}

.landmark-overlay h3 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.1s;
}

.landmark-card:hover .landmark-overlay h3 {
    transform: translateY(0);
}

.landmark-overlay p {
    color: #f0f0f0;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.2s;
}

.landmark-card:hover .landmark-overlay p {
    transform: translateY(0);
}

/* Recent Projects */
.projects {
    padding: 160px 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.projects h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 700px;
    height: 4px;
    background: linear-gradient(90deg, #ffa500 0%, transparent 100%);
}

.projects-grid {
    max-width: 1400px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.project-card {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.project-card:hover .project-image {
    transform: scale(1.2);
}

.project-card::before {
    display: none;
}

.project-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.project-card:hover .project-title {
    opacity: 1;
    transform: translateY(0);
}

/* Stats Section */
.stats {
    padding: 100px 50px;
    background: linear-gradient(135deg, #1e3c72 0%, #1e3c72 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="rgba(255,165,0,0.1)" stroke-width="2"/></svg>');
    opacity: 0.3;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 2px solid rgba(255,165,0,0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,165,0,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.stat-card:hover::before {
    width: 300px;
    height: 300px;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: #ffa500;
    box-shadow: 0 15px 40px rgba(255,165,0,0.3);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #ffa500;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.stats-content {
    color: #fff;
}

.stats-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.stats-content h2 span {
    color: #ffa500;
}

.stats-content p {
    font-size: 18px;
    line-height: 1.8;
    color: white;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 80px 50px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-about h3 {
    font-size: 28px;
    color: #ffa500;
    margin-bottom: 20px;
}

.footer-about p {
    color: white;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 20px;
    color: #ffa500;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #ffa500;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,165,0,0.2);
    padding-top: 30px;
    text-align: center;
    color: white;
}

.footer-bottom p a {
    color: white;
    text-decoration: none;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,165,0,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffa500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ffa500;
    color: #fff;
    transform: translateY(-5px);
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

/* Tablet View (768px - 1024px) */
@media (max-width: 1024px) {
    
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .about-container {
        gap: 50px;
    }
    
    .about-content h2 {
        font-size: 38px;
    }
    
    .landmarks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-container {
        gap: 50px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
    
    
    /* Hero Mobile */
    .hero-content {
        margin-top: 100px;
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-btn {
        padding: 15px 35px;
        font-size: 16px;
    }
    
    /* About Mobile */
    .about {
        padding: 60px 20px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-images {
        height: 400px;
    }
    
    .about-content h2 {
        font-size: 32px;
    }
    
    .about-content h2::after {
        width: 150px;
    }
    
    .about-content p {
        font-size: 15px;
        text-align: left;
    }
    
    /* Services Mobile */
    .services {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid-alt {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
    }
    
    /* Landmarks Mobile */
    .landmarks {
        padding: 60px 20px;
    }
    
    .landmarks-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .landmark-card {
        height: 350px;
    }
    
    /* Projects Mobile */
    .projects {
        padding: 100px 20px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Stats Mobile */
    .stats {
        padding: 60px 20px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-content h2 {
        font-size: 32px;
    }
    
    .stats-content p {
        font-size: 16px;
    }
    
    /* Footer Mobile */
    footer {
        padding: 60px 20px 30px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-about h3 {
        font-size: 24px;
    }
    
    .footer-col h4 {
        font-size: 18px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero{
        height: 27vh;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-images {
        height: 300px;
    }
    
    .about-content h2 {
        font-size: 28px;
    }
    
    .stats-content h2 {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 16px;
    }
}


@media (max-width: 375px) {
    .hero{
        height: 24vh;
    }
}


@media (max-width: 320px) {
    .hero{
        height: 21vh;
    }
}





        /* Clients Section */
        .clients-section {
            padding: 40px 30px;
            background: #fff;
        }

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

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

        .section-header-clients h2 {
            font-size: 36px;
            color: #1a1a2e;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .section-header-clients h2 span {
            color: #ffa500;
        }

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

        /* Carousel */
        .clients-carousel-wrapper {
            overflow: hidden;
        }

        .clients-carousel {
            display: flex;
            gap: 20px;
            animation: scrollClients 40s linear infinite;
        }

        .clients-carousel:hover {
            animation-play-state: paused;
        }

        @keyframes scrollClients {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .client-slide {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 200px;
            flex-shrink: 0;
        }

        .client-logo-box {
            width: 120px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .client-logo-box img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .clients-section {
                padding: 30px 20px;
            }

            .section-header-clients {
                margin-bottom: 30px;
            }

            .section-header-clients h2 {
                font-size: 28px;
            }

            .section-header-clients p {
                font-size: 14px;
            }

            .clients-carousel {
                gap: 15px;
            }

            .client-slide {
                min-width: 160px;
            }

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

        @media (max-width: 480px) {
            .clients-section {
                padding: 20px 15px;
            }

            .section-header-clients {
                margin-bottom: 25px;
            }

            .section-header-clients h2 {
                font-size: 24px;
            }

            .clients-carousel {
                gap: 12px;
            }

            .client-slide {
                min-width: 140px;
            }

            .client-logo-box {
                width: 90px;
                height: 60px;
            }
        }
        
        
        
        
          /* Vendors Section */
        .vendors-section {
            padding: 40px 30px;
            background: #fff;
        }

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

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

        .section-header-vendors h2 {
            font-size: 36px;
            color: #1a1a2e;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .section-header-vendors h2 span {
            color: #ffa500;
        }

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

        /* Carousel */
        .vendors-carousel-wrapper {
            overflow: hidden;
        }

        .vendors-carousel {
            display: flex;
            gap: 20px;
            animation: scrollVendors 40s linear infinite;
        }

        .vendors-carousel:hover {
            animation-play-state: paused;
        }

        @keyframes scrollVendors {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .vendor-slide {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 200px;
            flex-shrink: 0;
        }

        .vendor-logo-box {
            width: 120px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .vendor-logo-box img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .vendors-section {
                padding: 30px 20px;
            }

            .section-header-vendors {
                margin-bottom: 30px;
            }

            .section-header-vendors h2 {
                font-size: 28px;
            }

            .section-header-vendors p {
                font-size: 14px;
            }

            .vendors-carousel {
                gap: 15px;
            }

            .vendor-slide {
                min-width: 160px;
            }

            .vendor-logo-box {
                width: 100px;
                height: 70px;
            }
        }

        @media (max-width: 480px) {
            .vendors-section {
                padding: 20px 15px;
            }

            .section-header-vendors {
                margin-bottom: 25px;
            }

            .section-header-vendors h2 {
                font-size: 24px;
            }

            .vendors-carousel {
                gap: 12px;
            }

            .vendor-slide {
                min-width: 140px;
            }

            .vendor-logo-box {
                width: 90px;
                height: 60px;
            }
        }
        
        



/* About Page CSS */

/* Hero Section */
.about-hero {
    position: relative;
    height: 80vh;
    background: linear-gradient(135deg, #1e3c72 0%, #1e3c72 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/projects/5.jpg') center/cover;
    opacity: 0.15;
}

.hero-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 165, 0, 0.03) 10px,
        rgba(255, 165, 0, 0.03) 20px
    );
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    margin-top: 80px;
}

.about-hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

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

.about-hero-content p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
    font-size: 16px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.breadcrumb a {
    color: #ffa500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: #ff8c00;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* Main Story Section */
.story-section {
    padding: 120px 50px;
    background: #fff;
    position: relative;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-images {
    position: relative;
    height: 600px;
}

.story-img-1 {
    position: absolute;
    width: 75%;
    height: 65%;
    top: 0;
    left: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    z-index: 2;
    animation: slideInLeft 0.8s ease;
}

.story-img-2 {
    position: absolute;
    width: 55%;
    height: 45%;
    bottom: 0;
    right: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    border: 8px solid #fff;
    z-index: 3;
    animation: slideInRight 0.8s ease 0.2s both;
}

.story-img-1 img, .story-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-img-1:hover img, .story-img-2:hover img {
    transform: scale(1.1);
}

.orange-circle {
    position: absolute;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.story-content {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.story-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.story-content h2 {
    font-size: 48px;
    color: #1a1a2e;
    margin-bottom: 25px;
    line-height: 1.2;
}

.story-content h2 span {
    color: #ffa500;
}

.story-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.highlight-text {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 140, 0, 0.1));
    padding: 30px;
    border-left: 4px solid #ffa500;
    border-radius: 10px;
    margin: 30px 0;
    font-style: italic;
    color: #333;
}

/* Vision Mission Section */
.vision-mission {
    padding: 100px 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.vm-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 48px;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.section-header h2 span {
    color: #ffa500;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.vm-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ffa500, #ff8c00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 165, 0, 0.2);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
}

.vm-card h3 {
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.vm-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Values Section */
.values-section {
    padding: 100px 50px;
    background: #fff;
}

.values-grid {
    max-width: 1400px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 25px;
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 140, 0, 0.1));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.value-card:hover::before {
    width: 300px;
    height: 300px;
}

.value-card:hover {
    border-color: #ffa500;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.2);
}

.value-icon {
    font-size: 50px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.value-card h4 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.value-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Leadership Section */
.leadership-section {
    padding: 100px 50px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.leadership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 50px,
        rgba(255, 165, 0, 0.03) 50px,
        rgba(255, 165, 0, 0.03) 100px
    );
}

.leadership-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.leadership-header {
    text-align: center;
    margin-bottom: 80px;
    color: #fff;
}

.leadership-header h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.leadership-header h2 span {
    color: #ffa500;
}

.leadership-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.leader-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 25px;
    padding: 60px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.leader-img {
    width: 300px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 5px solid rgba(255, 165, 0, 0.5);
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info h3 {
    font-size: 36px;
    color: #ffa500;
    margin-bottom: 10px;
}

.leader-info h4 {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-weight: 400;
}

.leader-info p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.experience-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 50px;
    background: #fff;
}

.timeline-container {
    max-width: 1200px;
    margin: 60px auto 0;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ffa500, #ff8c00);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 2;
}

.timeline-item:nth-child(even) .timeline-year {
    order: 1;
    text-align: left;
}

.timeline-content {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.timeline-content:hover {
    border-color: #ffa500;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.2);
}

.timeline-content h3 {
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.timeline-year {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.year-badge {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #ffa500;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px rgba(255, 165, 0, 0.3);
    z-index: 2;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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


/* ============================================
   ABOUT PAGE RESPONSIVE CSS
   ============================================ */

/* Tablet View (768px - 1024px) */
@media (max-width: 1024px) {
    .about-hero-content h1 {
        font-size: 52px;
    }
    
    .about-hero-content p {
        font-size: 18px;
    }
    
    .story-container {
        gap: 50px;
    }
    
    .story-content h2 {
        font-size: 38px;
    }
    
    .section-header h2 {
        font-size: 38px;
    }
    
    .vm-grid {
        gap: 35px;
    }
    
    .vm-card h3 {
        font-size: 28px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .leader-card {
        gap: 40px;
        padding: 40px;
    }
    
    .leader-img {
        width: 250px;
        height: 300px;
    }
    
    .leader-info h3 {
        font-size: 30px;
    }
    
    .timeline-item {
        gap: 50px;
    }
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .about-hero {
        height: 60vh;
    }
    
    .about-hero-content {
        margin-top: 50px;
        padding: 0 15px;
    }
    
    .about-hero-content h1 {
        font-size: 36px;
    }
    
    .about-hero-content p {
        font-size: 16px;
    }
    
    .breadcrumb {
        font-size: 14px;
        flex-wrap: wrap;
    }
    
    /* Story Section Mobile */
    .story-section {
        padding: 60px 20px;
    }
    
    .story-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-images {
        height: 400px;
        order: 2;
    }
    
    .story-content {
        order: 1;
    }
    
    .story-content h2 {
        font-size: 32px;
    }
    
    .story-content p {
        font-size: 15px;
        text-align: left;
    }
    
    .highlight-text {
        padding: 20px;
        margin: 20px 0;
    }
    
    /* Vision Mission Mobile */
    .vision-mission {
        padding: 60px 20px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vm-card {
        padding: 35px 25px;
    }
    
    .vm-card h3 {
        font-size: 26px;
    }
    
    .vm-card p {
        font-size: 15px;
    }
    
    /* Values Section Mobile */
    .values-section {
        padding: 60px 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    /* Leadership Section Mobile */
    .leadership-section {
        padding: 60px 20px;
    }
    
    .leadership-header {
        margin-bottom: 50px;
    }
    
    .leadership-header h2 {
        font-size: 32px;
    }
    
    .leadership-header p {
        font-size: 16px;
    }
    
    .leader-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .leader-img {
        width: 100%;
        height: 300px;
        margin: 0 auto;
    }
    
    .leader-info h3 {
        font-size: 28px;
        text-align: center;
    }
    
    .leader-info h4 {
        font-size: 18px;
        text-align: center;
    }
    
    .leader-info p {
        font-size: 15px;
        text-align: left;
    }
    
    .experience-badge {
        display: block;
        text-align: center;
        margin: 20px auto 0;
        width: fit-content;
    }
    
    /* Timeline Section Mobile */
    .timeline-section {
        padding: 60px 20px;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 50px;
        padding-left: 50px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        order: 1;
    }
    
    .timeline-item:nth-child(even) .timeline-year {
        order: 2;
        text-align: left;
        justify-content: flex-start;
    }
    
    .timeline-year {
        text-align: left;
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .year-badge {
        padding: 10px 25px;
        font-size: 22px;
    }
    
    .timeline-content {
        padding: 25px;
    }
    
    .timeline-content h3 {
        font-size: 20px;
    }
    
    .timeline-content p {
        font-size: 14px;
    }
    
    .timeline-dot {
        left: 20px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 28px;
    }
    
    .about-hero-content p {
        font-size: 14px;
    }
    
    .story-content h2 {
        font-size: 26px;
    }
    
    .story-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .vm-card h3 {
        font-size: 22px;
    }
    
    .vm-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .leadership-header h2 {
        font-size: 26px;
    }
    
    .leader-info h3 {
        font-size: 24px;
    }
    
    .year-badge {
        font-size: 18px;
        padding: 8px 20px;
    }
    
    .timeline-content h3 {
        font-size: 18px;
    }
}




/* Contact Page - Optimized */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    height: 45vh;
    background: linear-gradient(135deg, #1e3c72 0%, #1e3c72 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/projects/8.jpg') center/cover;
    opacity: 0.1;
}

.contact-hero-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 40px,
        rgba(255, 165, 0, 0.02) 40px,
        rgba(255, 165, 0, 0.02) 80px
    );
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    margin-top: 30px;
}

.contact-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    animation: contactFadeInUp 0.8s ease;
}

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

.contact-hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    animation: contactFadeInUp 0.8s ease 0.2s both;
}

.contact-breadcrumb {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    font-size: 14px;
    animation: contactFadeInUp 0.8s ease 0.4s both;
}

.contact-breadcrumb a {
    color: #ffa500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-breadcrumb a:hover {
    color: #ff8c00;
}

.contact-breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* Contact Main Section */
.contact-main-section {
    padding: 70px 40px;
    background: #fff;
}

.contact-main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info Cards */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #ffa500, #ff8c00);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.contact-info-card:hover::before {
    transform: scaleY(1);
}

.contact-info-card:hover {
    border-color: #ffa500;
    transform: translateX(8px);
    box-shadow: 0 12px 30px rgba(255, 165, 0, 0.12);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 15px;
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.25);
}

.contact-info-card h3 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.contact-info-card a {
    color: #ffa500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-card a:hover {
    color: #ff8c00;
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(135deg, #1e3c72 0%, #1e3c72 100%);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 35px;
}

.contact-form-header h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 8px;
}

.contact-form-header h2 span {
    color: #ffa500;
}

.contact-form-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 165, 0, 0.25);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffa500;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.15);
}

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

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a2e;
    color: #fff;
}

.submit-btn {
    padding: 15px 40px;
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    transition: left 0.4s ease;
}

.submit-btn:hover::before {
    left: 0;
}

.submit-btn span {
    position: relative;
    z-index: 1;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 165, 0, 0.4);
}

/* Map Section */
.contact-map-section {
    padding: 0;
    background: #f8f9fa;
}

.contact-map-container {
    width: 100%;
    height: 450px;
    position: relative;
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
}

/* Quick Info Banner */
.quick-info-banner {
    padding: 60px 40px;
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    position: relative;
    overflow: hidden;
}

.quick-info-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.05) 20px,
        rgba(255, 255, 255, 0.05) 40px
    );
}

.quick-info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.quick-info-item {
    text-align: center;
    color: #fff;
}

.quick-info-item h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.quick-info-item p {
    font-size: 16px;
    font-weight: 500;
}

/* Animations */
@keyframes contactFadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design - Contact Page */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .contact-main-section {
        padding: 60px 30px;
    }

    .contact-main-container {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 100%;
    }

    .contact-form-wrapper {
        padding: 35px;
    }

    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .contact-map-container {
        height: 400px;
    }
}

/* Tablet Small - 768px and below */
@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
    }

    .contact-hero-content {
        margin-top: 40px;
    }

    .contact-hero-content h1 {
        font-size: 36px;
    }

    .contact-hero-content p {
        font-size: 16px;
    }

    .contact-main-section {
        padding: 50px 25px;
    }

    .contact-main-container {
        gap: 40px;
    }

    .contact-info-card {
        padding: 25px;
    }

    .contact-info-card:hover {
        transform: translateX(5px);
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .contact-form-header h2 {
        font-size: 28px;
    }

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

    .quick-info-banner {
        padding: 50px 25px;
    }

    .quick-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .quick-info-item h3 {
        font-size: 36px;
    }

    .quick-info-item p {
        font-size: 15px;
    }

    .contact-map-container {
        height: 350px;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
    .contact-hero {
        height: 45vh;
    }

    .contact-hero-content {
        margin-top: 30px;
    }

    .contact-hero-content h1 {
        font-size: 28px;
    }

    .contact-hero-content p {
        font-size: 14px;
    }

    .contact-breadcrumb {
        font-size: 12px;
    }

    .contact-main-section {
        padding: 40px 18px;
    }

    .contact-info-card {
        padding: 20px;
    }

    .contact-info-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .contact-info-card h3 {
        font-size: 18px;
    }

    .contact-info-card p {
        font-size: 14px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-form-header h2 {
        font-size: 24px;
    }

    .contact-form-header p {
        font-size: 13px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 11px 14px;
        font-size: 13px;
    }

    .form-group textarea {
        min-height: 110px;
    }

    .submit-btn {
        padding: 13px 30px;
        font-size: 15px;
        width: 100%;
    }

    .quick-info-banner {
        padding: 40px 18px;
    }

    .quick-info-item h3 {
        font-size: 32px;
    }

    .quick-info-item p {
        font-size: 14px;
    }

    .contact-map-container {
        height: 280px;
    }
}

/* Extra Small Mobile - 375px and below */
@media (max-width: 375px) {
    .contact-hero-content h1 {
        font-size: 24px;
    }

    .contact-hero-content p {
        font-size: 13px;
    }

    .contact-form-header h2 {
        font-size: 22px;
    }

    .quick-info-item h3 {
        font-size: 28px;
    }
}

/* Landscape Mode for Tablets */
@media (max-width: 1024px) and (orientation: landscape) {
    .contact-hero {
        height: 80vh;
    }

    .contact-hero-content {
        margin-top: 60px;
    }
}

/* Landscape Mode for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .contact-hero {
        height: 100vh;
    }

    .contact-hero-content h1 {
        font-size: 32px;
    }
}






        /* Service Page */

        /* Services Hero Section */
        .services-hero {
            position: relative;
            height: 75vh;
            background: linear-gradient(135deg, #1e3c72 0%, #1e3c72 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .services-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../images/projects/6.jpg') center/cover;
            opacity: 0.12;
        }

        .services-hero-pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
        }

        .services-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
            padding: 0 20px;
            margin-top: 100px;
        }

        .services-hero-content h1 {
            font-size: 68px;
            font-weight: 800;
            margin-bottom: 20px;
            animation: servicesFadeInUp 0.8s ease;
        }

        .services-hero-content h1 span {
            color: #ffa500;
            display: block;
            font-size: 48px;
            margin-top: 10px;
        }

        .services-hero-content p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto;
            animation: servicesFadeInUp 0.8s ease 0.2s both;
        }

        .services-breadcrumb {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-top: 30px;
            font-size: 16px;
            animation: servicesFadeInUp 0.8s ease 0.4s both;
        }

        .services-breadcrumb a {
            color: #ffa500;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .services-breadcrumb a:hover {
            color: #ff8c00;
        }

        .services-breadcrumb span {
            color: rgba(255, 255, 255, 0.6);
        }

        /* Services Main Section */
        .services-main-section {
            padding: 100px 50px;
            background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
        }

        .services-intro {
            max-width: 900px;
            margin: 0 auto 80px;
            text-align: center;
        }

        .services-intro h2 {
            font-size: 42px;
            color: #1a1a2e;
            margin-bottom: 20px;
        }

        .services-intro h2 span {
            color: #ffa500;
        }

        .services-intro p {
            font-size: 17px;
            line-height: 1.8;
            color: #555;
        }

      
/* Service Cards Container */
.service-cards-container {
    max-width: 1400px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Individual Service Card */
.service-detail-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffa500, #ff8c00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(255, 165, 0, 0.15);
}

.service-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Service Image */
.service-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    opacity: 0.9;
}

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

.service-icon-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.4);
    z-index: 2;
    animation: serviceFloat 3s ease-in-out infinite;
}

@keyframes serviceFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Service Info */
.service-card-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 140, 0, 0.1));
    color: #ffa500;
    padding: 5px 14px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 12px;
    width: fit-content;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-card-info h3 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-weight: 700;
}

.service-short-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-cta-button {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 18px rgba(255, 165, 0, 0.3);
    position: relative;
    overflow: hidden;
    width: fit-content;
    margin-top: auto;
}

.service-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    transition: left 0.4s ease;
}

.service-cta-button:hover::before {
    left: 0;
}

.service-cta-button span {
    position: relative;
    z-index: 1;
}

.service-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
}

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

.popup-content {
    background: #fff;
    width: 400px;
    max-width: 90%;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    animation: popupScale 0.3s ease;
}

@keyframes popupScale {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.popup-content img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.popup-content h2 {
    margin-bottom: 10px;
    color: #1a1a2e;
}

.popup-content p {
    font-size: 13px;
    color: #555;
    margin-bottom: 15px;
}

.popup-form input,
.popup-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 12px;
}

.popup-form button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}



        /* Why Choose Section */
        .why-choose-section {
            padding: 100px 50px;
            background: linear-gradient(135deg, #1e3c72 0%, #1e3c72 100%);
            position: relative;
            overflow: hidden;
        }

        .why-choose-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 30px,
                rgba(255, 165, 0, 0.02) 30px,
                rgba(255, 165, 0, 0.02) 60px
            );
        }

        .why-choose-header {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
            z-index: 1;
        }

        .why-choose-header h2 {
            font-size: 48px;
            color: #fff;
            margin-bottom: 15px;
        }

        .why-choose-header h2 span {
            color: #ffa500;
        }

        .why-choose-header p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
        }

        .why-choose-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 35px;
            position: relative;
            z-index: 1;
        }

        .why-choose-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 165, 0, 0.2);
            border-radius: 20px;
            padding: 40px 25px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            position: relative;
            overflow: hidden;
        }

        .why-choose-card::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(255, 165, 0, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .why-choose-card:hover::before {
            width: 300px;
            height: 300px;
        }

        .why-choose-card:hover {
            transform: translateY(-15px);
            border-color: #ffa500;
            box-shadow: 0 20px 50px rgba(255, 165, 0, 0.3);
        }

        .why-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #ffa500, #ff8c00);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 35px;
            margin: 0 auto 25px;
            box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
            position: relative;
            z-index: 1;
            transition: transform 0.4s ease;
        }

        .why-choose-card:hover .why-icon {
            transform: rotateY(360deg);
        }

        .why-choose-card h4 {
            font-size: 20px;
            color: #fff;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .why-choose-card p {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
            position: relative;
            z-index: 1;
        }

        /* CTA Section */
        .services-cta-section {
            padding: 80px 50px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }

        .services-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 30px,
                rgba(255, 165, 0, 0.03) 30px,
                rgba(255, 165, 0, 0.03) 60px
            );
        }

        .services-cta-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .services-cta-content h2 {
            font-size: 42px;
            color: #1a1a2e;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .services-cta-content h2 span {
            color: #ffa500;
        }

        .services-cta-content p {
            font-size: 18px;
            color: #555;
            margin-bottom: 35px;
        }

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

        .cta-btn-primary, .cta-btn-secondary {
            padding: 16px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s ease;
            display: inline-block;
        }

        .cta-btn-primary {
            background: linear-gradient(135deg, #ffa500, #ff8c00);
            color: #fff;
            box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3);
        }

        .cta-btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(255, 165, 0, 0.4);
        }

        .cta-btn-secondary {
            background: #fff;
            color: #ffa500;
            border: 2px solid #ffa500;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .cta-btn-secondary:hover {
            background: #ffa500;
            color: #fff;
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3);
        }

        /* Animations */
        @keyframes servicesFadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


       /* Responsive Design - Services Page */

/* Large Desktop - 1400px and below */
@media (max-width: 1400px) {
    .service-cards-container {
        padding: 0 20px;
    }

    .why-choose-grid {
        padding: 0 20px;
    }
}

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .services-hero-content h1 {
        font-size: 56px;
    }

    .services-hero-content h1 span {
        font-size: 40px;
    }

    .service-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .services-main-section {
        padding: 80px 40px;
    }

    .why-choose-section {
        padding: 80px 40px;
    }

    .services-cta-section {
        padding: 70px 40px;
    }

    .services-intro {
        margin-bottom: 60px;
    }

    .services-intro h2 {
        font-size: 38px;
    }

    .why-choose-header h2 {
        font-size: 42px;
    }

    .services-cta-content h2 {
        font-size: 38px;
    }
}

/* Tablet Small - 768px and below */
@media (max-width: 768px) {
    .services-hero {
        height: 65vh;
    }

    .services-hero-content {
        margin-top: 80px;
    }

    .services-hero-content h1 {
        font-size: 42px;
    }

    .services-hero-content h1 span {
        font-size: 32px;
    }

    .services-hero-content p {
        font-size: 18px;
    }

    .services-breadcrumb {
        font-size: 14px;
    }

    .services-main-section {
        padding: 70px 30px;
    }

    .services-intro h2 {
        font-size: 34px;
    }

    .services-intro p {
        font-size: 16px;
    }

    .service-cards-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-card:hover {
        transform: translateY(-5px);
    }

    .service-card-image {
        height: 220px;
    }

    .service-card-info {
        padding: 30px;
    }

    .service-card-info h3 {
        font-size: 22px;
    }

    .service-features-list li {
        font-size: 14px;
    }

    .service-cta-button {
        padding: 12px 28px;
        font-size: 14px;
    }

    .why-choose-section {
        padding: 70px 30px;
    }

    .why-choose-header {
        margin-bottom: 50px;
    }

    .why-choose-header h2 {
        font-size: 36px;
    }

    .why-choose-header p {
        font-size: 16px;
    }

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

    .why-choose-card {
        padding: 35px 25px;
    }

    .why-choose-card:hover {
        transform: translateY(-8px);
    }

    .services-cta-section {
        padding: 60px 30px;
    }

    .services-cta-content h2 {
        font-size: 34px;
    }

    .services-cta-content p {
        font-size: 16px;
    }

    .cta-buttons {
        gap: 15px;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
    .services-hero {
        height: 55vh;
    }

    .services-hero-content {
        margin-top: 60px;
    }

    .services-hero-content h1 {
        font-size: 32px;
    }

    .services-hero-content h1 span {
        font-size: 26px;
        margin-top: 8px;
    }

    .services-hero-content p {
        font-size: 16px;
    }

    .services-breadcrumb {
        font-size: 13px;
    }

    .services-main-section {
        padding: 60px 20px;
    }

    .services-intro {
        margin-bottom: 50px;
    }

    .services-intro h2 {
        font-size: 28px;
    }

    .services-intro p {
        font-size: 15px;
    }

    .service-cards-container {
        gap: 25px;
    }

    .service-card-image {
        height: 180px;
    }

    .service-icon-badge {
        width: 50px;
        height: 50px;
        font-size: 24px;
        top: 12px;
        left: 12px;
    }

    .service-card-info {
        padding: 25px 20px;
    }

    .service-category {
        font-size: 9px;
        padding: 4px 12px;
    }

    .service-card-info h3 {
        font-size: 20px;
    }

    .service-features-list {
        gap: 7px;
    }

    .service-features-list li {
        font-size: 13px;
    }

    .service-features-list li::before {
        width: 16px;
        height: 16px;
        font-size: 8px;
    }

    .service-cta-button {
        padding: 11px 26px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }

    .why-choose-section {
        padding: 60px 20px;
    }

    .why-choose-header {
        margin-bottom: 40px;
    }

    .why-choose-header h2 {
        font-size: 28px;
    }

    .why-choose-header p {
        font-size: 15px;
    }

    .why-choose-grid {
        gap: 20px;
    }

    .why-choose-card {
        padding: 30px 20px;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .why-choose-card h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .why-choose-card p {
        font-size: 13px;
    }

    .services-cta-section {
        padding: 50px 20px;
    }

    .services-cta-content h2 {
        font-size: 28px;
    }

    .services-cta-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-btn-primary, .cta-btn-secondary {
        padding: 14px 35px;
        font-size: 15px;
        width: 100%;
        text-align: center;
    }
}

/* Extra Small Mobile - 375px and below */
@media (max-width: 375px) {
    .services-hero-content h1 {
        font-size: 28px;
    }

    .services-hero-content h1 span {
        font-size: 24px;
    }

    .services-hero-content p {
        font-size: 15px;
    }

    .services-intro h2 {
        font-size: 26px;
    }

    .service-card-info h3 {
        font-size: 18px;
    }

    .why-choose-header h2 {
        font-size: 26px;
    }

    .services-cta-content h2 {
        font-size: 26px;
    }
}

/* Landscape Mode for Tablets */
@media (max-width: 1024px) and (orientation: landscape) {
    .services-hero {
        height: 100vh;
    }

    .services-hero-content {
        margin-top: 120px;
    }
}

/* Landscape Mode for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .services-hero {
        height: 120vh;
    }

    .services-hero-content h1 {
        font-size: 36px;
    }

    .services-hero-content h1 span {
        font-size: 28px;
    }
}

/* Very Small Screens - 320px */
@media (max-width: 320px) {
    .services-hero-content h1 {
        font-size: 26px;
    }

    .services-hero-content h1 span {
        font-size: 22px;
    }

    .services-intro h2 {
        font-size: 24px;
    }

    .why-choose-header h2 {
        font-size: 24px;
    }

    .services-cta-content h2 {
        font-size: 24px;
    }

    .service-card-info {
        padding: 20px 15px;
    }

    .why-choose-card {
        padding: 25px 15px;
    }
    
    
    

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    z-index: 99999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7);
    background: #20ba5a;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    right: 70px;
    pointer-events: auto;
}

.whatsapp-tooltip {
    position: absolute;
    right: 50px;
    background: #1e3c72;
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: #1e3c72;
}

@keyframes whatsapp-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .whatsapp-float {
        bottom: 25px;
        right: 25px;
        width: 58px;
        height: 58px;
    }
}

/* Tablet Portrait - 768px */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
    .whatsapp-tooltip {
        display: none; /* tooltip hide - mobile pe space nahi */
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Small Mobile - 360px */
@media (max-width: 360px) {
    .whatsapp-float {
        bottom: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
    }
    .whatsapp-float svg {
        width: 22px;
        height: 22px;
    }
}
