* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #E42527;
    --secondary-color: #F8F9FA;
    --accent-color: #FF6B35;
    --text-dark: #1F1F1F;
    --text-light: #666666;
    --white: #ffffff;
    --red-dark: #C41E3A;
    --green-accent: #00A86B;
    --blue-accent: #0077BE;
    --yellow-accent: #FFD700;
    --gray-border: #E5E5E5;
}

body {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

/* Global Responsive Typography */
@media (max-width: 1024px) {
    body {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
}

h1, h2, h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text-dark);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Global Responsive Container */
@media (max-width: 1600px) {
    .container {
        max-width: 1300px;
        padding: 0 40px;
    }
}

@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
        padding: 0 35px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 900px;
        padding: 0 25px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    display: none;
}

.header-menu {
    display: flex;
    gap: 60px;
    align-items: center;
}

.header-menu-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.header-menu-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.header-menu-link:hover {
    color: var(--primary-color);
}

.header-menu-link:hover::after {
    width: 100%;
}

.header-menu-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.header-menu-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(45, 45, 45, 0.7) 100%);
    z-index: 1;
}

.hero-logo {
    position: absolute;
    top: 100px;
    left: 60px;
    z-index: 2;
}

.hero-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo img:hover {
    transform: scale(1.05);
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 76px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInUp 1s ease;
    letter-spacing: -0.04em;
}

.hero-title{
    color: #ffffff;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.2s backwards;
    letter-spacing: 0;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border: none;
    animation: fadeInUp 1s ease 0.4s backwards;
    box-shadow: 0 4px 14px rgba(228, 37, 39, 0.25);
    text-shadow: none;
    position: relative;
    overflow: hidden;
    font-size: 15px;
    border-radius: 4px;
}

.btn-primary::before {
    display: none;
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(228, 37, 39, 0.35);
}

/* Analysis Section */
.analysis {
    padding: 120px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 80px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.analysis-card {
    padding: 50px 35px;
    background: var(--secondary-color);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.analysis-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(228, 37, 39, 0.12);
    border-color: var(--primary-color);
}

.analysis-icon {
    font-size: 48px;
    margin-bottom: 25px;
}

.analysis-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.analysis-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.service-card.expanded {
    grid-column: span 2;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-content {
    padding: 35px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.expand-icon {
    font-size: 32px;
    font-weight: 300;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.service-card.expanded .expand-icon {
    transform: rotate(45deg);
}

.service-preview {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    margin-top: 0;
}

.service-card.expanded .service-details {
    max-height: 500px;
    margin-top: 20px;
}

.service-details p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-details ul {
    list-style: none;
    padding-left: 0;
}

.service-details ul li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-details ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-logo {
        top: 90px;
        left: 30px;
    }
    
    .hero-logo img {
        height: 45px;
    }
    
    .analysis-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--white);
    opacity: 1;
    transform: translateY(0);
}

.about.visible {
    opacity: 1;
    transform: translateY(0);
}

.about .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.about-card {
    background: var(--secondary-color);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(228, 37, 39, 0.1);
    border-color: var(--primary-color);
}

.about-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

.about-stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d2d2d 100%);
    padding: 60px 50px;
    border-radius: 10px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.stats-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.stats-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 45, 45, 0.85) 100%);
    z-index: 1;
}

.stats-content {
    position: relative;
    z-index: 2;
}

.stats-title {
    text-align: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 50px;
    font-weight: 600;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-top: -60px;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Portfolio Section */
.portfolio {
    padding: 120px 0;
    background: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-content {
    
    margin-top: auto;
}

.portfolio-overlay h3 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    font-size: 16px;
    opacity: 0.9;
}

.portfolio-social-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.portfolio-social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    color: var(--white);
    transform: scale(1.1);
}

/* Team Section - Tata Style */
.team {
    padding: 120px 0;
    background: var(--secondary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    perspective: 1000px;
    height: 500px;
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.team-card:hover .team-card-inner {
    transform: rotateY(180deg);
}

.team-card-front,
.team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    background: var(--white);
    overflow: hidden;
}

.team-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-card-front img {
    transform: scale(1.1);
}

.team-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    text-align: left;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
}

.team-card-info h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 600;
}

.team-card-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.team-card-back {
    background: var(--white);
    transform: rotateY(180deg);
    display: flex;
}

.team-card-back-image {
    width: 40%;
    height: 100%;
    overflow: hidden;
}

.team-card-back-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-content {
    width: 60%;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d2d2d 100%);
    color: var(--white);
}

.team-card-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--white);
}

.team-position {
    font-size: 12px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.team-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.team-contact {
    margin-top: 15px;
}

.team-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 3px;
}

.team-link:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}

.team-member {
    background: var(--white);
    text-align: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.4s ease;
}

.team-member:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f5f5f5;
}

.team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 40px 30px 30px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.team-member:hover .team-overlay {
    transform: translateY(0);
}

.team-overlay .team-bio {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
}

.team-info {
    padding: 30px 25px;
    background: var(--white);
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.team-role {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.team-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.team-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-light);
}

.team-detail-icon {
    font-size: 16px;
    color: var(--accent-color);
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.team-social a {
    width: 35px;
    height: 35px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Contact Section */



    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }


@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-stats-section {
        padding: 40px 30px;
    }
    
    .stats-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
}
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-image-wrapper {
        height: 350px;
    }
    
    .portfolio-item {
        height: 300px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-left,
    .footer-bottom-right {
        flex-direction: column;
        gap: 15px;
    }


/* Customer Reviews Section */
.reviews {
    padding: 120px 0;
    background: var(--secondary-color);
}

.reviews-slider {
    position: relative;
    margin-top: 60px;
}

.reviews-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
}

.reviews-container::-webkit-scrollbar {
    display: none;
}

.review-card {
    min-width: 400px;
    background: var(--white);
    padding: 40px;
    flex-shrink: 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
}

.review-author {
    display: flex;
    gap: 15px;
    align-items: center;
}

.review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.review-author p {
    font-size: 13px;
    color: var(--text-light);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.slider-btn-prev {
    left: -25px;
}

.slider-btn-next {
    right: -25px;
}

/* Client Logos Section */
.clients {
    padding: 100px 0;
    background: var(--white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
    align-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.client-logo:hover {
    transform: scale(1.05);
    opacity: 1;
}

.client-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* Certifications Section */
.certifications {
    padding: 120px 0;
    background: var(--secondary-color);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.cert-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.cert-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(228, 37, 39, 0.1);
}

.cert-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.cert-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.cert-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Responsive Updates for New Sections */
@media (max-width: 768px) {
    .review-card {
        min-width: 300px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .slider-btn-prev {
        left: -10px;
    }
    
    .slider-btn-next {
        right: -10px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .header-container {
        padding: 0 20px;
    }
    
    .header-menu {
        position: static;
        transform: none;
        gap: 10px;
    }
    
    .header-menu-link {
        padding: 15px 10px;
        font-size: 11px;
    }
    
    .header-actions {
        display: none;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-card {
        height: 450px;
    }
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
    
    
    .logo {
        font-size: 18px;
    }

/* Social Media & Inquiry Section - Infosys Asymmetric Style */
.connect-section {
    padding: 100px 0;
    background: var(--secondary-color);
}

.connect-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: stretch;
}

/* Social Media Card - Larger, Asymmetric */
.social-connect-card {
    background: var(--white);
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-color);
}

.social-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.social-content > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.social-link-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.social-link-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.social-link-card.facebook:hover {
    border-left-color: #1877F2;
}

.social-link-card.twitter:hover {
    border-left-color: #000000;
}

.social-link-card.linkedin:hover {
    border-left-color: #0A66C2;
}

.social-link-card.instagram:hover {
    border-left-color: #E4405F;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.social-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.social-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.social-handle {
    font-size: 13px;
    color: var(--text-light);
}

/* Inquiry Card - Smaller, Complementary */
.inquiry-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--red-dark) 100%);
    padding: 50px 40px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(228, 37, 39, 0.3);
}

.inquiry-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.inquiry-content > p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.contact-value {
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

a.contact-value:hover {
    color: var(--yellow-accent);
    transform: translateX(3px);
}

.btn-inquiry {
    display: inline-block;
    padding: 14px 32px;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-inquiry:hover {
    background: var(--yellow-accent);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Connect Section Responsive */
@media (max-width: 1024px) {
    .connect-grid {
        grid-template-columns: 1fr;
    }
    
    .social-connect-card {
        padding: 40px;
    }
    
    .inquiry-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .connect-section {
        padding: 80px 0;
    }
    
    .social-connect-card {
        padding: 30px 20px;
    }
    
    .social-content h2 {
        font-size: 32px;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
    }
    
    .inquiry-content h2 {
        font-size: 28px;
    }
}

/* Footer - Zoho Style */
.footer {
    background: #ffffff;
    color: #1a1a1a;
    padding: 0;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-main {
    padding: 80px 0 60px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    border-bottom: 1px solid #e0e0e0;
}

/* Footer Brand Section */
.footer-brand-section {
    max-width: 400px;
}

.footer-logo {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.footer-tagline {
    font-size: 16px;
    color: #E42527;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 30px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social-links .social-link:hover {
    background: #E42527 !important;
    color: #ffffff !important;
    transform: translateY(-3px);
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-col ul li a:hover {
    color: #E42527 !important;
    padding-left: 5px;
}

/* Footer Bottom Bar */
.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: #999999;
    font-size: 13px;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 30px;
}

.footer-legal-links a {
    color: #999999;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #E42527 !important;
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-main {
        padding: 60px 0 40px;
        gap: 40px;
    }
    
    .footer-logo {
        font-size: 28px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-social-links .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* Page Styles - Tata Innovation Style */
.page-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    margin-top: 70px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    margin: 0 10px;
}

.page-hero-title {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Page Intro */
.page-intro {
    padding: 80px 0;
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.intro-stat {
    text-align: center;
    padding: 20px;
    background: var(--secondary-color);
}

.intro-stat h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.intro-stat p {
    font-size: 14px;
    color: var(--text-light);
}

/* Page Services */
.page-services {
    padding: 80px 0;
    background: var(--secondary-color);
}

.services-grid-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-item-page {
    background: var(--white);
    padding: 40px;
    transition: all 0.3s ease;
}

.service-item-page:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-item-page h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-item-page p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Page Features */
.page-features {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.feature-large {
    grid-row: span 2;
    position: relative;
    overflow: hidden;
}

.feature-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 40px;
    color: var(--white);
}

.feature-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.feature-content p {
    font-size: 16px;
    line-height: 1.7;
}

.feature-small {
    background: var(--secondary-color);
    padding: 30px;
}

.feature-small h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-small ul {
    list-style: none;
}

.feature-small ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-light);
}

.feature-small ul li:last-child {
    border-bottom: none;
}

/* Page Vision Video Section */
.page-vision {
    position: relative;
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.vision-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.vision-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 45, 45, 0.85) 100%);
    z-index: 1;
}

.page-vision .container {
    position: relative;
    z-index: 2;
}

.vision-content {
    max-width: 900px;
    color: var(--white);
}

.vision-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--white);
}

.vision-lead {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.vision-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
}

.vision-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.vision-point {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.vision-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.vision-point h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--white);
}

.vision-point p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.btn-back {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 14px rgba(228, 37, 39, 0.25);
    text-shadow: none;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.btn-back::before {
    display: none;
}

.btn-back:hover {
    background: var(--red-dark);
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(228, 37, 39, 0.35);
}

.header-menu-link.active {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .intro-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-large {
        grid-row: span 1;
        height: 400px;
    }
    
    .vision-points {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-hero-title {
        font-size: 36px;
    }
    
    .services-grid-page {
        grid-template-columns: 1fr;
    }
    
    .vision-content h2 {
        font-size: 36px;
    }
    
    .vision-lead {
        font-size: 22px;
    }
    
    .vision-description {
        font-size: 16px;
    }
}

/* Page Header with Back to Home */
.header-container-page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.btn-home {
    padding: 10px 24px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(228, 37, 39, 0.2);
    text-shadow: none;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.btn-home::before {
    display: none;
}

.btn-home:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(228, 37, 39, 0.3);
}

/* Products Showcase */
.container-full {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.products-showcase {
    padding: 80px 0;
    background: var(--secondary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 50px;
}

.product-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.product-item:nth-child(even) {
    direction: rtl;
}

.product-item:nth-child(even) > * {
    direction: ltr;
}

.product-image {
    height: 400px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.product-content > p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.product-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.product-features li {
    padding: 12px 15px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 14px;
    border-left: 3px solid var(--accent-color);
}

/* Process Timeline */
.process-section {
    padding: 80px 0;
    background: var(--white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-step p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-text h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.benefits-image {
    height: 500px;
    overflow: hidden;
}

.benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ideology Section */
.ideology-section {
    padding: 80px 0;
    background: var(--white);
}

.ideology-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ideology-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.ideology-header p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.ideology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ideology-card {
    padding: 40px;
    background: var(--secondary-color);
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}

.ideology-card:hover {
    border-left-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(228, 37, 39, 0.08);
}

.ideology-number {
    font-size: 64px;
    font-weight: 700;
    color: rgba(201, 169, 97, 0.2);
    margin-bottom: 20px;
    line-height: 1;
}

.ideology-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.ideology-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background: var(--secondary-color);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.area-card {
    background: var(--white);
    overflow: hidden;
    transition: all 0.4s ease;
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.area-image {
    height: 250px;
    overflow: hidden;
}

.area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.area-card:hover .area-image img {
    transform: scale(1.1);
}

.area-content {
    padding: 30px;
}

.area-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.area-content > p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.area-content ul {
    list-style: none;
}

.area-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    font-size: 14px;
}

.area-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Advisory Process */
.advisory-process {
    padding: 80px 0;
    background: var(--white);
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    gap: 20px;
}

.flow-step {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    background: var(--secondary-color);
}

.flow-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.flow-step h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.flow-step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

.flow-arrow {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: bold;
}

/* Value Section */
.value-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.value-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.value-image {
    height: 600px;
    overflow: hidden;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-text h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.value-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.value-point h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.value-point p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Responsive for New Pages */
@media (max-width: 1024px) {
    .product-item,
    .benefits-content,
    .value-content {
        grid-template-columns: 1fr;
    }
    
    .product-item:nth-child(even) {
        direction: ltr;
    }
    
    .process-timeline,
    .ideology-grid,
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-flow {
        flex-wrap: wrap;
    }
    
    .flow-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-container-page {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .header-menu {
        gap: 15px;
    }
    
    .header-menu-link {
        font-size: 12px;
    }
    
    .process-timeline,
    .ideology-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .product-features {
        grid-template-columns: 1fr;
    }
}


/* Team Section - Sketch Style (Zoho Inspired) */
.team-sketch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.team-sketch-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.team-sketch-card:hover {
    transform: translateY(-10px);
}

.sketch-frame {
    position: relative;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--secondary-color);
}

.sketch-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border: 4px solid var(--text-dark);
    box-shadow: 8px 8px 0 rgba(228, 37, 39, 0.2);
}

.sketch-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.1);
    transition: all 0.4s ease;
}

.team-sketch-card:hover .sketch-image-wrapper img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.05);
}

.sketch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        transparent 0%, 
        transparent 40%,
        rgba(228, 37, 39, 0.05) 40%,
        rgba(228, 37, 39, 0.05) 60%,
        transparent 60%,
        transparent 100%
    );
    pointer-events: none;
}

.sketch-border {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 2px dashed rgba(228, 37, 39, 0.3);
    pointer-events: none;
}

.sketch-info {
    padding: 0 15px;
}

.sketch-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.01em;
}

.sketch-role {
    font-size: 14px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sketch-bio {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Team Sketch Responsive */
@media (max-width: 1024px) {
    .team-sketch-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .team-sketch-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .sketch-image-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }
}


/* LinkedIn Badge on Team Cards */
.team-sketch-card {
    position: relative;
    cursor: pointer;
}

.linkedin-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #0A66C2;
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}

.team-sketch-card:hover .linkedin-badge {
    opacity: 1;
    transform: scale(1.1);
}

/* LinkedIn Modal Popup */
.linkedin-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.linkedin-modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 0;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
    position: relative;
}

.linkedin-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--text-light);
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
}

