/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: 0;
    overflow: hidden;
}

/* Carousel */
.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    will-change: opacity;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100vw;
    object-position: center;
}


/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.carousel-button {
    width: 3rem;
    height: 3rem;
    border: none;
    background-color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.carousel-button:hover {
    background-color: white;
    transform: scale(1.05);
}

.carousel-button:active {
    transform: scale(0.95);
}

.carousel-button svg {
    width: 24px;
    height: 24px;
    stroke: var(--text);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        height: 200px;
    }

    .carousel-slide img {
        height: 100%;
        object-fit: cover;
        object-position: center;
    }


    .carousel-controls {
        bottom: 1rem;
        right: 1rem;
    }

    .carousel-button {
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .carousel-slide {
        transition: none;
    }
}

/* Add to styles.css */

.about-section {
    position: relative;
    padding: 6rem 0;
    background-color: #fff;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Watermark */
.watermark {
    position: absolute;
    width: 20rem;
    top: 2rem;
    right: 2rem;
    opacity: 0.7;
}

.watermark img {
    width: 100%;
}

/* Image Side */
.about-image-wrapper {
    position: relative;
    width: 100%;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.experience-box {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background-color: #ff4500;
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.exp-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin: 0.5rem 0;
}

.exp-text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Content Side */
.section-header {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.header-line-about {
    width: 6rem;
    height: 6px;
    border-radius: 20px;
    background-color: #ff4500;
}

.section-title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: #333;
}

.about-heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff4500;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.read-more svg {
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #cc3700;
}

.read-more:hover svg {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .experience-box {
        bottom: 1rem;
        right: 1rem;
        padding: 1.5rem;
    }

    .about-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }

    .watermark {
        display: none;
    }

    .exp-number {
        font-size: 2.5rem;
    }

    .about-heading {
        font-size: 1.75rem;
    }
}

/* Product Family Section Styles */
.product-family {
    background-color: #fff;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.product-family-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    width: 100%;
    height: 100vh;
    margin-bottom: 20px;
}

/* Left Content Styles */
.section-subtitle {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: #333;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.product-content {
    display: flex;
    flex-direction: column;
    justify-content: left;
    width: 100%;
}

.product-text-carousel {
    position: relative;
    min-height: 300px;
}

.product-text {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.product-text,
.image-wrapper {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.product-text.active {
    opacity: 1;
    visibility: visible;
}

.product-text.active,
.image-wrapper.active {
    opacity: 1;
    visibility: visible;
}


.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff4500;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #cc3700;
}

.read-more:hover svg {
    transform: translateX(5px);
}

/* Navigation Buttons */
.carousel-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 5rem;
}

.nav-button {
    width: 3rem;
    height: 3rem;
    border: none;
    background-color: #ff4500;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: #cc3700;
    transform: scale(1.05);
}

/* Right Image Carousel */
.product-image-carousel {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper.active {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper img {
    width: 90%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-family {
        margin-top: 10rem;
    }

    .product-family-container {
        flex-direction: column-reverse;
    }

    .product-content{
        width: 70%;
    }

    .product-image-carousel {
        margin-top: 5rem;
    }

    .product-title {
        font-size: 2rem;
    }

    .image-wrapper img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .product-family {
        height: 100vh;
    }

    .product-family-container {
        gap: 1rem;
    }


    .product-image-carousel {
        height: 100%;
        margin-top: 1rem;
    }

    .carousel-navigation {
        margin-top: 9rem;
    }

    .product-family {
        padding: 4rem 0;
    }

    .product-title {
        font-size: 1.75rem;
    }

    .image-wrapper img {
        width: 100%;
        margin-top: none;
    }
}

/* Customer Section Styles */
.customers-section {
    padding: 10rem 0 10rem 0;
    background-color: #fff;
}

.customers-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.customers-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.logo-wrapper:hover {
    transform: translateY(-5px);
}

.logo-wrapper img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-wrapper:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .customers-logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .customers-section {
        padding: 4rem 0;
    }

    .customers-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .customers-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .customers-logo-grid {
        grid-template-columns: 1fr;
    }
}

/* Highlights Section Styles */
.highlights-section {
    padding: 6rem 0;
    background-image: url("../images/highlight-background.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.highlights-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Gallery Styles */
.highlights-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    border: 1px solid whitesmoke;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.358);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.watermark-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.watermark-logo {
    width: 60%;
    height: auto;
    opacity: 0.7;
    transform: scale(1.2);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Hover Effects */
.gallery-item:hover .gallery-image {
    transform: scale(1.1);
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.gallery-item:hover .watermark-overlay {
    opacity: 1;
}

.gallery-item:hover .watermark-logo {
    opacity: 0.9;
    transform: scale(1);
}

/* Content Styles */
.highlights-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 400;
}

.highlights-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #c4bbbbe0;
    margin-bottom: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .highlights-title {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .highlights-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .highlights-gallery {
        order: 2;
    }

    .highlights-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .highlights-section {
        padding: 4rem 0;
        background: rgba(19, 19, 19, 0.779);
    }

    .highlights-title {
        font-size: 1.75rem;
    }

    .highlights-gallery {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .highlights-gallery {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 5rem 0;
    background-color: #ffffff;
    overflow: hidden;
    height: 90vh;
}

.testimonials-container {
    display: flex;
    gap: 6rem;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Left Side Styles */
.testimonials-header {
    flex: 1;
    position: relative;
}

.title-wrapper {
    position: relative;
}

.quote-circle {
    width: 64px;
    height: 64px;
    background-color: #4169E1;
    border-radius: 50%;
    color: white;
    font-size: 5.5rem;
    font-family: Arial, sans-serif;
    top: -20px;
    left: -20px;
}

.testimonials-title {
    font-size: 2.75rem;
    line-height: 1.2;
    color: #333;
}

.highlight-letter {
    color: #3158d3;
}

.next-line {
    display: block;
    margin-top: 0.5rem;
}

.carousel-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: #4169E1;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background-color: #3158d3;
    transform: translateY(-2px);
}

/* Right Side Styles */
.testimonials-carousel {
    flex: 2;
    position: relative;
}

.testimonial-slides {
    position: relative;
    min-height: 300px;
}

.testimonial-slide {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease;
    visibility: hidden;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
    visibility: visible;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reviewer-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #4169E1;
}

.rating {
    color: #FFD700;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.testimonial-heading {
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.testimonial-text {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: #4169E1;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .testimonials-container {
        gap: 4rem;
        padding: 0 1.5rem;
    }

    .testimonials-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .testimonials-container {
        flex-direction: column;
        gap: 3rem;
    }

    .testimonials-header {
        text-align: center;
    }

    .title-wrapper {
        justify-content: center;
    }

    .carousel-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonial-heading {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .testimonials-container {
        padding: 0 1rem;
    }

    .quote-circle {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .testimonials-title {
        font-size: 1.75rem;
    }

    .testimonial-heading {
        font-size: 1.25rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}


/* Stats Section  ---- */

.stats-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.animated-blob {
    position: absolute;
    background: linear-gradient(120deg, rgba(255, 77, 0, 0.05), rgba(255, 77, 0, 0.1));
    border-radius: 50%;
    animation: blob-animation 15s infinite;
    opacity: 0.5;
}

.animated-blob:nth-child(1) {
    width: 400px;
    height: 400px;
    left: -200px;
    top: -200px;
    animation-delay: 0s;
}

.animated-blob:nth-child(2) {
    width: 300px;
    height: 300px;
    right: -150px;
    top: 50%;
    animation-delay: -5s;
}

.animated-blob:nth-child(3) {
    width: 200px;
    height: 200px;
    left: 50%;
    bottom: -100px;
    animation-delay: -10s;
}

@keyframes blob-animation {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, 50px) scale(1.1);
    }

    50% {
        transform: translate(0, 100px) scale(0.9);
    }

    75% {
        transform: translate(-50px, 50px) scale(1.05);
    }
}

.stats-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-line {
    width: 80px;
    height: 4px;
    background: #FF4D00;
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin: 0 0 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-item {
    position: relative;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 77, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #FF4D00;
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FF4D00;
    margin: 0;
    line-height: 1.2;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    margin: 10px 0 0;
    font-weight: 500;
}

.stat-progress {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.progress-ring-circle {
    stroke: rgba(255, 77, 0, 0.1);
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 0.3s;
}

@media (max-width: 1200px) {
    .stats-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .stat-item {
        padding: 25px;
    }

    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
    }
}




/* Corporate Video Section Styles */
.corporate-video-section {
    padding: 6rem 0;
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

/* Blur Animation */
.blur-animation {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.2;
    animation: floatAnimation 20s infinite ease-in-out;
}

.blur-1 {
    width: 400px;
    height: 400px;
    background: #ff4500;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blur-2 {
    width: 300px;
    height: 300px;
    background: #4169e1;
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.blur-3 {
    width: 250px;
    height: 250px;
    background: #ff4500;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(100px, 50px) rotate(90deg);
    }

    50% {
        transform: translate(50px, 100px) rotate(180deg);
    }

    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
}

/* Header Styles */
.corporate-video-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.co-header-line {
    width: 100%;
    height: 4px;
    background-color: #ff4500;
    border-radius: 20px;
}

.header-right p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

/* Video Container Styles */
.video-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.custom-video-player {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.custom-video-player video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.3);
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: #ff4500;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: pulseAnimation 2s infinite;
}

.play-button svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
    margin-left: 5px;
}

.play-button:hover {
    transform: scale(1.1);
    background: #cc3700;
}

@keyframes pulseAnimation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 69, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 69, 0, 0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .corporate-video-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 768px) {
    .corporate-video-section {
        padding: 4rem 0;
    }

    .header-right p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .play-button {
        width: 50px;
        height: 50px;
    }

    .play-button svg {
        width: 20px;
        height: 20px;
    }
}

/* Video Container Controls */
.custom-video-player {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #000;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.custom-video-player:hover .video-controls {
    opacity: 1;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    margin-bottom: 10px;
}

.progress {
    width: 0;
    height: 100%;
    background: #ff4500;
    border-radius: 2px;
    transition: width 0.1s linear;
}

.controls-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.control-button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.control-button svg {
    width: 24px;
    height: 24px;
}

.control-button:hover {
    transform: scale(1.1);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

#volumeSlider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
}

#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: #ff4500;
    border-radius: 50%;
    cursor: pointer;
}

.custom-video-player.playing .video-overlay {
    display: none;
}

/* Hide native video controls */
video::-webkit-media-controls {
    display: none !important;
}

@media (max-width: 768px) {
    .volume-control {
        display: none;
    }

    .controls-buttons {
        gap: 10px;
    }

    .control-button svg {
        width: 20px;
        height: 20px;
    }
}

/* SOP Section Styles */
.sop-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom left, #4169e110, #fff);
    overflow: hidden;
    position: relative;
}


.sop-container {
    max-width: 1400px;
    margin: 9% auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}

/* Left Side with Circles */
.sop-visualization {
    width: 50%;
}

.sop-visualization img {
    width: 100%;
}


/* Right Side Content */

.sop-content {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: start;
    width: 50%;
}

.sop-content h2 {
    color: var(--text);
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.sop-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .sop-container {
        flex-direction: column;
        text-align: left;
    }

    .sop-visualization {
        width: 100%;
    }

    .sop-content {
        width: 100%;
    }
}

