@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    padding-top: 70px;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    flex: 0 0 auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-right {
    flex: 0 0 auto;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links .inquiry-btn {
    display: none;
}

 .logo {
            height: 45px; /* Adjust logo size */
            width: auto;
            object-fit: contain;
        }

.nav-links a:hover {
    color: #ff3700;
}

.inquiry-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.inquiry-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.active-link a {
    color: #ff3700;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        position: relative;
    }

    .hamburger {
        display: flex;
        order: 1;
    }

    .logo {
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 20px;
    }

    .nav-right {
        display: none;
        /* Hide desktop inquiry button on mobile */
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: left;
        padding-top: 20px;
        gap: 10px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        position: fixed;
        transform: none;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        font-size: 18px;
        display: block;
        text-align: left;
        width: 100%;
        padding: 15px 25px;
    }

    .nav-links li a:hover {
        color: #0056b3;
        background-color: rgb(233, 233, 233);
    }

    .nav-links .inquiry-btn {
        display: inline-block;
        /* Show inquiry button in mobile menu */
        padding: 15px 30px;
        /* Reduced padding for smaller width */
        font-size: 18px;
        /* Slightly smaller font */
        color: #fff;
        margin: 0 20px;
        text-align: center;
    }

    .nav-links li:last-child {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}



.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease forwards;
}

.hero-title .line:nth-child(2) {
    animation-delay: 0.3s;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards;
    animation-delay: 0.6s;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards;
    animation-delay: 0.9s;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: white;
    color: rgb(0, 0, 0);
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.2s;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: white;
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 12px;
    height: 12px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 15px;
    }

    .hero-title {
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        margin-bottom: 2rem;
    }
}



.core-container {
    max-width: 1300px;
    min-height: 100vh;
    padding: 40px 20px;
    margin: 0 auto;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: black;
    margin-bottom: 20px;
}

.header .subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    color: black;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 35px 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    color: white;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #3742fa, #2f3542);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #2ed573, #1e90ff);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #ffa502, #ff6348);
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.service-description strong {
    color: #ffd700;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .header h2 {
        font-size: 2.2rem;
    }

    .header .subtitle {
        font-size: 1.1rem;
    }

    .service-card {
        padding: 35px 25px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

}

@media (max-width: 480px) {
    .header h2 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .service-description {
        font-size: 0.95rem;
    }
}

/* Animation for cards appearing */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: slideInUp 0.6s ease forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}


.why-section {
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.why-container {
    max-width: 1300px;
    /* Reduced from 1350px */
    margin: 0 auto;
    padding: 25px;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 45px;
    /* Reduced from 50px */
    align-items: center;
    width: 100%;
    height: 90vh;
}

/* Left Side - Image Section */
.why-image-container {
    position: relative;
    height: 100%;
    max-height: 75vh;
}

.why-image-wrapper {
    position: relative;
    height: 100%;
    border-radius: 20px;
    /* Reduced from 24px */
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    /* Slightly reduced shadow */
    transform: perspective(1000px) rotateY(-3deg);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.4);
    /* Slightly reduced shadow */
}

.why-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.why-image-wrapper:hover .why-main-image {
    transform: scale(1.05);
}

.why-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.6), rgba(118, 75, 162, 0.6));
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.why-image-wrapper:hover .why-image-overlay {
    opacity: 0.6;
}

.why-floating-stats {
    position: absolute;
    top: 18px;
    /* Reduced from 20px */
    right: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Reduced from 12px */
}

.why-stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    /* Reduced from 12px */
    padding: 10px 14px;
    /* Reduced from 12px 16px */
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: why-float 3s ease-in-out infinite;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    /* Slightly reduced shadow */
}

.why-stat-delay-1 {
    animation-delay: 0.5s;
}

.why-stat-delay-2 {
    animation-delay: 1s;
}

.why-stat-number {
    font-size: 1.3rem;
    /* Reduced from 1.4rem */
    font-weight: 900;
    color: #667eea;
    line-height: 1;
}

.why-stat-label {
    font-size: 0.75rem;
    /* Reduced from 0.8rem */
    color: #666;
    font-weight: 600;
    margin-top: 3px;
}