.linkedin-close:hover {
    color: var(--text-dark);
}

.linkedin-header {
    background: linear-gradient(135deg, #0A66C2 0%, #004182 100%);
    padding: 40px 30px 30px;
    text-align: center;
    color: white;
    border-radius: 8px 8px 0 0;
}

.linkedin-icon {
    width: 60px;
    height: 60px;
    background: white;
    color: #0A66C2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 32px;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.linkedin-header h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: white;
    font-weight: 700;
}

.linkedin-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.linkedin-body {
    padding: 40px 30px;
    text-align: center;
}

.linkedin-body p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-linkedin {
    display: inline-block;
    padding: 14px 32px;
    background: #0A66C2;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}

.btn-linkedin:hover {
    background: #004182;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 102, 194, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal Responsive */
@media (max-width: 768px) {
    .linkedin-modal-content {
        width: 95%;
        margin: 20% auto;
    }
    
    .linkedin-header {
        padding: 30px 20px 25px;
    }
    
    .linkedin-body {
        padding: 30px 20px;
    }
}


/* MD Quote Section - Enhanced Design with 3 Quotes */
.md-quote-enhanced {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.md-enhanced-wrapper {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 80px;
    align-items: start;
}

/* Left Side: MD Image with Modern Frame */
.md-image-side {
    position: sticky;
    top: 100px;
}

.md-image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    margin-bottom: 30px;
}

.md-frame-border {
    position: absolute;
    inset: -10px;
    border: 3px solid #E42527;
    border-radius: 20px;
    z-index: 1;
}

.md-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    z-index: 2;
}

.md-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: all 0.5s ease;
}

.md-image-frame:hover .md-image-container img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.md-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    z-index: 1;
}

.md-corner-accent {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid #E42527;
    z-index: 3;
}

.md-corner-tl {
    top: -15px;
    left: -15px;
    border-right: none;
    border-bottom: none;
}

.md-corner-tr {
    top: -15px;
    right: -15px;
    border-left: none;
    border-bottom: none;
}

.md-corner-bl {
    bottom: -15px;
    left: -15px;
    border-right: none;
    border-top: none;
}

.md-corner-br {
    bottom: -15px;
    right: -15px;
    border-left: none;
    border-top: none;
}

.md-info-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 2px solid #f0f0f0;
}

.md-name {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.md-title {
    font-size: 14px;
    color: #E42527;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 5px;
}

.md-company {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.md-signature {
    width: 100%;
    height: 60px;
    opacity: 0.7;
}

/* Right Side: 3 Quotes Grid */
.md-quotes-side {
    padding-top: 20px;
}

.md-quotes-header {
    margin-bottom: 50px;
}

.md-quotes-label {
    display: inline-block;
    font-size: 13px;
    color: #E42527;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
}

.md-quotes-heading {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}

.md-quotes-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.md-quote-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    border-left: 5px solid #E42527;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.md-quote-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(228, 37, 39, 0.15);
}

.md-quote-number {
    position: absolute;
    top: -15px;
    left: 30px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(228, 37, 39, 0.1);
    line-height: 1;
}

.md-quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E42527 0%, #ff5a5c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
}

.md-quote-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.md-quote-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Responsive for MD Enhanced */
@media (max-width: 1200px) {
    .md-enhanced-wrapper {
        grid-template-columns: 400px 1fr;
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .md-quote-enhanced {
        padding: 80px 0;
    }
    
    .md-enhanced-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .md-image-side {
        position: relative;
        top: 0;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .md-quotes-heading {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .md-quote-enhanced {
        padding: 60px 0;
    }
    
    .md-image-side {
        max-width: 350px;
    }
    
    .md-info-card {
        padding: 25px;
    }
    
    .md-name {
        font-size: 28px;
    }
    
    .md-quotes-heading {
        font-size: 32px;
    }
    
    .md-quote-card {
        padding: 30px;
    }
    
    .md-quote-number {
        font-size: 50px;
        top: -12px;
        left: 20px;
    }
    
    .md-quote-title {
        font-size: 20px;
    }
    
    .md-quote-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .md-quote-enhanced {
        padding: 50px 0;
    }
    
    .md-image-side {
        max-width: 100%;
    }
    
    .md-frame-border {
        inset: -8px;
        border-width: 2px;
    }
    
    .md-corner-accent {
        width: 25px;
        height: 25px;
        border-width: 2px;
    }
    
    .md-info-card {
        padding: 20px;
    }
    
    .md-name {
        font-size: 24px;
    }
    
    .md-quotes-heading {
        font-size: 28px;
    }
    
    .md-quote-card {
        padding: 25px;
    }
    
    .md-quote-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .md-quote-title {
        font-size: 18px;
    }
    
    .md-quote-text {
        font-size: 14px;
    }
}


/* Landing Inquiry Popup */
.landing-popup {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    animation: fadeIn 0.4s ease;
}

.landing-popup-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.5s ease;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.landing-close {
    position: absolute;
    right: 25px;
    top: 25px;
    color: var(--text-light);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
}

.landing-close:hover {
    color: var(--primary-color);
}

.landing-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--red-dark) 100%);
    padding: 50px 40px 40px;
    text-align: center;
    color: white;
    border-radius: 12px 12px 0 0;
}

.landing-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: white;
    font-weight: 800;
}

.landing-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.landing-body {
    padding: 40px;
}

.landing-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.landing-contact-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--secondary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.landing-contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(228, 37, 39, 0.15);
}

.landing-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.landing-contact-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.landing-contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.landing-contact-item a:hover {
    color: var(--red-dark);
}

.landing-contact-item p {
    color: var(--text-light);
    font-size: 15px;
    margin: 0;
}

.landing-social {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid var(--secondary-color);
}

.landing-social h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.landing-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.landing-social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    color: white;
}

.landing-social-btn span:first-child {
    font-size: 18px;
}

.landing-social-btn.facebook {
    background: #1877F2;
}

.landing-social-btn.twitter {
    background: #000000;
}

.landing-social-btn.linkedin {
    background: #0A66C2;
}

.landing-social-btn.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
}

.landing-social-btn.youtube {
    background: #FF0000;
}

.landing-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Landing Popup Responsive */
@media (max-width: 768px) {
    .landing-popup-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .landing-header {
        padding: 40px 25px 30px;
    }
    
    .landing-header h2 {
        font-size: 28px;
    }
    
    .landing-body {
        padding: 30px 20px;
    }
    
    .landing-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .landing-social-links {
        flex-direction: column;
        align-items: stretch;
    }
    
    .landing-social-btn {
        justify-content: center;
    }
}


/* Chatbot Widget - Messenger Style */
.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Chat Button */
.chatbot-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--red-dark) 100%);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(228, 37, 39, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(228, 37, 39, 0.5);
}

.chatbot-button svg {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.chatbot-button .close-icon {
    display: none;
    position: absolute;
}

.chatbot-button.active .chat-icon {
    display: none;
}

.chatbot-button.active .close-icon {
    display: block;
}

/* Chat Window */
.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 600px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.25);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.chatbot-window.active {
    display: flex;
}

/* Chat Header */
.chatbot-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--red-dark) 100%);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.chatbot-header-text h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.chatbot-status {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4CAF50;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chatbot-minimize {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.chatbot-minimize:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Chat Messages */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #F5F7FA;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.message {
    display: flex;
    gap: 10px;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.message-content {
    max-width: 70%;
}

.message-content p {
    margin: 0;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
}

.bot-message .message-content p {
    background: white;
    color: var(--text-dark);
    border-bottom-left-radius: 4px;
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-avatar {
    background: var(--text-light);
}

.user-message .message-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.user-message .message-content p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-time {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 4px;
    display: block;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: white;
    border-radius: 18px;
    width: fit-content;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-light);
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}

/* Quick Replies */
.quick-replies {
    display: flex;
    gap: 8px;
    padding: 12px 20px 0;
    overflow-x: auto;
    background: white;
}

.quick-replies::-webkit-scrollbar {
    height: 4px;
}

.quick-reply-btn {
    padding: 8px 16px;
    background: var(--secondary-color);
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-dark);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-weight: 500;
}

.quick-reply-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Input Area */
.chatbot-input-area {
    background: white;
    border-top: 1px solid #E5E5E5;
}

.chatbot-input-wrapper {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 12px;
}

.chatbot-input {
    flex: 1;
    border: 1px solid #E5E5E5;
    border-radius: 24px;
    padding: 12px 20px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.chatbot-input:focus {
    border-color: var(--primary-color);
}

.chatbot-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-send-btn:hover {
    background: var(--red-dark);
    transform: scale(1.1);
}

.chatbot-send-btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 480px) {
    .chatbot-window {
        width: calc(100vw - 40px);
        height: calc(100vh - 100px);
        bottom: 80px;
        right: 20px;
    }
}


/* ===================================
   LANGUAGE SELECTOR
   =================================== */
.language-selector {
    position: relative;
    margin-left: 40px;
    z-index: 1001;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid var(--gray-border);
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.language-btn:hover {
    border-color: var(--primary-color);
    background: rgba(228, 37, 39, 0.05);
}

.language-icon {
    font-size: 18px;
}

.current-language {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--gray-border);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(228, 37, 39, 0.05);
    color: var(--primary-color);
    padding-left: 25px;
}

.language-option.active {
    background: rgba(228, 37, 39, 0.1);
    color: var(--primary-color);
    font-weight: 700;
}

/* ===================================
   REAL PEOPLE REAL STORIES - VIDEO SECTION
   =================================== */
.stories-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.stories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.stories-wrapper {
    position: relative;
    margin-top: 60px;
    max-width: 100%;
}

.stories-grid {
    display: flex;
    gap: 30px;
    align-items: center;
    overflow-x: hidden;
    overflow-y: visible;
    scroll-behavior: smooth;
    padding: 20px 0;
}

/* Navigation Buttons */
.story-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(228, 37, 39, 0.2);
}

.story-nav-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(228, 37, 39, 0.4);
}

.story-nav-btn svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.story-nav-btn:hover svg {
    color: white;
}

.story-nav-prev {
    left: -30px;
}

.story-nav-next {
    right: -30px;
}

.story-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    aspect-ratio: 9/16;
    width: 280px;
    flex-shrink: 0;
}

.story-card-primary {
    width: 400px;
    aspect-ratio: 9/16;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary-color), var(--accent-color)) border-box;
}

.story-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.story-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.85);
}