@keyframes why-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    /* Reduced from -8px */
}

/* Right Side - Content Section */
.why-content-container {
    padding-left: 18px;
    /* Reduced from 20px */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-header {
    margin-bottom: 25px;
    /* Reduced from 30px */
}

.why-badge {
    display: inline-block;
    color: white;
    border-radius: 18px;
    /* Reduced from 20px */
    font-size: 1rem;
    /* Reduced from 0.8rem */
    font-weight: 600;
    margin-bottom: 10px;
    /* Reduced from 16px */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-title {
    font-size: 2rem;
    /* Reduced from 2.1rem */
    font-weight: 800;
    color: white;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, #f1c40f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-subtitle {
    font-size: 0.95rem;
    /* Reduced from 1rem */
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 10px;
    /* Reduced from 22px */
}

.why-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Reduced from 12px */
    flex: 1;
    max-height: 50vh;
    overflow: hidden;
}

.why-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    /* Reduced from 14px */
    padding: 10px 14px;
    /* Reduced from 12px 16px */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    /* Reduced from 14px */
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateX(50px);
    animation: why-slide-in 0.8s ease forwards;
}

.why-feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.why-feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.why-feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.why-feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

.why-feature-item:nth-child(5) {
    animation-delay: 0.5s;
}

.why-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(6px);
    /* Reduced from 8px */
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    /* Slightly reduced shadow */
}

@keyframes why-slide-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.why-feature-icon {
    flex-shrink: 0;
}