.story-card:hover .story-video {
    transform: scale(1.08);
    filter: brightness(1);
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    padding: 30px 25px;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.story-card:hover .story-overlay {
    background: linear-gradient(to top, rgba(228, 37, 39, 0.9) 0%, rgba(228, 37, 39, 0.3) 100%);
}

.story-info h3 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.story-card-primary .story-info h3 {
    font-size: 24px;
}

.story-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.story-card-primary .story-info p {
    font-size: 15px;
}

.play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.story-card:hover .play-indicator {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.story-card-primary .play-indicator {
    width: 90px;
    height: 90px;
    font-size: 32px;
}

.story-card.playing .play-indicator {
    opacity: 0;
}

.story-card.playing .story-video {
    filter: brightness(1);
}

/* Social Media Badges */
.social-media-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.social-media-badge:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.social-media-badge:active {
    transform: scale(1.05);
}

.facebook-badge {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
}

.youtube-badge {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.instagram-badge {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
}

.linkedin-badge {
    background: linear-gradient(135deg, #0A66C2 0%, #004182 100%);
}

.twitter-badge {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.story-card-primary .social-media-badge {
    width: 55px;
    height: 55px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .stories-grid {
        gap: 20px;
    }
    
    .story-card {
        width: 240px;
    }
    
    .story-card-primary {
        width: 340px;
    }
    
    .social-media-badge {
        width: 40px;
        height: 40px;
        font-size: 18px;
        bottom: 12px;
        right: 12px;
    }
    
    .story-card-primary .social-media-badge {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .stories-grid {
        gap: 15px;
        overflow-x: auto;
        overflow-y: visible;
        padding: 10px 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .story-card {
        width: 200px;
        scroll-snap-align: center;
    }
    
    .story-card-primary {
        width: 280px;
    }
    
    .stories-section {
        padding: 80px 0;
    }
    
    .story-nav-btn {
        display: none;
    }
    
    .social-media-badge {
        width: 35px;
        height: 35px;
        font-size: 16px;
        bottom: 10px;
        right: 10px;
    }
    
    .story-card-primary .social-media-badge {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
}

/* Premium Animation Effects */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(228, 37, 39, 0.2);
    }
    50% {
        box-shadow: 0 15px 40px rgba(228, 37, 39, 0.4);
    }
}

.story-card:hover {
    animation: pulse-glow 2s infinite;
}

.story-card-primary {
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary-color), var(--accent-color)) border-box;
}

/* Transition Animations */
.story-transitioning-out {
    animation: popOut 0.3s ease-out forwards;
}

.story-transitioning-in {
    animation: popIn 0.4s ease-out forwards;
}

@keyframes popOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}

@keyframes popIn {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Navigation Buttons */
@media (max-width: 1400px) {
    .story-nav-prev {
        left: 10px;
    }
    
    .story-nav-next {
        right: 10px;
    }
}

@media (max-width: 1200px) {
    .story-nav-prev {
        left: 5px;
    }
    
    .story-nav-next {
        right: 5px;
    }
    
    .story-nav-btn {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.95);
    }
}


/* Header Right Container for Company Pages */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-container-page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}


/* ========================================
   VME PRECAST STYLE - A.P. PRECAST PAGE
   ======================================== */

/* VME Hero Section */
.vme-hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vme-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.vme-hero-bg video,
.vme-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vme-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.vme-hero .container {
    position: relative;
    z-index: 3;
}

.vme-hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.vme-hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.vme-hero-tagline {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 500;
    color: #ffffff;
}

.vme-hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    color: #ffffff;
}

/* VME About Section */
.vme-about {
    padding: 100px 0;
    background: #ffffff;
}

.vme-about-header {
    text-align: center;
    margin-bottom: 60px;
}

.vme-section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #E42527;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.vme-section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 12px;
}

.vme-about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.vme-about-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    height: 100%;
}

.vme-about-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vme-about-content {
    text-align: left;
}

.vme-about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.about-feature-item i {
    color: #E42527;
    font-size: 18px;
}

@media (max-width: 768px) {
    .vme-about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vme-about-content {
        text-align: center;
    }
    
    .about-features {
        text-align: left;
    }
}

/* VME Services Section */
.vme-services {
    padding: 100px 0;
    background: #f8f8f8;
}

.vme-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.vme-section-desc {
    font-size: 16px;
    color: #333;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.vme-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.vme-service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vme-service-card:hover {
    transform: translateY(-10px);
    border-color: #E42527;
    box-shadow: 0 15px 40px rgba(228, 37, 39, 0.15);
}

.vme-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #E42527 0%, #ff5a5c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.vme-service-card:hover .vme-service-icon {
    transform: scale(1.1) rotate(5deg);
}

.vme-service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.vme-service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* VME Stats Section */
.vme-stats {
    padding: 80px 0;
    background: #1a1a1a;
    color: #ffffff;
}

.vme-stats-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.vme-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.vme-stat-item {
    text-align: center;
}

.vme-stat-number {
    font-size: 72px;
    font-weight: 800;
    color: #E42527;
    line-height: 1;
    margin-bottom: 16px;
}

.vme-stat-number .plus {
    font-size: 48px;
    margin-left: 8px;
}

.vme-stat-label {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
}

/* VME Progress Section */
.vme-progress {
    padding: 80px 0;
    background: #ffffff;
}

.vme-progress-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
}

.vme-progress-item {
    width: 100%;
}

.vme-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.vme-progress-label {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vme-progress-value {
    font-size: 18px;
    font-weight: 800;
    color: #E42527;
}

.vme-progress-bar {
    width: 100%;
    height: 12px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.vme-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #E42527 0%, #ff5a5c 100%);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease-out;
}

.vme-progress-fill.animated {
    width: var(--progress-width);
}

/* VME Brochure Section */
.vme-brochure {
    padding: 100px 0;
    background: linear-gradient(135deg, #E42527 0%, #c41e20 100%);
    color: #ffffff;
}

.vme-brochure-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.vme-brochure-title {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.vme-brochure-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 40px;
    opacity: 0.95;
}

.vme-brochure-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #ffffff;
    color: #E42527;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.vme-brochure-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.vme-brochure-btn i {
    font-size: 20px;
}

/* VME Clients Section */
.vme-clients {
    padding: 100px 0;
    background: #f8f8f8;
}

.vme-clients-header {
    text-align: center;
    margin-bottom: 60px;
}

.vme-clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.vme-client-logo {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vme-client-logo:hover {
    transform: translateY(-5px);
    border-color: #E42527;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vme-client-logo img {
    width: 100%;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.vme-client-logo:hover img {
    opacity: 1;
}

/* VME Factory Banner */
.vme-factory-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
}

.vme-factory-title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vme-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vme-clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .vme-hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .vme-hero {
        height: 500px;
    }
    
    .vme-hero-title {
        font-size: 32px;
    }
    
    .vme-hero-tagline {
        font-size: 16px;
    }
    
    .vme-section-title {
        font-size: 28px;
    }
    
    .vme-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vme-stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vme-stat-number {
        font-size: 56px;
    }
    
    .vme-clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .vme-brochure-title {
        font-size: 32px;
    }
    
    .vme-factory-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .vme-hero-title {
        font-size: 24px;
    }
    
    .vme-hero-tagline {
        font-size: 14px;
    }
    
    .vme-section-title {
        font-size: 22px;
    }
    
    .vme-stat-number {
        font-size: 42px;
    }
    
    .vme-clients-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */

.why-choose-us {
    padding: 100px 0;
    background: #ffffff;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 60px;
}

.why-choose-card {
    background: #f8f8f8;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    border-color: #E42527;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #E42527 0%, #ff5a5c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1) rotate(10deg);
}

.why-choose-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.why-choose-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-quote {
    font-size: 40px;
    color: #E42527;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E42527 0%, #ff5a5c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 13px;
    color: #666;
}

/* ========================================
   CTA SECTION WITH VIDEO BACKGROUND
   ======================================== */

.cta-section-video {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
}

.cta-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.cta-content-video {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content-video h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-content-video p {
    font-size: 20px;
    margin-bottom: 45px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-btn-video {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: #ffffff;
    color: #1E3A8A;
    font-size: 18px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-btn-video:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    background: #1E3A8A;
    color: #ffffff;
}

.cta-btn-video:hover i {
    transform: translateX(5px);
}

.cta-btn-video i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cta-section-video {
        padding: 120px 0;
    }
    
    .cta-content-video h2 {
        font-size: 40px;
    }
    
    .cta-content-video p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .cta-section-video {
        padding: 100px 0;
    }
    
    .cta-content-video h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .cta-content-video p {
        font-size: 16px;
        margin-bottom: 35px;
    }
    
    .cta-btn-video {
        padding: 18px 40px;
        font-size: 16px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .cta-section-video {
        padding: 80px 0;
    }
    
    .cta-content-video h2 {
        font-size: 26px;
    }
    
    .cta-content-video p {
        font-size: 15px;
    }
    
    .cta-btn-video {
        padding: 16px 35px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
}

/* Sharp Edges for AP Precast */
body:has(#ap-precast-page) .cta-btn-video {
    border-radius: 0 !important;
}

/* ========================================
   CTA SECTION (OLD - KEEP FOR OTHER PAGES)
   ======================================== */

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #E42527 0%, #c41e20 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #ffffff;
    color: #E42527;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ========================================
   CONTACT SECTION WITH FORM AND GOOGLE MAPS
   ======================================== */

.contact-section {
    padding: 100px 0;
    background: #ffffff;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-wrapper {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1E3A8A;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.4);
}

/* Google Maps and Contact Info */
.contact-map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    padding: 30px;
    border-radius: 20px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.contact-info-header {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.contact-info-header h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
}

.address-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-detail-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.contact-detail-item h4 {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail-item p {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
}

.google-map-container {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.get-directions-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
    width: 100%;
}

.get-directions-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.4);
}

.get-directions-btn i {
    font-size: 18px;
}

/* Responsive Design for Contact Section */
@media (max-width: 1200px) {
    .contact-wrapper {
        gap: 40px;
    }
    
    .google-map-container {
        height: 320px;
    }
}

@media (max-width: 1024px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 700px;
    }
    
    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .google-map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    
    .contact-form h3 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .contact-info-card {
        padding: 25px;
    }
    
    .contact-info-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-info-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .contact-info-header h3 {
        font-size: 20px;
    }
    
    .address-text {
        font-size: 13px;
    }
    
    .google-map-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-form h3 {
        font-size: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 14px;
        font-size: 15px;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .contact-info-header h3 {
        font-size: 18px;
    }
    
    .address-text {
        font-size: 12px;
    }
    
    .contact-detail-item {
        gap: 10px;
    }
    
    .contact-detail-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .contact-detail-item h4 {
        font-size: 12px;
    }
    
    .contact-detail-item p {
        font-size: 13px;
    }
    
    .google-map-container {
        height: 300px;
    }
    
    .get-directions-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
}

/* ========================================
   FLOATING ENQUIRY BUTTON
   ======================================== */

.floating-enquiry-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #E42527 0%, #ff5a5c 100%);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(228, 37, 39, 0.4);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.floating-enquiry-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(228, 37, 39, 0.5);
}

.floating-enquiry-btn i {
    font-size: 18px;
}

/* ========================================
   ENQUIRY MODAL
   ======================================== */

.enquiry-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.enquiry-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.enquiry-modal-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.enquiry-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f0f0f0;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    transition: all 0.3s ease;
}

.enquiry-close-btn:hover {
    background: #E42527;
    color: #ffffff;
}

.enquiry-modal-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.enquiry-modal-content > p {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

.enquiry-form .form-group {
    margin-bottom: 20px;
}

.enquiry-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #E42527 0%, #ff5a5c 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.enquiry-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(228, 37, 39, 0.3);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .contact-info h2 {
        font-size: 28px;
    }
    
    .floating-enquiry-btn {
        bottom: 20px;
        right: 20px;
        padding: 14px 20px;
    }
    
    .floating-enquiry-btn span {
        display: none;
    }
}

@media (max-width: 480px) {
    .enquiry-modal-content {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
}


/* ========================================
   COMMON SECTION HEADERS
   ======================================== */

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-label-red {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #E42527;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title-dark {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 12px;
}

.section-desc-gray {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* ========================================
   PRODUCTS SECTION - NEW CARD DESIGN
   ======================================== */

.products-section-new {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.products-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card-new {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-left: 5px solid #E42527;
}

.product-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(228, 37, 39, 0.2);
}

.product-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E42527 0%, #ff5a5c 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.product-card-new:hover .product-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.product-card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    padding-left: 0;
}

.product-list li i {
    color: #E42527;
    font-size: 12px;
}

.product-card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(228, 37, 39, 0.1);
    line-height: 1;
}

/* ========================================
   WHY CHOOSE US - ZIGZAG LAYOUT
   ======================================== */

.why-choose-section-new {
    padding: 100px 0;
    background: #ffffff;
}

.why-choose-zigzag {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.why-item-left,
.why-item-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content {
    padding: 40px;
}

.why-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E42527 0%, #ff5a5c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 24px;
}

.why-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.why-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.why-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.why-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-image:hover img {
    transform: scale(1.1);
}

/* ========================================
   STATS SECTION - FULL WIDTH BACKGROUND
   ======================================== */

.stats-section-new {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.stats-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.stats-section-new .container {
    position: relative;
    z-index: 2;
}

.stats-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box-new {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-box-new:hover {
    background: rgba(228, 37, 39, 0.2);
    border-color: #E42527;
    transform: translateY(-10px);
}

.stat-icon-new {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #E42527 0%, #ff5a5c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #ffffff;
}

.stat-number-new {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-box-new p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   PROCESS SECTION - VERTICAL TIMELINE
   ======================================== */

.process-section-new {
    padding: 100px 0;
    background: #f8f8f8;
}

.process-timeline-new {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-item-new {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.process-item-new:last-child {
    margin-bottom: 0;
}

.process-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-icon-new {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E42527 0%, #ff5a5c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(228, 37, 39, 0.3);
    position: relative;
    z-index: 2;
}

.process-line {
    width: 3px;
    flex: 1;
    background: linear-gradient(180deg, #E42527 0%, rgba(228, 37, 39, 0.3) 100%);
    margin-top: 10px;
}

.process-content-new {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.process-number {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #E42527;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.process-content-new h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.process-content-new p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* ========================================
   TESTIMONIALS - VIDEO REVIEWS
   ======================================== */

.testimonials-section-new {
    padding: 100px 0;
    background: #ffffff;
}

.testimonials-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-video-card {
    background: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-video-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    background: #000;
    overflow: hidden;
}

.testimonial-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: rgba(255, 255, 255, 0.9);
    pointer-events: none;
    transition: all 0.3s ease;
}

.testimonial-video-card:hover .video-play-overlay {
    transform: translate(-50%, -50%) scale(1.2);
    color: #E42527;
}

.testimonial-video-info {
    padding: 25px;
}

.testimonial-author-new {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar-new {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E42527 0%, #ff5a5c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
}

.testimonial-author-new h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.testimonial-author-new p {
    font-size: 13px;
    color: #666;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 16px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .products-grid-new {
        grid-template-columns: 1fr;
    }
    
    .why-item-left,
    .why-item-right {
        grid-template-columns: 1fr;
    }
    
    .stats-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title-dark {
        font-size: 28px;
    }
    
    .stats-grid-new {
        grid-template-columns: 1fr;
    }
    
    .process-item-new {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }
    
    .process-icon-new {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .why-image img {
        height: 300px;
    }
}


/* ========================================
   A.P. PRECAST COLOR SCHEME OVERRIDE
   Royal Blue Primary + Black Secondary
   ======================================== */

/* Royal Blue: #1E3A8A (primary) */
/* Light Blue: #3B82F6 (gradient end) */
/* Black: #000000 (secondary) */

/* Section Labels */
.section-label-red,
.vme-section-label {
    color: #1E3A8A !important;
}

/* Icons and Gradients */
.vme-service-icon,
.why-icon-large,
.stat-icon-new,
.process-icon-new,
.product-card-icon,
.why-choose-icon,
.author-avatar,
.author-avatar-new,
.contact-icon,
.testimonial-author .author-avatar {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%) !important;
}

/* Hover Border Colors */
.vme-service-card:hover,
.why-choose-card:hover,
.vme-client-logo:hover,
.stat-box-new:hover {
    border-color: #1E3A8A !important;
}

/* Product Card Border */
.product-card-new {
    border-left-color: #1E3A8A !important;
}

/* Stats Numbers */
.vme-stat-number,
.vme-progress-value {
    color: #1E3A8A !important;
}

/* Progress Bars */
.vme-progress-fill {
    background: linear-gradient(90deg, #1E3A8A 0%, #3B82F6 100%) !important;
}

/* Process Timeline */
.process-line {
    background: linear-gradient(180deg, #1E3A8A 0%, rgba(30, 58, 138, 0.3) 100%) !important;
}

.process-number {
    background: #1E3A8A !important;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%) !important;
}

.cta-btn {
    background: #1E3A8A !important;
    color: #ffffff !important;
}

.cta-btn:hover {
    background: #3B82F6 !important;
}

/* Buttons and Forms */
.submit-btn,
.enquiry-submit-btn {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%) !important;
}

.submit-btn:hover,
.enquiry-submit-btn:hover {
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3) !important;
}

/* Floating Enquiry Button */
.floating-enquiry-btn {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%) !important;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4) !important;
}

.floating-enquiry-btn:hover {
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.5) !important;
}

/* Form Focus */
.form-group input:focus,
.form-group textarea:focus {
    border-color: #1E3A8A !important;
}

/* Footer Links */
.footer-tagline {
    color: #1E3A8A !important;
}

.footer-social-links .social-link:hover {
    background: #1E3A8A !important;
}

.footer-col ul li a:hover,
.footer-legal-links a:hover {
    color: #1E3A8A !important;
}

/* About Features */
.about-feature-item i {
    color: #1E3A8A !important;
}

/* Product List Icons */
.product-list li i {
    color: #1E3A8A !important;
}

/* Stats Section Hover */
.stat-box-new:hover {
    background: rgba(30, 58, 138, 0.2) !important;
}

/* Testimonial Elements */
.testimonial-quote {
    color: #1E3A8A !important;
}

.testimonial-video-card:hover .video-play-overlay {
    color: #1E3A8A !important;
}

/* Enquiry Modal Close Button */
.enquiry-close-btn:hover {
    background: #1E3A8A !important;
}

/* Product Card Hover Shadow */
.product-card-new:hover {
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.2) !important;
}

/* Service Card Hover Shadow */
.vme-service-card:hover {
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15) !important;
}

/* Stats Section Background */
.stats-section-new {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%) !important;
}

/* Header Active Link (if needed) */
.header-menu-link.active {
    color: #1E3A8A !important;
}


/* ========================================
   A.P. PRECAST CHATBOT - ROYAL BLUE THEME
   Right Side (Default Position)
   ======================================== */

/* Chatbot Button - Royal Blue Theme (Right Side) */
body:has(#ap-precast-page) .chatbot-button,
.ap-precast-chatbot .chatbot-button {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}

body:has(#ap-precast-page) .chatbot-button:hover,
.ap-precast-chatbot .chatbot-button:hover {
    background: linear-gradient(135deg, #3B82F6 0%, #1E3A8A 100%);
}

/* Chatbot Header - Royal Blue */
body:has(#ap-precast-page) .chatbot-header,
.ap-precast-chatbot .chatbot-header {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}

/* Chatbot Avatar - Royal Blue */
body:has(#ap-precast-page) .chatbot-avatar,
.ap-precast-chatbot .chatbot-avatar {
    background: linear-gradient(135deg, #3B82F6 0%, #1E3A8A 100%);
}

body:has(#ap-precast-page) .message-avatar,
.ap-precast-chatbot .message-avatar {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}

/* Quick Reply Buttons - Royal Blue */
body:has(#ap-precast-page) .quick-reply-btn,
.ap-precast-chatbot .quick-reply-btn {
    background: #f0f7ff;
    color: #1E3A8A;
    border: 1px solid #1E3A8A;
}

body:has(#ap-precast-page) .quick-reply-btn:hover,
.ap-precast-chatbot .quick-reply-btn:hover {
    background: #1E3A8A;
    color: #ffffff;
}

/* Send Button - Royal Blue */
body:has(#ap-precast-page) .chatbot-send-btn,
.ap-precast-chatbot .chatbot-send-btn {
    color: #1E3A8A;
}

body:has(#ap-precast-page) .chatbot-send-btn:hover,
.ap-precast-chatbot .chatbot-send-btn:hover {
    background: #f0f7ff;
}

/* Status Dot - Royal Blue */
body:has(#ap-precast-page) .status-dot,
.ap-precast-chatbot .status-dot {
    background: #3B82F6;
}

/* ========================================
   ENQUIRY BUTTON - LEFT SIDE POSITION
   ======================================== */

/* Move Enquiry Button to Left Side */
body:has(#ap-precast-page) .floating-enquiry-btn,
.ap-precast-chatbot .floating-enquiry-btn {
    left: 30px;
    right: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body:has(#ap-precast-page) .floating-enquiry-btn,
    .ap-precast-chatbot .floating-enquiry-btn {
        left: 20px;
        right: auto;
    }
}

/* ========================================
   AP PRECAST - SHARP EDGE BUTTONS
   ======================================== */

/* All Buttons Sharp Edges */
body:has(#ap-precast-page) .submit-btn,
body:has(#ap-precast-page) .get-directions-btn,
body:has(#ap-precast-page) .floating-enquiry-btn,
body:has(#ap-precast-page) .explore-more-btn,
body:has(#ap-precast-page) .enquiry-submit-btn,
body:has(#ap-precast-page) .product-enquiry-btn,
body:has(#ap-precast-page) .cta-btn,
body:has(#ap-precast-page) button,
body:has(#ap-precast-page) .btn {
    border-radius: 0 !important;
}

/* Navigation Buttons - Keep Circular but Sharp */
body:has(#ap-precast-page) .project-nav-btn,
body:has(#ap-precast-page) .client-nav-btn {
    border-radius: 0 !important;
}

/* Form Inputs Sharp Edges */
body:has(#ap-precast-page) input,
body:has(#ap-precast-page) textarea,
body:has(#ap-precast-page) select {
    border-radius: 0 !important;
}

/* Cards and Containers Sharp Edges */
body:has(#ap-precast-page) .contact-form-wrapper,
body:has(#ap-precast-page) .contact-info-card,
body:has(#ap-precast-page) .enquiry-modal-content,
body:has(#ap-precast-page) .product-card-new,
body:has(#ap-precast-page) .why-choose-item,
body:has(#ap-precast-page) .testimonials-client-list,
body:has(#ap-precast-page) .client-item,
body:has(#ap-precast-page) .testimonial-media,
body:has(#ap-precast-page) .testimonial-text,
body:has(#ap-precast-page) .project-card-horizontal,
body:has(#ap-precast-page) .stat-card,
body:has(#ap-precast-page) .google-map-container iframe {
    border-radius: 0 !important;
}

/* Product Images Sharp Edges */
body:has(#ap-precast-page) .product-images-slider,
body:has(#ap-precast-page) .product-images-slider img,
body:has(#ap-precast-page) .product-image,
body:has(#ap-precast-page) .why-image,
body:has(#ap-precast-page) .project-image-wrapper,
body:has(#ap-precast-page) .project-image-wrapper img {
    border-radius: 0 !important;
}

/* Stats and Badges Sharp Edges */
body:has(#ap-precast-page) .project-stat,
body:has(#ap-precast-page) .project-category,
body:has(#ap-precast-page) .product-badge,
body:has(#ap-precast-page) .section-label-red {
    border-radius: 0 !important;
}

/* Icons Keep Circular */
body:has(#ap-precast-page) .contact-info-icon,
body:has(#ap-precast-page) .contact-detail-icon,
body:has(#ap-precast-page) .client-avatar,
body:has(#ap-precast-page) .why-icon {
    border-radius: 50% !important;
}


/* ========================================
   PRODUCTS SECTION - IMAGE GALLERY UPGRADE
   ======================================== */

.products-section-upgraded {
    padding: 100px 0;
    background: #f8f8f8;
}

.products-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-gallery-item {
    position: relative;
    overflow: hidden;
}

.product-images-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-image.active {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-images-slider:hover .product-hover-overlay {
    opacity: 1;
}

.product-hover-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.product-hover-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.product-enquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    color: #ffffff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.product-enquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.4);
}

.product-image-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.product-image-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-image-dots .dot.active {
    background: #1E3A8A;
    width: 30px;
    border-radius: 5px;
}

/* Product Enquiry Modal */
.product-enquiry-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.product-enquiry-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-enquiry-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
}

.product-enquiry-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f0f0f0;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    transition: all 0.3s ease;
}

.product-enquiry-close:hover {
    background: #1E3A8A;
    color: #ffffff;
}

.product-enquiry-content h3 {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.product-enquiry-content > p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

.product-enquiry-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-enquiry-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

/* ========================================
   TESTIMONIALS - VERTICAL CAROUSEL UPGRADE
   ======================================== */

.testimonials-section-upgraded {
    padding: 100px 0;
    background: #ffffff;
}

.testimonials-vertical-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Side: Client List */
.testimonials-client-list {
    background: #f8f8f8;
    border-radius: 15px;
    padding: 30px;
    height: fit-content;
}

.client-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.client-list-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.client-nav-arrows {
    display: flex;
    gap: 10px;
}

.client-nav-btn {
    width: 35px;
    height: 35px;
    background: #ffffff;
    border: 2px solid #1E3A8A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E3A8A;
    cursor: pointer;
    transition: all 0.3s ease;
}

.client-nav-btn:hover {
    background: #1E3A8A;
    color: #ffffff;
}

.client-list-wrapper {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.client-list-wrapper::-webkit-scrollbar {
    width: 6px;
}

.client-list-wrapper::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}

.client-list-wrapper::-webkit-scrollbar-thumb {
    background: #1E3A8A;
    border-radius: 10px;
}

.client-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.client-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-item.active {
    border-color: #1E3A8A;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

.client-item .client-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 12px;
}

.client-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.client-info p {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}

.client-company {
    font-size: 12px;
    color: #1E3A8A;
    font-weight: 600;
}

.client-rating {
    display: flex;
    gap: 4px;
    margin-top: 10px;
}

.client-rating i {
    color: #FFD700;
    font-size: 14px;
}

/* Right Side: Testimonial Display */
.testimonials-display {
    position: relative;
    min-height: 500px;
}

.testimonial-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.testimonial-content.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-media {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-media video,
.testimonial-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 15px;
    position: relative;
}

.testimonial-quote-icon {
    font-size: 40px;
    color: #1E3A8A;
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonial-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    font-style: italic;
}

/* Responsive Design */
/* Desktop Large (1920px and above) - Already handled by default styles */

/* Desktop (1440px - 1919px) */
@media (max-width: 1919px) {
    .testimonials-vertical-layout {
        max-width: 1400px;
    }
}

/* Laptop Large (1366px - 1439px) */
@media (max-width: 1439px) {
    .testimonials-section-upgraded {
        padding: 80px 0;
    }
    
    .testimonials-vertical-layout {
        max-width: 1200px;
        grid-template-columns: 380px 1fr;
        gap: 35px;
    }
    
    .testimonial-media {
        height: 380px;
    }
}

/* Laptop (1024px - 1365px) */
@media (max-width: 1365px) {
    .testimonials-vertical-layout {
        max-width: 1000px;
        grid-template-columns: 350px 1fr;
        gap: 30px;
    }
    
    .testimonials-client-list {
        padding: 25px;
    }
    
    .client-list-header h3 {
        font-size: 20px;
    }
    
    .testimonial-media {
        height: 350px;
    }
    
    .testimonial-text {
        padding: 25px;
    }
    
    .testimonial-text p {
        font-size: 15px;
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (max-width: 1023px) {
    .testimonials-section-upgraded {
        padding: 60px 0;
    }
    
    .products-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-vertical-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 700px;
    }
    
    .testimonials-client-list {
        order: 2;
        padding: 20px;
    }
    
    .client-list-wrapper {
        max-height: 400px;
    }
    
    .testimonials-display {
        order: 1;
        min-height: 450px;
    }
    
    .testimonial-media {
        height: 320px;
    }
    
    .client-item {
        padding: 15px;
    }
    
    .client-item .client-avatar {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Tablet Portrait (600px - 767px) */
@media (max-width: 767px) {
    .testimonials-section-upgraded {
        padding: 50px 0;
    }
    
    .testimonials-vertical-layout {
        max-width: 100%;
        gap: 30px;
    }
    
    .testimonials-client-list {
        padding: 20px 15px;
    }
    
    .client-list-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .client-list-header h3 {
        font-size: 18px;
    }
    
    .client-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .client-list-wrapper {
        max-height: 350px;
    }
    
    .client-item {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .client-item .client-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .client-info h4 {
        font-size: 15px;
    }
    
    .client-info p {
        font-size: 12px;
    }
    
    .client-company {
        font-size: 11px;
    }
    
    .client-rating i {
        font-size: 12px;
    }
    
    .testimonials-display {
        min-height: 400px;
    }
    
    .product-images-slider {
        height: 300px;
    }
    
    .testimonial-media {
        height: 280px;
        margin-bottom: 20px;
    }
    
    .testimonial-text {
        padding: 20px;
    }
    
    .testimonial-quote-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .testimonial-text p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Mobile Large (480px - 599px) */
@media (max-width: 599px) {
    .testimonials-section-upgraded {
        padding: 40px 0;
    }
    
    .testimonials-vertical-layout {
        gap: 25px;
    }
    
    .testimonials-client-list {
        padding: 15px;
        border-radius: 12px;
    }
    
    .client-list-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .client-list-header h3 {
        font-size: 16px;
    }
    
    .client-nav-arrows {
        align-self: flex-end;
    }
    
    .client-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .client-list-wrapper {
        max-height: 300px;
        padding-right: 5px;
    }
    
    .client-item {
        padding: 10px;
        margin-bottom: 10px;
        border-radius: 10px;
    }
    
    .client-item .client-avatar {
        width: 35px;
        height: 35px;
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .client-info h4 {
        font-size: 14px;
    }
    
    .client-info p {
        font-size: 11px;
    }
    
    .client-company {
        font-size: 10px;
    }
    
    .client-rating {
        margin-top: 8px;
        gap: 3px;
    }
    
    .client-rating i {
        font-size: 11px;
    }
    
    .testimonials-display {
        min-height: 350px;
    }
    
    .testimonial-media {
        height: 240px;
        margin-bottom: 15px;
        border-radius: 12px;
    }
    
    .testimonial-text {
        padding: 18px;
        border-radius: 12px;
    }
    
    .testimonial-quote-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .testimonial-text p {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* Mobile Medium (375px - 479px) */
@media (max-width: 479px) {
    .testimonials-section-upgraded {
        padding: 35px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-label-red {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .section-title-dark {
        font-size: 24px;
    }
    
    .section-desc-gray {
        font-size: 13px;
    }
    
    .testimonials-vertical-layout {
        gap: 20px;
    }
    
    .testimonials-client-list {
        padding: 12px;
    }
    
    .client-list-header h3 {
        font-size: 15px;
    }
    
    .client-nav-btn {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    
    .client-list-wrapper {
        max-height: 280px;
    }
    
    .client-item {
        padding: 8px;
        margin-bottom: 8px;
    }
    
    .client-item .client-avatar {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .client-info h4 {
        font-size: 13px;
    }
    
    .client-info p {
        font-size: 10px;
    }
    
    .testimonials-display {
        min-height: 320px;
    }
    
    .testimonial-media {
        height: 220px;
    }
    
    .testimonial-text {
        padding: 15px;
    }
    
    .testimonial-quote-icon {
        font-size: 24px;
    }
    
    .testimonial-text p {
        font-size: 12px;
    }
}

/* Mobile Small (320px - 374px) */
@media (max-width: 374px) {
    .testimonials-section-upgraded {
        padding: 30px 0;
    }
    
    .section-title-dark {
        font-size: 22px;
    }
    
    .section-desc-gray {
        font-size: 12px;
    }
    
    .testimonials-vertical-layout {
        gap: 15px;
    }
    
    .testimonials-client-list {
        padding: 10px;
    }
    
    .client-list-header {
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .client-list-header h3 {
        font-size: 14px;
    }
    
    .client-nav-btn {
        width: 26px;
        height: 26px;
        font-size: 10px;
        gap: 8px;
    }
    
    .client-list-wrapper {
        max-height: 250px;
    }
    
    .client-item {
        padding: 8px;
        margin-bottom: 8px;
    }
    
    .client-item .client-avatar {
        width: 30px;
        height: 30px;
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .client-info h4 {
        font-size: 12px;
        margin-bottom: 3px;
    }
    
    .client-info p {
        font-size: 10px;
        margin-bottom: 3px;
    }
    
    .client-company {
        font-size: 9px;
    }
    
    .client-rating {
        margin-top: 6px;
        gap: 2px;
    }
    
    .client-rating i {
        font-size: 10px;
    }
    
    .testimonials-display {
        min-height: 300px;
    }
    
    .testimonial-media {
        height: 200px;
        margin-bottom: 12px;
        border-radius: 10px;
    }
    
    .testimonial-text {
        padding: 12px;
        border-radius: 10px;
    }
    
    .testimonial-quote-icon {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .testimonial-text p {
        font-size: 11px;
        line-height: 1.5;
    }
}


/* ========================================
   EXPLORE MORE BUTTON
   ======================================== */

.hidden-product {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.explore-more-wrapper {
    text-align: center;
    margin-top: 50px;
}

.explore-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.explore-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.4);
}

.explore-icon {
    transition: transform 0.3s ease;
}

/* ========================================
   PROJECTS WE'VE DELIVERED - HORIZONTAL SCROLL
   ======================================== */

.projects-delivered-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.container-full {
    max-width: 100%;
    padding: 0;
}

.projects-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 40px 20px 40px;
    gap: 40px;
}

.section-header-left {
    flex: 1;
}

.projects-nav-arrows {
    display: flex;
    gap: 12px;
    align-self: flex-start;
    margin-top: 0;
}

.project-nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #1E3A8A;
    background: #ffffff;
    color: #1E3A8A;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.project-nav-btn:hover {
    background: #1E3A8A;
    color: #ffffff;
    transform: scale(1.1);
}

.project-nav-btn:active {
    transform: scale(0.95);
}

.projects-horizontal-scroll {
    display: flex;
    gap: 30px;
    padding: 40px 40px 40px 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.projects-horizontal-scroll::-webkit-scrollbar {
    height: 8px;
}

.projects-horizontal-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.projects-horizontal-scroll::-webkit-scrollbar-thumb {
    background: #1E3A8A;
    border-radius: 10px;
}

.project-card-horizontal {
    min-width: 950px;
    background: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    scroll-snap-align: start;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-card-horizontal:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.project-image-wrapper {
    position: relative;
    width: 450px;
    flex-shrink: 0;
    overflow: hidden;
}

.project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card-horizontal:hover .project-image-wrapper img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
}

.project-category {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.project-details h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.project-location {
    font-size: 14px;
    color: #1E3A8A;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    min-width: 110px;
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    color: #1E3A8A;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .project-card-horizontal {
        min-width: 700px;
        flex-direction: column;
    }
    
    .project-image-wrapper {
        width: 100%;
        height: 300px;
    }
    
    .project-details {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .project-card-horizontal {
        min-width: 90vw;
    }
    
    .projects-horizontal-scroll {
        padding: 20px;
    }
    
    .project-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .project-stat {
        flex: 1;
        min-width: 80px;
    }
}


/* ========================================
   TESTIMONIALS SECTION - UPDATED LAYOUT
   ======================================== */

.testimonials-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-left {
    text-align: left;
}

.section-header-left .section-label-red {
    display: inline-block;
}

.section-header-left .section-desc-gray {
    max-width: 700px;
    margin: 0;
}

.client-nav-arrows-top {
    display: flex;
    gap: 12px;
    align-self: flex-end;
}

.testimonials-vertical-layout {
    grid-template-columns: 450px 1fr !important;
    gap: 50px !important;
}

.testimonials-client-list {
    padding: 35px !important;
}

.client-list-header {
    margin-bottom: 30px !important;
}

.client-list-header h3 {
    font-size: 24px !important;
}

.client-nav-btn {
    width: 45px !important;
    height: 45px !important;
    font-size: 16px !important;
}

.client-nav-btn:hover {
    transform: scale(1.1) !important;
}

.client-list-wrapper {
    max-height: 550px !important;
}

.client-item {
    padding: 25px !important;
    margin-bottom: 18px !important;
}

.client-item .client-avatar {
    width: 55px !important;
    height: 55px !important;
    font-size: 22px !important;
    margin-bottom: 15px !important;
}

.client-info h4 {
    font-size: 18px !important;
    margin-bottom: 5px !important;
}

.client-info p {
    font-size: 14px !important;
    margin-bottom: 5px !important;
}

.client-company {
    font-size: 13px !important;
}

.client-rating {
    gap: 5px !important;
    margin-top: 12px !important;
}

.client-rating i {
    font-size: 15px !important;
}

.testimonials-display {
    min-height: 550px !important;
}

.testimonial-media {
    height: 420px !important;
}

.testimonial-text {
    padding: 35px !important;
}

.testimonial-quote-icon {
    font-size: 45px !important;
    margin-bottom: 18px !important;
}

.testimonial-text p {
    font-size: 17px !important;
}

@media (max-width: 1024px) {
    .testimonials-header-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .client-nav-arrows-top {
        align-self: flex-start;
    }
}


/* ========================================
   CONTACT SECTION - MODERN DESIGN
   ======================================== */

.contact-section-modern {
    padding: 0;
    background: #ffffff;
    position: relative;
}

/* Full Width Map */
.contact-map-full {
    width: 100%;
    height: 500px;
    position: relative;
}

.contact-map-full iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(20%);
}

/* Contact Info Cards */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -80px;
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.contact-info-card-modern {
    background: #ffffff;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: #ffffff;
}

.contact-info-card-modern h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-info-card-modern p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1E3A8A;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card-link:hover {
    gap: 12px;
    color: #3B82F6;
}

.contact-card-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.contact-card-link:hover i {
    transform: translateX(3px);
}

/* Contact Form Section */
.contact-form-section-modern {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.contact-form-header-modern {
    text-align: center;
    margin-bottom: 50px;
}

.contact-form-header-modern h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 15px 0;
}

.contact-form-header-modern p {
    font-size: 16px;
    color: #666;
}

.contact-form-modern {
    background: #f8f8f8;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
}

.form-group-modern.full-width {
    grid-column: 1 / -1;
}

.form-group-modern label {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    background: #ffffff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: #1E3A8A;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group-modern textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn-modern {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.submit-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.4);
}

.submit-btn-modern:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: -60px;
        margin-bottom: 60px;
    }
    
    .contact-form-modern {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-map-full {
        height: 400px;
    }
    
    .contact-info-cards {
        margin-top: -50px;
        margin-bottom: 50px;
    }
    
    .contact-info-card-modern {
        padding: 30px 25px;
    }
    
    .contact-card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .contact-info-card-modern h3 {
        font-size: 20px;
    }
    
    .contact-form-section-modern {
        padding-bottom: 60px;
    }
    
    .contact-form-header-modern h2 {
        font-size: 28px;
    }
    
    .contact-form-modern {
        padding: 30px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .contact-map-full {
        height: 300px;
    }
    
    .contact-info-cards {
        margin-top: -40px;
        margin-bottom: 40px;
    }
    
    .contact-info-card-modern {
        padding: 25px 20px;
    }
    
    .contact-card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .contact-info-card-modern h3 {
        font-size: 18px;
    }
    
    .contact-form-header-modern h2 {
        font-size: 24px;
    }
    
    .contact-form-modern {
        padding: 25px 20px;
    }
    
    .form-group-modern input,
    .form-group-modern textarea {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .submit-btn-modern {
        padding: 16px;
        font-size: 15px;
    }
}

/* Sharp Edges for AP Precast */
body:has(#ap-precast-page) .contact-info-card-modern,
body:has(#ap-precast-page) .contact-form-modern,
body:has(#ap-precast-page) .form-group-modern input,
body:has(#ap-precast-page) .form-group-modern textarea,
body:has(#ap-precast-page) .submit-btn-modern {
    border-radius: 0 !important;
}


/* ========================================
   CONTACT SECTION - REDESIGNED
   ======================================== */

.contact-section-redesigned {
    padding: 100px 0;
    background: #ffffff;
}

/* Get In Touch Section with Video */
.get-in-touch-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

/* Left Side Content with Fade Animation */
.get-in-touch-content {
    text-align: left;
}

.fade-in-left {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.get-in-touch-content h1 {
    font-size: 52px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 20px 0 25px;
    line-height: 1.2;
}

.get-in-touch-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.contact-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.4);
}

.contact-cta-btn i {
    transition: transform 0.3s ease;
}

.contact-cta-btn:hover i {
    transform: translateX(5px);
}

/* Right Side Video with Overlay */
.get-in-touch-video {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.contact-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-overlay-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-overlay-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.overlay-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    flex-shrink: 0;
}

.overlay-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.overlay-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section-redesigned {
    max-width: 900px;
    margin: 0 auto 80px;
}

.contact-form-header-redesigned {
    text-align: center;
    margin-bottom: 50px;
}

.contact-form-header-redesigned h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 15px 0;
}

.contact-form-header-redesigned p {
    font-size: 16px;
    color: #666;
}

.contact-form-redesigned {
    background: #f8f8f8;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.submit-btn-redesigned {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.submit-btn-redesigned:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.4);
}

/* Google Map Below Form */
.contact-map-bottom {
    width: 100%;
    height: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .get-in-touch-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 80px;
    }
    
    .get-in-touch-video {
        height: 500px;
    }
    
    .get-in-touch-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .contact-section-redesigned {
        padding: 60px 0;
    }
    
    .get-in-touch-wrapper {
        margin-bottom: 60px;
    }
    
    .get-in-touch-content h1 {
        font-size: 36px;
    }
    
    .get-in-touch-content p {
        font-size: 16px;
    }
    
    .get-in-touch-video {
        height: 400px;
    }
    
    .contact-video-overlay {
        padding: 30px 20px;
        gap: 15px;
    }
    
    .contact-overlay-item {
        padding: 12px 15px;
    }
    
    .overlay-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .contact-form-redesigned {
        padding: 40px 30px;
    }
    
    .contact-map-bottom {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .get-in-touch-content h1 {
        font-size: 28px;
    }
    
    .get-in-touch-content p {
        font-size: 15px;
    }
    
    .contact-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }
    
    .get-in-touch-video {
        height: 350px;
    }
    
    .contact-video-overlay {
        padding: 20px 15px;
    }
    
    .overlay-info h4 {
        font-size: 12px;
    }
    
    .overlay-info p {
        font-size: 12px;
    }
    
    .contact-form-redesigned {
        padding: 30px 20px;
    }
    
    .contact-map-bottom {
        height: 350px;
    }
}

/* Sharp Edges for AP Precast */
body:has(#ap-precast-page) .contact-cta-btn,
body:has(#ap-precast-page) .contact-form-redesigned,
body:has(#ap-precast-page) .submit-btn-redesigned,
body:has(#ap-precast-page) .contact-overlay-item {
    border-radius: 0 !important;
}


/* ========================================
   WHY CHOOSE US - 5 BOX GRID
   ======================================== */

.why-choose-section-boxes {
    padding: 100px 0;
    background: #ffffff;
}

.why-boxes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.why-box {
    background: #f8f8f8;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #1E3A8A;
}

.why-box:hover {
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.why-box-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
    color: #ffffff;
    transition: all 0.4s ease;
}

.why-box:hover .why-box-icon {
    transform: scale(1.1) rotate(360deg);
}

.why-box h1 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.why-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .why-boxes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .why-choose-section-boxes {
        padding: 80px 0;
    }
    
    .why-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .why-box {
        padding: 35px 25px;
    }
    
    .why-box-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .why-box h1 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .why-choose-section-boxes {
        padding: 60px 0;
    }
    
    .why-boxes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .why-box {
        padding: 30px 25px;
    }
    
    .why-box-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .why-box h1 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .why-box p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .why-choose-section-boxes {
        padding: 50px 0;
    }
    
    .why-box {
        padding: 25px 20px;
    }
    
    .why-box-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .why-box h1 {
        font-size: 17px;
    }
    
    .why-box p {
        font-size: 13px;
    }
}

/* Sharp Edges for AP Precast */
body:has(#ap-precast-page) .why-box {
    border-radius: 0 !important;
}



/* ========================================
   PRODUCTS SECTION - RESPONSIVE MEDIA QUERIES
   ======================================== */

@media (max-width: 1024px) {
    .products-section-upgraded {
        padding: 80px 0;
    }
    
    .products-gallery-grid {
        gap: 25px;
    }
    
    .product-images-slider {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .products-section-upgraded {
        padding: 60px 0;
    }
    
    .products-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-images-slider {
        height: 300px;
    }
    
    .product-hover-overlay {
        padding: 20px;
    }
    
    .product-hover-overlay h3 {
        font-size: 20px;
    }
    
    .product-hover-overlay p {
        font-size: 13px;
    }
    
    .product-enquiry-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .products-section-upgraded {
        padding: 50px 0;
    }
    
    .product-images-slider {
        height: 250px;
    }
    
    .product-hover-overlay {
        padding: 15px;
    }
    
    .product-hover-overlay h3 {
        font-size: 18px;
    }
    
    .product-enquiry-content {
        padding: 30px 20px;
    }
}

/* ========================================
   STATS SECTION - RESPONSIVE MEDIA QUERIES
   ======================================== */

@media (max-width: 1024px) {
    .stats-section-new {
        padding: 80px 0;
    }
    
    .stats-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .stats-section-new {
        padding: 60px 0;
    }
    
    .stats-grid-new {
        gap: 20px;
    }
    
    .stat-box-new {
        padding: 30px 15px;
    }
    
    .stat-icon-new {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
    
    .stat-number-new {
        font-size: 36px;
    }
    
    .stat-box-new p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .stats-section-new {
        padding: 50px 0;
    }
    
    .stats-grid-new {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-box-new {
        padding: 25px 15px;
    }
    
    .stat-number-new {
        font-size: 32px;
    }
}

/* ========================================
   PROJECTS SECTION - RESPONSIVE MEDIA QUERIES
   ======================================== */

@media (max-width: 1200px) {
    .projects-delivered-section {
        padding: 80px 0;
    }
    
    .project-card-horizontal {
        min-width: 800px;
    }
    
    .project-image-wrapper {
        width: 380px;
    }
    
    .project-details {
        padding: 30px;
    }
    
    .project-details h3 {
        font-size: 24px;
    }
}

@media (max-width: 1024px) {
    .projects-header-wrapper {
        padding: 0 20px 20px 20px;
        flex-direction: column;
        gap: 20px;
    }
    
    .projects-nav-arrows {
        align-self: flex-end;
    }
    
    .projects-horizontal-scroll {
        padding: 30px 20px;
    }
    
    .project-card-horizontal {
        min-width: 700px;
        flex-direction: column;
    }
    
    .project-image-wrapper {
        width: 100%;
        height: 300px;
    }
    
    .project-details {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .projects-delivered-section {
        padding: 60px 0;
    }
    
    .projects-header-wrapper {
        padding: 0 15px 15px 15px;
    }
    
    .projects-horizontal-scroll {
        padding: 20px 15px;
        gap: 20px;
    }
    
    .project-card-horizontal {
        min-width: 90vw;
    }
    
    .project-image-wrapper {
        height: 250px;
    }
    
    .project-details {
        padding: 20px;
    }
    
    .project-details h3 {
        font-size: 20px;
    }
    
    .project-description {
        font-size: 14px;
    }
    
    .project-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .project-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .projects-delivered-section {
        padding: 50px 0;
    }
    
    .project-card-horizontal {
        min-width: 95vw;
    }
    
    .project-image-wrapper {
        height: 200px;
    }
    
    .project-details {
        padding: 15px;
    }
    
    .project-details h3 {
        font-size: 18px;
    }
    
    .project-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* ========================================
   VME SECTIONS - RESPONSIVE MEDIA QUERIES
   ======================================== */

@media (max-width: 1024px) {
    .vme-about {
        padding: 80px 0;
    }
    
    .vme-clients {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .vme-about {
        padding: 60px 0;
    }
    
    .vme-clients {
        padding: 60px 0;
    }
    
    .vme-clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .vme-about {
        padding: 50px 0;
    }
    
    .vme-clients {
        padding: 50px 0;
    }
    
    .vme-clients-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ========================================
   GLOBAL SECTION SPACING - MEDIA QUERIES
   ======================================== */

/* Ensure no horizontal overflow */
* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* All sections responsive padding */
@media (max-width: 1600px) {
    section {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 1400px) {
    section {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 1200px) {
    section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 1024px) {
    section {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 768px) {
    section {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 480px) {
    section {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Global heading responsive sizes */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.125rem;
    }
}

/* Global button responsive sizes */
@media (max-width: 768px) {
    button,
    .btn,
    .cta-btn,
    .submit-btn {
        padding: 14px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    button,
    .btn,
    .cta-btn,
    .submit-btn {
        padding: 12px 25px;
        font-size: 13px;
    }
}

/* Global section header responsive */
@media (max-width: 768px) {
    .section-header-center,
    .section-header-left {
        text-align: center;
    }
    
    .section-title-dark,
    .section-title {
        font-size: 28px;
    }
    
    .section-desc-gray,
    .section-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-title-dark,
    .section-title {
        font-size: 24px;
    }
    
    .section-desc-gray,
    .section-subtitle {
        font-size: 13px;
    }
}

/* Prevent content overflow */
img,
video {
    max-width: 100%;
    height: auto;
}

/* Container responsive adjustments */
@media (max-width: 1600px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 1400px) {
    .container {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 1200px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Grid responsive adjustments */
@media (max-width: 1024px) {
    .grid,
    [class*="-grid"] {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .grid,
    [class*="-grid"] {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .grid,
    [class*="-grid"] {
        gap: 12px;
    }
}


/* ========================================
   CONCRETE EXPERTS - UNIQUE MODERN DESIGN
   ======================================== */

/* Hero Section - Diagonal Split Design */
.body{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.ce-hero-diagonal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.ce-hero-left {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    padding: 80px 60px;
    position: relative;
}

.ce-hero-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 100px;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: skewX(-5deg);
    z-index: 1;
}

.ce-hero-content-wrapper {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.ce-hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #FF6B35;
}

.ce-hero-badge-new i {
    font-size: 18px;
}

.ce-hero-heading {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.ce-text-gradient {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ce-hero-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

.ce-hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.ce-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.ce-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.ce-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #FF6B35;
    padding: 16px 32px;
    border: 2px solid #FF6B35;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ce-cta-outline:hover {
    background: #FF6B35;
    color: #ffffff;
}

.ce-hero-right {
    position: relative;
    overflow: hidden;
}

.ce-hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.ce-hero-image-container img,
.ce-hero-image-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ce-hero-stats-float {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.ce-stat-float-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 25px 35px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.ce-stat-float-item:hover {
    background: rgba(255, 107, 53, 0.25);
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

.ce-stat-float-num {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ce-stat-float-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* About Us Section - Two Column Modern Layout */
.ce-about-modern {
    padding: 120px 0;
    background: #ffffff;
}

.ce-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}

.ce-about-left-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ce-label-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FF6B35;
}

.ce-label-dot {
    width: 8px;
    height: 8px;
    background: #FF6B35;
    border-radius: 50%;
}

.ce-label-white {
    color: #ffffff;
}

.ce-label-white .ce-label-dot {
    background: #ffffff;
}

.ce-about-heading-modern {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.ce-highlight-orange {
    color: #FF6B35;
}

.ce-about-lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
}

.ce-about-body-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.ce-about-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.ce-feature-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.ce-feature-check-item i {
    color: #FF6B35;
    font-size: 20px;
}

/* Services Section - Tabbed What We Provide */
.ce-services-tabbed {
    padding: 120px 0;
    background: #ffffff;
}

.ce-services-main-heading {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
    text-align: center;
}

.ce-services-main-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.ce-service-tabs {
    display: flex;
    gap: 0;
    margin-top: 50px;
    border-bottom: 3px solid #e0e0e0;
    position: relative;
}

.ce-service-tab {
    flex: 1;
    padding: 20px 30px;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
}

.ce-service-tab:hover {
    color: #FF6B35;
}

.ce-service-tab.active {
    color: #1a1a1a;
    border-bottom-color: #FF6B35;
}

.ce-service-tab-content {
    display: none;
    padding: 60px 0;
    animation: fadeIn 0.5s ease;
}

.ce-service-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ce-service-tab-layout {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 60px;
    align-items: center;
}

.ce-service-tab-reverse {
    grid-template-columns: 1fr 450px;
}

.ce-service-tab-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.ce-service-tab-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.ce-service-tab-text h3 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ce-service-tab-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.ce-service-tab-btn {
    background: #FF6B35;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.ce-service-tab-btn:hover {
    background: #F7931E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Why Choose Us Section - Horizontal Cards */
.ce-why-choose-horizontal {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.ce-why-horizontal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.ce-why-horizontal-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.ce-why-horizontal-card:hover {
    border-color: #FF6B35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
    transform: translateX(10px);
}

.ce-why-horizontal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.ce-why-horizontal-card:hover .ce-why-horizontal-icon {
    transform: scale(1.1) rotate(-5deg);
}

.ce-why-horizontal-content {
    flex: 1;
}

.ce-why-horizontal-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.ce-why-horizontal-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.ce-why-horizontal-arrow {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #FF6B35;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.ce-why-horizontal-card:hover .ce-why-horizontal-arrow {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #ffffff;
    transform: translateX(5px);
}

/* How It Works Section - Step Cards */
.ce-how-works-modern {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.ce-how-works-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover;
    opacity: 0.15;
}

.ce-how-works-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.ce-how-works-heading {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.ce-how-works-subheading {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.ce-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.ce-step-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.ce-step-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #FF6B35;
    transform: translateY(-10px);
}

.ce-step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.ce-step-icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 25px;
    font-size: 30px;
    color: #FF6B35;
}

.ce-step-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.ce-step-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* Why Choose Us Section - Horizontal Cards */
.ce-why-choose-horizontal {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.ce-why-horizontal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.ce-why-horizontal-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.ce-why-horizontal-card:hover {
    border-color: #FF6B35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
    transform: translateX(10px);
}

.ce-why-horizontal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.ce-why-horizontal-card:hover .ce-why-horizontal-icon {
    transform: scale(1.1) rotate(-5deg);
}

.ce-why-horizontal-content {
    flex: 1;
}

.ce-why-horizontal-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.ce-why-horizontal-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.ce-why-horizontal-arrow {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #FF6B35;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.ce-why-horizontal-card:hover .ce-why-horizontal-arrow {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #ffffff;
    transform: translateX(5px);
}

/* Testimonials Section - Dual Loop Design */
.ce-testimonials-loop {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}

.ce-testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.ce-testimonials-heading {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.ce-testimonials-subheading {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.ce-testimonial-track {
    margin-bottom: 15px;
    overflow: visible;
    position: relative;
}

.ce-testimonial-track::before,
.ce-testimonial-track::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 100;
    pointer-events: none;
}

.ce-testimonial-track::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa 0%, rgba(248, 249, 250, 0) 100%);
}

.ce-testimonial-track::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa 0%, rgba(248, 249, 250, 0) 100%);
}

.ce-testimonial-loop-container {
    display: flex;
    gap: 15px;
    width: fit-content;
}

.ce-testimonial-track[data-direction="left"] .ce-testimonial-loop-container {
    animation: scrollLeft 30s linear infinite;
}

.ce-testimonial-track[data-direction="right"] .ce-testimonial-loop-container {
    animation: scrollRight 30s linear infinite;
}

.ce-testimonial-track:hover .ce-testimonial-loop-container {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.ce-testimonial-box {
    width: 350px;
    height: 350px;
    border-radius: 12px;
    overflow: visible;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.ce-testimonial-box:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    z-index: 10;
}

.ce-testimonial-box.expanded {
    width: 850px;
    height: 400px;
    transform: scale(1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    border-radius: 8px;
}

.ce-testimonial-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
    border-radius: 12px;
}

.ce-testimonial-box.expanded img {
    width: 400px;
    height: 400px;
    border-radius: 8px 0 0 8px;
    flex-shrink: 0;
}

.ce-testimonial-box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(247, 147, 30, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.ce-testimonial-box:hover .ce-testimonial-box-overlay {
    opacity: 1;
}

.ce-testimonial-box.expanded .ce-testimonial-box-overlay {
    opacity: 0;
}

.ce-testimonial-box-overlay i {
    font-size: 48px;
    color: #ffffff;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.ce-testimonial-box:hover .ce-testimonial-box-overlay i {
    transform: scale(1);
}

/* Expanded Content Inside Image */
.ce-testimonial-expanded-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 450px;
    height: 100%;
    background: #ffffff;
    padding: 35px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    border-radius: 0 8px 8px 0;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.ce-testimonial-box.expanded .ce-testimonial-expanded-content {
    opacity: 1;
    visibility: visible;
}

.ce-testimonial-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #FF6B35;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ce-testimonial-close-btn:hover {
    background: #F7931E;
    transform: rotate(90deg);
}

.ce-testimonial-expanded-content .ce-testimonial-quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 15px;
}

.ce-testimonial-expanded-content .ce-testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
}

.ce-testimonial-author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.ce-testimonial-author-info p {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

.ce-testimonial-expanded-content .ce-testimonial-rating {
    display: flex;
    gap: 5px;
}

.ce-testimonial-expanded-content .ce-testimonial-rating i {
    color: #FFB800;
    font-size: 16px;
}

/* Testimonial Responsive */
@media (max-width: 768px) {
    .ce-testimonials-loop {
        padding: 60px 0 40px;
    }
    
    .ce-testimonials-heading {
        font-size: 32px;
    }
    
    .ce-testimonial-box {
        width: 200px;
        height: 200px;
    }
    
    .ce-testimonial-box.expanded {
        width: 90vw;
        height: 400px;
        flex-direction: column;
    }
    
    .ce-testimonial-box.expanded img {
        width: 100%;
        height: 200px;
        border-radius: 12px 12px 0 0;
    }
    
    .ce-testimonial-expanded-content {
        width: 100%;
        height: 200px;
        padding: 20px;
        border-radius: 0 0 12px 12px;
        position: relative;
        top: auto;
        right: auto;
    }
}

/* FAQ Section - Accordion Style */
.ce-faq-modern {
    padding: 120px 0;
    background: #ffffff;
}

.ce-faq-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
}

.ce-faq-heading {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.ce-faq-description {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.ce-faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ce-faq-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.ce-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ce-faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ce-faq-item.active {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.ce-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ce-faq-question:hover {
    color: #FF6B35;
}

.ce-faq-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF6B35;
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ce-faq-item.active .ce-faq-icon {
    transform: rotate(45deg);
}

.ce-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
    text-align: right;
}

.ce-faq-answer p {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
    border-radius: 8px 8px 0 8px;
    padding: 12px 16px;
    margin: 15px 0 25px 0;
    margin-left: auto;
    font-size: 15px;
    line-height: 1.6;
    color: #303030;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    position: relative;
    max-width: 85%;
    text-align: left;
}

.ce-faq-answer p::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 12px solid #ffe8dc;
    border-right: 8px solid transparent;
}

/* Contact Section - Modern Layout with Map */
.ce-contact-modern {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.ce-contact-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.ce-contact-heading {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.ce-contact-subheading {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.ce-contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.ce-contact-form-wrapper {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.ce-contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ce-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ce-form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ce-form-group-modern label {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.ce-form-group-modern input,
.ce-form-group-modern textarea {
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.ce-form-group-modern input:focus,
.ce-form-group-modern textarea:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.ce-form-full {
    grid-column: 1 / -1;
}

.ce-submit-btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.ce-submit-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.ce-contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ce-contact-info-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: start;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ce-contact-info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.ce-contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    flex-shrink: 0;
}

.ce-contact-info-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.ce-contact-info-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.ce-map-container {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Concrete Experts */
@media (max-width: 1200px) {
    .ce-hero-diagonal {
        grid-template-columns: 1fr;
    }
    
    .ce-hero-left::after {
        display: none;
    }
    
    .ce-hero-right {
        min-height: 500px;
    }
    
    .ce-about-grid {
        gap: 50px;
    }
    
    .ce-service-tab-layout {
        grid-template-columns: 400px 1fr;
        gap: 40px;
    }
    
    .ce-service-tab-reverse {
        grid-template-columns: 1fr 400px;
    }
    
    .ce-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ce-why-horizontal-grid {
        grid-template-columns: 1fr;
    }
    
    .ce-testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .ce-faq-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .ce-contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ce-services-main-heading {
        font-size: 36px;
    }
    
    .ce-services-main-desc {
        font-size: 16px;
    }
    
    .ce-service-tabs {
        flex-direction: column;
        border-bottom: none;
    }
    
    .ce-service-tab {
        border-bottom: 2px solid #e0e0e0;
        margin-bottom: 0;
        text-align: left;
    }
    
    .ce-service-tab.active {
        border-bottom-color: #FF6B35;
    }
    
    .ce-service-tab-layout,
    .ce-service-tab-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ce-service-tab-image img {
        height: 300px;
    }
    
    .ce-service-tab-text h3 {
        font-size: 26px;
    }
}


@media (max-width: 768px) {
    .ce-hero-heading {
        font-size: 38px;
    }
    
    .ce-hero-desc {
        font-size: 16px;
    }
    
    .ce-hero-cta-group {
        flex-direction: column;
    }
    
    .ce-cta-primary,
    .ce-cta-outline {
        width: 100%;
        justify-content: center;
    }
    
    .ce-hero-stats-float {
        flex-direction: column;
        left: 20px;
        bottom: 20px;
    }
    
    .ce-about-modern {
        padding: 80px 0;
    }
    
    .ce-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ce-about-heading-modern {
        font-size: 32px;
    }
    
    .ce-about-features-list {
        grid-template-columns: 1fr;
    }
    
    .ce-services-alternate {
        padding: 80px 0;
    }
    
    .ce-services-heading-modern {
        font-size: 32px;
    }
    
    .ce-service-alternate-card,
    .ce-service-reverse {
        grid-template-columns: 1fr;
    }
    
    .ce-service-alternate-image {
        height: 250px;
    }
    
    .ce-service-alternate-content {
        padding: 30px;
    }
    
    .ce-how-works-modern {
        padding: 80px 0;
    }
    
    .ce-how-works-heading {
        font-size: 32px;
    }
    
    .ce-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .ce-why-choose-horizontal {
        padding: 80px 0;
    }
    
    .ce-why-choose-heading {
        font-size: 32px;
    }
    
    .ce-why-horizontal-card {
        flex-direction: column;
        text-align: center;
    }
    
    .ce-why-horizontal-arrow {
        display: none;
    }
    
    .ce-testimonials-modern {
        padding: 80px 0;
    }
    
    .ce-testimonials-heading {
        font-size: 32px;
    }
    
    .ce-faq-modern {
        padding: 80px 0;
    }
    
    .ce-faq-heading {
        font-size: 32px;
    }
    
    .ce-contact-modern {
        padding: 80px 0;
    }
    
    .ce-contact-heading {
        font-size: 32px;
    }
    
    .ce-contact-form-wrapper {
        padding: 30px;
    }
    
    .ce-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ce-hero-left {
        padding: 60px 30px;
    }
    
    .ce-hero-heading {
        font-size: 32px;
    }
    
    .ce-stat-float-item {
        padding: 15px 20px;
    }
    
    .ce-stat-float-num {
        font-size: 24px;
    }
    
    .ce-about-heading-modern,
    .ce-services-heading-modern,
    .ce-how-works-heading,
    .ce-why-choose-heading,
    .ce-testimonials-heading,
    .ce-faq-heading,
    .ce-contact-heading {
        font-size: 28px;
    }
    
    .ce-service-alternate-content {
        padding: 25px;
    }
    
    .ce-service-alternate-title {
        font-size: 22px;
    }
    
    .ce-why-horizontal-card {
        padding: 25px;
    }
    
    .ce-contact-form-wrapper {
        padding: 25px;
    }
    
    .ce-map-container {
        height: 350px;
    }
}

/* ========================================
   CONCRETE EXPERTS - CHATBOT ORANGE THEME
   ======================================== */

/* Concrete Experts Chatbot Styling */
body.concrete-experts-page .chatbot-button {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

body.concrete-experts-page .chatbot-button:hover {
    background: linear-gradient(135deg, #F7931E 0%, #FF6B35 100%);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

body.concrete-experts-page .chatbot-header {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

body.concrete-experts-page .chatbot-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: 800;
}

body.concrete-experts-page .bot-message .message-avatar {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #ffffff;
}

body.concrete-experts-page .bot-message .message-content {
    background: #fff5f0;
    border-left: 3px solid #FF6B35;
}

body.concrete-experts-page .user-message .message-content {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #ffffff;
}

body.concrete-experts-page .quick-replies button {
    background: #fff5f0;
    color: #FF6B35;
    border: 2px solid #FF6B35;
}

body.concrete-experts-page .quick-replies button:hover {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #ffffff;
}

body.concrete-experts-page .chatbot-send {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

body.concrete-experts-page .chatbot-send:hover {
    background: linear-gradient(135deg, #F7931E 0%, #FF6B35 100%);
}

body.concrete-experts-page .typing-indicator span {
    background: #FF6B35;
}

/* Concrete Experts Footer Social Links */
body.concrete-experts-page .footer-social-links .social-link:hover {
    background: #FF6B35 !important;
    color: #ffffff;
}

/* Concrete Experts Footer All Links */
body.concrete-experts-page .footer-col ul li a:hover {
    color: #FF6B35 !important;
}

body.concrete-experts-page .footer-legal-links a:hover {
    color: #FF6B35 !important;
}

body.concrete-experts-page .footer-contact-info a:hover {
    color: #FF6B35 !important;
}

/* Enquiry Button for Concrete Experts (Left Side) */
body.concrete-experts-page .enquiry-button-left {
    position: fixed;
    left: 30px;
    bottom: 30px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

body.concrete-experts-page .enquiry-button-left:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

body.concrete-experts-page .enquiry-button-left i {
    font-size: 20px;
}

/* Responsive adjustments for Concrete Experts buttons */
@media (max-width: 768px) {
    body.concrete-experts-page .enquiry-button-left {
        left: 15px;
        bottom: 90px;
        padding: 14px 20px;
        font-size: 14px;
    }
    
    body.concrete-experts-page .enquiry-button-left span {
        display: none;
    }
    
    body.concrete-experts-page .enquiry-button-left {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
}

/* Services Header Styles */
.ce-services-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.ce-services-heading-modern {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.ce-services-subheading {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* Why Choose Header Styles */
.ce-why-choose-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.ce-why-choose-heading {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.ce-why-choose-subheading {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}


/* ========================================
   VISION & MISSION SECTION - DIAGONAL SPLIT
   ======================================== */

.ce-vision-mission-diagonal {
    padding: 0;
    background: #ffffff;
    overflow: hidden;
}

.ce-vm-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 500px;
    display: flex;
    margin: 0 auto;
}

.ce-vm-split {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    position: relative;
}

.ce-vm-mission {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    z-index: 2;
}

.ce-vm-vision {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    z-index: 1;
}

.ce-vm-diagonal-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #ffffff;
    transform: translateX(-50%);
    z-index: 3;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.ce-vm-content {
    max-width: 500px;
    text-align: center;
    position: relative;
    z-index: 4;
}

.ce-vm-icon-large {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    color: #ffffff;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.ce-vm-split:hover .ce-vm-icon-large {
    transform: scale(1.1) rotate(360deg);
    background: rgba(255, 255, 255, 0.3);
}

.ce-vm-heading {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ce-vm-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Responsive for Vision & Mission Diagonal */
@media (max-width: 1024px) {
    .ce-vm-container {
        height: 450px;
    }
    
    .ce-vm-split {
        padding: 60px 40px;
    }
    
    .ce-vm-heading {
        font-size: 36px;
    }
    
    .ce-vm-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .ce-vm-container {
        height: auto;
        flex-direction: column;
    }
    
    .ce-vm-split {
        padding: 60px 30px;
    }
    
    .ce-vm-heading {
        font-size: 32px;
    }
    
    .ce-vm-text {
        font-size: 15px;
    }
    
    .ce-vm-diagonal-line {
        display: none;
    }
}
    
    
    .ce-vm-heading {
        font-size: 32px;
    }
    
    .ce-vm-text {
        font-size: 15px;
    }
    
    .ce-vm-icon-large {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }


@media (max-width: 480px) {
    .ce-vm-split {
        padding: 50px 25px;
    }
    
    .ce-vm-heading {
        font-size: 28px;
    }
    
    .ce-vm-text {
        font-size: 14px;
    }
    
    .ce-vm-icon-large {
        width: 70px;
        height: 70px;
        font-size: 36px;
    }
}


/* ========================================
   AP PRECAST - FAQ SECTION
   ======================================== */

.ap-faq-section {
    padding: 100px 0;
    background: #ffffff;
}

.ap-faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.ap-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.ap-faq-item {
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ap-faq-item.active {
    background: #ffffff;
    border-color: #1E3A8A;
    box-shadow: 0 5px 20px rgba(30, 58, 138, 0.1);
}

.ap-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ap-faq-question:hover {
    color: #1E3A8A;
}

.ap-faq-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1E3A8A;
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.ap-faq-item.active .ap-faq-icon {
    transform: rotate(45deg);
    background: #E42527;
}

.ap-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.ap-faq-answer p {
    padding: 0 30px 25px;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Responsive for AP Precast FAQ */
@media (max-width: 1024px) {
    .ap-faq-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .ap-faq-section {
        padding: 60px 0;
    }
    
    .ap-faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ap-faq-question {
        padding: 20px 25px;
        font-size: 16px;
    }
    
    .ap-faq-answer p {
        padding: 0 25px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .ap-faq-section {
        padding: 50px 0;
    }
    
    .ap-faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }
    
    .ap-faq-answer p {
        padding: 0 20px 18px;
        font-size: 13px;
    }
    
    .ap-faq-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}


/* ========================================
   CONTACT MODERN SECTION - INDEX PAGE
   ======================================== */

.contact-modern-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-modern-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.contact-label-red {
    display: inline-block;
    font-size: 13px;
    color: #E42527;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-heading-modern {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-subheading-modern {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.contact-modern-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

/* Contact Info Cards Centered Layout */
.contact-info-cards-centered {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.contact-info-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: start;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-icon-modern {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E42527 0%, #ff5a5c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.contact-info-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    margin-top: 4px;
}

/* Contact Form */
.contact-form-modern-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-modern label {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.form-group-modern input,
.form-group-modern textarea {
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: #E42527;
    box-shadow: 0 0 0 4px rgba(228, 37, 39, 0.1);
}

.form-full-width {
    grid-column: 1 / -1;
}

.contact-submit-btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #E42527 0%, #ff5a5c 100%);
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(228, 37, 39, 0.3);
}

.contact-submit-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(228, 37, 39, 0.4);
}

/* Google Map Section */
.contact-map-section {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive for Contact Modern */
@media (max-width: 1024px) {
    .contact-modern-section {
        padding: 80px 0;
    }
    
    .contact-modern-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .contact-info-cards-centered {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-modern-section {
        padding: 60px 0;
    }
    
    .contact-heading-modern {
        font-size: 32px;
    }
    
    .contact-subheading-modern {
        font-size: 16px;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-info-cards-centered {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form-modern-wrapper {
        padding: 30px;
    }
    
    .form-row-modern {
        grid-template-columns: 1fr;
    }
    
    .contact-map-section {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-modern-section {
        padding: 50px 0;
    }
    
    .contact-heading-modern {
        font-size: 28px;
    }
    
    .contact-info-item {
        padding: 20px;
    }
    
    .contact-info-icon-modern {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .contact-form-modern-wrapper {
        padding: 25px;
    }
    
    .contact-map-section {
        height: 300px;
    }
}


/* ========================================
   INDEX PAGE - ENQUIRY BUTTON & MODAL
   ======================================== */

/* Enquiry Button (Left Side) */
.enquiry-button-index {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #E42527 0%, #ff5a5c 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(228, 37, 39, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.enquiry-button-index:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(228, 37, 39, 0.5);
}

.enquiry-button-index i {
    font-size: 20px;
}

/* Enquiry Modal */
.enquiry-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.enquiry-modal-content {
    background: #ffffff;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.enquiry-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f5f5f5;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #333;
}

.enquiry-modal-close:hover {
    background: #E42527;
    color: #ffffff;
    transform: rotate(90deg);
}

.enquiry-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.enquiry-modal-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.enquiry-modal-header p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.enquiry-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.enquiry-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.enquiry-form-group label {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.enquiry-form-group input,
.enquiry-form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.enquiry-form-group input:focus,
.enquiry-form-group textarea:focus {
    outline: none;
    border-color: #E42527;
    box-shadow: 0 0 0 4px rgba(228, 37, 39, 0.1);
}

.enquiry-form-full {
    grid-column: 1 / -1;
}

.enquiry-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #E42527 0%, #ff5a5c 100%);
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(228, 37, 39, 0.3);
}

.enquiry-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(228, 37, 39, 0.4);
}

/* ========================================
   INDEX PAGE - FAQ SECTION
   ======================================== */

.index-faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.index-faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.index-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.index-faq-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.index-faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.index-faq-item.active {
    box-shadow: 0 8px 25px rgba(228, 37, 39, 0.15);
}

.index-faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.index-faq-question:hover {
    background: #f8f9fa;
}

.index-faq-item.active .index-faq-question {
    background: #fff5f5;
}

.index-faq-question span {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.5;
}

.index-faq-icon {
    width: 30px;
    height: 30px;
    background: #E42527;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.index-faq-item.active .index-faq-icon {
    background: #E42527;
    transform: rotate(180deg);
}

.index-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.index-faq-answer p {
    padding: 0 30px 25px 30px;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Responsive for Enquiry & FAQ */
@media (max-width: 1024px) {
    .index-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .enquiry-button-index {
        left: 20px;
        bottom: 80px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .enquiry-button-index i {
        font-size: 18px;
    }

    .enquiry-modal-content {
        padding: 30px 25px;
    }

    .enquiry-modal-header h3 {
        font-size: 24px;
    }

    .enquiry-form-row {
        grid-template-columns: 1fr;
    }

    .index-faq-section {
        padding: 60px 0;
    }

    .index-faq-question {
        padding: 20px;
    }

    .index-faq-question span {
        font-size: 15px;
    }

    .index-faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .enquiry-button-index {
        left: 15px;
        bottom: 70px;
        padding: 10px 18px;
        font-size: 13px;
    }

    .enquiry-button-index span {
        display: none;
    }

    .enquiry-modal-content {
        padding: 25px 20px;
    }

    .enquiry-modal-header h3 {
        font-size: 22px;
    }

    .index-faq-section {
        padding: 50px 0;
    }
}


/* ========================================
   CONCRETE EXPERTS - COMPREHENSIVE RESPONSIVE DESIGN
   ======================================== */

/* Tablet Landscape - 1024px */
@media (max-width: 1024px) {
    .ce-hero-content-wrapper {
        max-width: 500px;
    }
    
    .ce-hero-heading {
        font-size: 48px;
    }
    
    .ce-about-heading-modern {
        font-size: 38px;
    }
    
    .ce-services-main-heading {
        font-size: 42px;
    }
    
    .ce-how-works-heading {
        font-size: 38px;
    }
    
    .ce-testimonial-box {
        width: 300px;
        height: 300px;
    }
    
    .ce-testimonial-box.expanded {
        width: 750px;
        height: 350px;
    }
    
    .ce-testimonial-box.expanded img {
        width: 350px;
        height: 350px;
    }
}

/* Tablet Portrait - 768px */
@media (max-width: 768px) {
    /* Hero Section */
    .ce-hero-left {
        padding: 80px 40px;
    }
    
    .ce-hero-heading {
        font-size: 42px;
    }
    
    .ce-hero-desc {
        font-size: 17px;
    }
    
    .ce-hero-badge-new {
        font-size: 13px;
        padding: 10px 18px;
    }
    
    .ce-stat-float-num {
        font-size: 28px;
    }
    
    .ce-stat-float-label {
        font-size: 12px;
    }
    
    /* About Section */
    .ce-about-modern {
        padding: 100px 0;
    }
    
    .ce-about-lead-text {
        font-size: 18px;
    }
    
    .ce-about-body-text {
        font-size: 15px;
    }
    
    /* Services Tabbed Section */
    .ce-services-tabbed {
        padding: 100px 0;
    }
    
    .ce-service-tab {
        padding: 18px 25px;
        font-size: 15px;
    }
    
    .ce-service-tab-text h3 {
        font-size: 28px;
    }
    
    .ce-service-tab-text p {
        font-size: 15px;
    }
    
    /* How It Works Section */
    .ce-how-works-modern {
        padding: 100px 0;
    }
    
    .ce-step-card {
        padding: 35px;
    }
    
    .ce-step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .ce-step-title {
        font-size: 20px;
    }
    
    /* Why Choose Section */
    .ce-why-choose-horizontal {
        padding: 100px 0;
    }
    
    .ce-why-horizontal-card {
        padding: 30px;
    }
    
    .ce-why-horizontal-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
    
    .ce-why-horizontal-title {
        font-size: 20px;
    }
    
    /* Testimonials Section */
    .ce-testimonials-loop {
        padding: 100px 0 60px;
    }
    
    .ce-testimonial-box {
        width: 250px;
        height: 250px;
    }
    
    .ce-testimonial-box.expanded {
        width: 90vw;
        height: auto;
        flex-direction: column;
    }
    
    .ce-testimonial-box.expanded img {
        width: 100%;
        height: 300px;
        border-radius: 12px 12px 0 0;
    }
    
    .ce-testimonial-expanded-content {
        width: 100%;
        height: auto;
        min-height: 300px;
        border-radius: 0 0 12px 12px;
        position: relative;
        top: auto;
        right: auto;
    }
    
    .ce-testimonial-track::before,
    .ce-testimonial-track::after {
        width: 80px;
    }
    
    /* FAQ Section */
    .ce-faq-modern {
        padding: 100px 0;
    }
    
    .ce-faq-left {
        margin-bottom: 40px;
    }
    
    .ce-faq-question {
        padding: 20px 25px;
        font-size: 15px;
    }
    
    .ce-faq-answer p {
        padding: 11px 15px;
        margin: 12px 0 20px 0;
        margin-left: auto;
        font-size: 14px;
        max-width: 88%;
    }
    
    .ce-faq-answer {
        padding: 0 25px;
    }
    
    /* Contact Section */
    .ce-contact-modern {
        padding: 100px 0;
    }
    
    .ce-contact-header-center {
        margin-bottom: 50px;
    }
    
    .ce-contact-info-card {
        padding: 20px;
    }
    
    .ce-contact-info-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Mobile Large - 480px */
@media (max-width: 480px) {
    /* Hero Section */
    .ce-hero-left {
        padding: 60px 25px;
    }
    
    .ce-hero-heading {
        font-size: 34px;
        line-height: 1.2;
    }
    
    .ce-hero-desc {
        font-size: 16px;
    }
    
    .ce-hero-badge-new {
        font-size: 12px;
        padding: 8px 15px;
    }
    
    .ce-cta-primary,
    .ce-cta-outline {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .ce-hero-stats-float {
        gap: 10px;
    }
    
    .ce-stat-float-item {
        padding: 12px 18px;
    }
    
    .ce-stat-float-num {
        font-size: 22px;
    }
    
    .ce-stat-float-label {
        font-size: 11px;
    }
    
    /* About Section */
    .ce-about-modern {
        padding: 70px 0;
    }
    
    .ce-about-heading-modern {
        font-size: 30px;
    }
    
    .ce-about-lead-text {
        font-size: 17px;
    }
    
    .ce-about-body-text {
        font-size: 14px;
    }
    
    .ce-feature-check-item {
        font-size: 14px;
    }
    
    .ce-feature-check-item i {
        font-size: 18px;
    }
    
    /* Services Section */
    .ce-services-tabbed {
        padding: 70px 0;
    }
    
    .ce-services-main-heading {
        font-size: 32px;
    }
    
    .ce-services-main-desc {
        font-size: 15px;
    }
    
    .ce-service-tab {
        padding: 16px 20px;
        font-size: 14px;
    }
    
    .ce-service-tab-content {
        padding: 40px 0;
    }
    
    .ce-service-tab-text h3 {
        font-size: 24px;
    }
    
    .ce-service-tab-text p {
        font-size: 14px;
    }
    
    .ce-service-tab-image img {
        height: 250px;
    }
    
    /* How It Works Section */
    .ce-how-works-modern {
        padding: 70px 0;
    }
    
    .ce-how-works-heading {
        font-size: 30px;
    }
    
    .ce-step-card {
        padding: 25px;
    }
    
    .ce-step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .ce-step-title {
        font-size: 18px;
    }
    
    .ce-step-desc {
        font-size: 14px;
    }
    
    /* Why Choose Section */
    .ce-why-choose-horizontal {
        padding: 70px 0;
    }
    
    .ce-why-choose-heading {
        font-size: 30px;
    }
    
    .ce-why-horizontal-card {
        padding: 25px;
    }
    
    .ce-why-horizontal-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .ce-why-horizontal-title {
        font-size: 18px;
    }
    
    .ce-why-horizontal-desc {
        font-size: 14px;
    }
    
    /* Testimonials Section */
    .ce-testimonials-loop {
        padding: 70px 0 40px;
    }
    
    .ce-testimonials-heading {
        font-size: 30px;
    }
    
    .ce-testimonials-subheading {
        font-size: 15px;
    }
    
    .ce-testimonial-box {
        width: 200px;
        height: 200px;
    }
    
    .ce-testimonial-box.expanded img {
        height: 250px;
    }
    
    .ce-testimonial-expanded-content {
        padding: 25px;
        min-height: 250px;
    }
    
    .ce-testimonial-expanded-content .ce-testimonial-quote-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .ce-testimonial-expanded-content .ce-testimonial-text {
        font-size: 14px;
    }
    
    .ce-testimonial-author-info h4 {
        font-size: 16px;
    }
    
    .ce-testimonial-author-info p {
        font-size: 13px;
    }
    
    .ce-testimonial-close-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .ce-testimonial-track::before,
    .ce-testimonial-track::after {
        width: 50px;
    }
    
    /* FAQ Section */
    .ce-faq-modern {
        padding: 70px 0;
    }
    
    .ce-faq-heading {
        font-size: 30px;
    }
    
    .ce-faq-description {
        font-size: 15px;
    }
    
    .ce-faq-question {
        padding: 18px 20px;
        font-size: 14px;
    }
    
    .ce-faq-answer p {
        padding: 10px 14px;
        margin: 10px 0 18px 0;
        margin-left: auto;
        font-size: 13px;
        max-width: 90%;
    }
    
    .ce-faq-answer {
        padding: 0 20px;
    }
    
    .ce-faq-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .ce-faq-contact-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    /* Contact Section */
    .ce-contact-modern {
        padding: 70px 0;
    }
    
    .ce-contact-heading {
        font-size: 30px;
    }
    
    .ce-contact-subheading {
        font-size: 15px;
    }
    
    .ce-contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .ce-form-group-modern label {
        font-size: 13px;
    }
    
    .ce-form-group-modern input,
    .ce-form-group-modern textarea {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .ce-submit-btn-modern {
        padding: 14px 32px;
        font-size: 15px;
    }
    
    .ce-contact-info-card {
        padding: 18px;
    }
    
    .ce-contact-info-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    .ce-contact-info-text h4 {
        font-size: 15px;
    }
    
    .ce-contact-info-text p {
        font-size: 13px;
    }
    
    .ce-map-container {
        height: 300px;
    }
}

/* Mobile Small - 375px */
@media (max-width: 375px) {
    .ce-hero-heading {
        font-size: 30px;
    }
    
    .ce-hero-desc {
        font-size: 15px;
    }
    
    .ce-about-heading-modern,
    .ce-services-main-heading,
    .ce-how-works-heading,
    .ce-why-choose-heading,
    .ce-testimonials-heading,
    .ce-faq-heading,
    .ce-contact-heading {
        font-size: 26px;
    }
    
    .ce-testimonial-box {
        width: 180px;
        height: 180px;
    }
    
    .ce-testimonial-box.expanded img {
        height: 220px;
    }
    
    .ce-testimonial-expanded-content {
        padding: 20px;
        min-height: 220px;
    }
}