.why-icon-bg {
    width: 38px;
    /* Reduced from 40px */
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-icon-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-feature-item:hover .why-icon-bg::before {
    opacity: 1;
}

.why-icon-expertise {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.why-icon-team {
    background: linear-gradient(135deg, #ffa502, #ff6348);
}

.why-icon-quality {
    background: linear-gradient(135deg, #ffd700, #f39c12);
}

.why-icon-infrastructure {
    background: linear-gradient(135deg, #3742fa, #2f3542);
}

.why-icon-support {
    background: linear-gradient(135deg, #2ed573, #17c0eb);
}

.why-icon-text {
    font-size: 0.85rem;
    /* Reduced from 0.9rem */
    font-weight: 900;
    color: white;
}

.why-icon-emoji {
    font-size: 1.2rem;
    /* Reduced from 1.3rem */
}

.why-feature-item:hover .why-icon-bg {
    transform: rotate(360deg) scale(1.1);
}

.why-feature-content {
    flex: 1;
}

.why-feature-title {
    font-size: 1.05rem;
    /* Reduced from 1.1rem */
    font-weight: 700;
    color: white;
    margin-bottom: 3px;
    /* Reduced from 4px */
    line-height: 1.2;
}

.why-feature-description {
    font-size: 0.85rem;
    /* Reduced from 0.9rem */
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.why-cta-section {
    margin-top: 5px;
    /* Reduced from 20px */
}

.why-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b6b, #ffd700);
    color: white;
    padding: 11px 26px;
    /* Reduced from 12px 28px */
    border: none;
    border-radius: 32px;
    /* Reduced from 35px */
    font-size: 0.9rem;
    /* Reduced from 0.95rem */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 18px rgba(255, 107, 107, 0.3);
    /* Slightly reduced shadow */
    position: relative;
    overflow: hidden;
}

.why-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.why-cta-button:hover::before {
    left: 100%;
}

.why-cta-button:hover {
    transform: translateY(-2px) scale(1.04);
    /* Reduced from -3px and scale(1.05) */
    box-shadow: 0 10px 28px rgba(255, 107, 107, 0.4);
    /* Slightly reduced shadow */
}

.why-button-arrow {
    font-size: 1rem;
    /* Reduced from 1.1rem */
    transition: transform 0.3s ease;
}

.why-cta-button:hover .why-button-arrow {
    transform: translateX(3px);
    /* Reduced from 4px */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .why-section {
        height: 100vh;
        padding: 0;
    }

    .why-container {
        padding: 15px 12px;
        height: 100%;
    }

    .why-layout {
        grid-template-columns: 1fr;
        gap: 22px;
        /* Reduced from 25px */
        height: 95vh;
    }

    .why-image-container {
        max-height: 30vh;
        /* Reduced from 32vh */
        order: 2;
    }

    .why-image-wrapper {
        transform: none;
        border-radius: 16px;
        /* Reduced from 18px */
    }

    .why-content-container {
        padding-left: 0;
        order: 1;
        height: auto;
    }

    .why-title {
        font-size: 1.6rem;
        /* Reduced from 1.7rem */
    }

    .why-subtitle {
        font-size: 0.95rem;
        /* Reduced from 1rem */
    }

    .why-features-list {
        gap: 8px;
        max-height: 40vh;
    }

    .why-feature-item {
        padding: 10px 12px;
        /* Reduced from 12px 14px */
        gap: 12px;
        /* Reduced from 14px */
    }

    .why-icon-bg {
        width: 34px;
        /* Reduced from 36px */
        height: 34px;
    }

    .why-icon-text {
        font-size: 0.7rem;
        /* Reduced from 0.75rem */
    }

    .why-icon-emoji {
        font-size: 0.9rem;
        /* Reduced from 1rem */
    }

    .why-feature-title {
        font-size: 0.95rem;
        /* Reduced from 1rem */
    }

    .why-feature-description {
        font-size: 0.8rem;
        /* Reduced from 0.85rem */
    }

    .why-floating-stats {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 12px;
        /* Reduced from 15px */
        gap: 8px;
        /* Reduced from 10px */
    }

    .why-stat-card {
        padding: 7px 10px;
        /* Reduced from 8px 12px */
    }

    .why-stat-number {
        font-size: 1rem;
        /* Reduced from 1.1rem */
    }

    .why-stat-label {
        font-size: 0.65rem;
        /* Reduced from 0.7rem */
    }

    .why-cta-button {
        padding: 10px 22px;
        /* Reduced from 12px 24px */
        font-size: 0.9rem;
        /* Reduced from 0.95rem */
    }
}

@media (max-width: 480px) {
    .why-layout {
        height: 98vh;
        gap: 16px;
        /* Reduced from 18px */
    }

    .why-title {
        font-size: 1.5rem;
        /* Reduced from 1.7rem */
    }

    .why-subtitle {
        font-size: 0.85rem;
        /* Reduced from 0.9rem */
    }

    .why-floating-stats {
        flex-direction: column;
        align-items: center;
    }
}


/* Product Page */
.product-section {
  padding: 40px;
  max-width: 1300px;
  margin: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */
.product-card {
  margin-top: 30px;
  height: 260px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  padding: 8px;
  text-align: center;
}

/* TITLE */
.product-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: #333;
  overflow: hidden;
}

/* IMAGE CONTAINER */
.product-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* IMAGE */
.product-image img {
  max-height: 140px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* BUTTON */
.read-more {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
  text-decoration: none;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.product-card:hover .read-more {
  transform: translateY(0%);
}

/* Responsive */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.machinery-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 60px auto;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.machinery-video,
.machinery-content {
  flex: 1 1 300px;
  padding: 30px;
}

.machinery-video video {
  width: auto;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.machinery-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #333;
}

.machinery-content h2 {
  margin: 0 0 16px;
  font-size: 2rem;
  color: #002f4b;
}

.machinery-content p {
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 1rem;
}

.quote-box {
  padding: 20px;
  border-left: 4px solid #ff6f3c;
  background: #f1f7fa;
  border-radius: 6px;
  font-style: italic;
  position: relative;
}

.quote-box::before {
  content: '“';
  font-size: 3rem;
  position: absolute;
  top: -10px;
  left: 10px;
  color: #ff6f3c;
}

.quote-box::after {
  content: '”';
  font-size: 3rem;
  position: absolute;
  bottom: -10px;
  right: 10px;
  color: #ff6f3c;
}

.quote-box p {
  margin: 0;
  font-size: 1.1rem;
}

.quote-box cite {
  display: block;
  margin-top: 12px;
  text-align: right;
  font-weight: bold;
  color: #002f4b;
}

@media (max-width: 768px) {
  .machinery-section {
    flex-direction: column;
  }
  .machinery-video,
  .machinery-content {
    padding: 20px;
  }
}

/* Testimonial page */
.testimonial-section {
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #333;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #667eea;
    border-radius: 2px;
}

.section-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.owl-carousel .owl-stage-outer {
    padding: 20px 0;
}
.owl-carousel .owl-stage {
    display: flex !important;
    align-items: stretch;
}
.owl-carousel .owl-item {
    display: flex;
}



.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    margin: 0 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 6rem;
    color: rgba(102, 126, 234, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom:20px ;
}

.client-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #667eea;
    margin-right: 20px;
    flex-shrink: 0;
    background: #f5f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-weight: bold;
    font-size: 1.5rem;
}

.client-details h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 5px;
}

.client-details span {
    color: #667eea;
    font-weight: 600;
    font-size: 0.95rem;
}

.rating {
    margin-top: 10px;
}

.rating i {
    color: #FFD700;
    font-size: 1.1rem;
}

.owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.owl-nav button {
    background: #f5f7ff !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #ddd !important;
}

.owl-nav button span {
    font-size: 2rem;
    line-height: 1;
    color: #667eea;
}

.owl-nav button:hover {
    background: #667eea !important;
}

.owl-nav button:hover span {
    color: white;
}

/* Remove dot indicators */
.owl-dots {
    display: none !important;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .client-img {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .client-details h4 {
        font-size: 1.1rem;
    }
}


/* Simple Contact Us Section */
.contact-us-simple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    text-align: center;
  }
  
  .contact-content {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .contact-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .contact-content p {
    font-size: 1.15rem;
    color: #dedede;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
 
.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b6b, #ffd700);
    color: white;
    padding: 11px 26px;
    /* Reduced from 12px 28px */
    border: none;
    border-radius: 32px;
    /* Reduced from 35px */
    font-size: 1rem;
    /* Reduced from 0.95rem */
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 18px rgba(255, 107, 107, 0.3);
    /* Slightly reduced shadow */
    position: relative;
    overflow: hidden;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button:hover {
    transform: translateY(-2px) scale(1.04);
    /* Reduced from -3px and scale(1.05) */
    box-shadow: 0 10px 28px rgba(255, 107, 107, 0.4);
    /* Slightly reduced shadow */
}



/*Footer*/

.footer {
    background: #3E8F88;
    color: white;
    padding: 40px 80px;
    position: relative;
    margin:0 auto;
    min-height: 75vh;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    justify-content: space-between;
  }
  
  .footer-section {
    flex: 1 1 220px;
    margin: 20px;
  }
  .about{
    line-height: 1.3;
    font-size: 1rem;
    color: rgb(225, 225, 225);
  }
  .footer-section h4 {
    margin-bottom: 15px;
    font-style: bold;
    font-size: 1.3rem;
    color: #ffffff;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li a {
    color: rgb(225, 225, 225);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
  }
  
 
  .footer-section .logo {
    height: 40px;
    margin-bottom: 10px;
  }
  

  .footer-section ul li a:hover {
    color: #f3ff10;
  }
  
   .footer-contact{
    font-size: 14px;
  }
  .footer-contact a{
    text-decoration:none;
    color: rgb(225, 225, 225);
  }
  .footer-contact a:hover{
    color: #f3ff10;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 18px;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  .footer-bottom p{
    margin-top: 20px;
  }
  .scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 20px;
    display: none;
    transition: all 0.3s ease;
  }
  
  .scroll-top:hover {
    background-color: #0056b3;
  }
  @media screen and (max-width: 768px) {
    .footer {
      padding: 30px 40px;
      min-height: auto;
    }
  
    .footer-container {
      align-items: flex-start;
      padding: 10px;
    }
  
    .footer-section {
      margin: 20px 0;
      width: 100%;
    }
  
    .footer-bottom {
      font-size: 0.9rem;
      padding-top: 10px;
      margin-top: 20px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .footer {
      padding: 20px;
    }
    .about{
      margin-top: 50px;
    }
    .footer-section .logo {
      display: block;
    }
    
  }
  