.site-content{
    max-width:100% !important;
    width:100% !important;
    padding:0 !important;
}

.content-area{
    width:100% !important;
    max-width:100% !important;
}

.site-main{
    width:100% !important;
    max-width:100% !important;
}

.container{
    width:100% !important;
    max-width:100% !important;
    padding:0 !important;
}


/* ==========================
   HERO SECTION
========================== */

.hero{
    position:relative;
    height:100vh;
    min-height:700px;
    overflow:hidden;
}

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.60);
    z-index:1;
}

.hero-content{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    z-index:2;
    max-width:800px;
    color:#fff;
}

.hero-tagline{
    display:inline-block;
    color:#e53935;
    font-size:18px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.hero-content h1{
    font-size:64px;
    line-height:1.05;
    font-weight:800;
    text-transform:uppercase;
    margin-bottom:25px;
}

.hero-red{
    color:#e53935;
    display:block;
}

.hero-white{
    color:#fff;
    display:block;
}

.hero-content p{
    font-size:22px;
    line-height:1.6;
    color:rgba(255,255,255,0.9);
    margin-bottom:25px;
}

.hero-certifications{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:35px;
}

.hero-certifications span{
    font-size:15px;
    font-weight:600;
    color:#fff;
    padding-right:15px;
    border-right:1px solid rgba(255,255,255,.4);
}

.hero-certifications span:last-child{
    border-right:none;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 36px;
    background:#d32f2f;
    color:#fff !important;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s ease;
}

.btn-primary:hover{
    background:#b71c1c;
    transform:translateY(-3px);
}

.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 36px;
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s ease;
}

.btn-outline:hover{
    background:#fff;
    color:#071b38;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:1200px){

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

}

@media(max-width:992px){

    .hero-content{
        left:7%;
        right:7%;
        max-width:100%;
    }

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

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

}

@media(max-width:768px){

    .hero{
        min-height:650px;
    }

    .hero-content h1{
        font-size:38px;
        line-height:1.15;
    }

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

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
    }

    .hero-certifications{
        gap:10px;
    }

    .hero-certifications span{
        border:none;
        padding-right:0;
        font-size:14px;
    }

}

@media(max-width:480px){

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

    .hero-tagline{
        font-size:14px;
    }

}
/* ==========================
   PRODUCT CATEGORIES
========================== */

.product-categories{
    padding:100px 8%;
    background:#f7f8fa;
}

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

.section-title span{
    color:#d32f2f;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.section-title h2{
    font-size:42px;
    margin-top:15px;
    margin-bottom:15px;
    color:#0f172a;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#64748b;
    line-height:1.8;
}

/* ==========================
   PRODUCT LINKS
========================== */

.product-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:50px;
}

.product-links a{
    text-decoration:none;
    background:#ffffff;
    color:#0f172a;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    border:1px solid #e2e8f0;
    transition:all .3s ease;
}

.product-links a:hover{
    background:#d32f2f;
    color:#ffffff;
    border-color:#d32f2f;
    transform:translateY(-2px);
}

/* ==========================
   PRODUCT GRID
========================== */

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

.product-card{
    background:#ffffff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:all .4s ease;
    border:1px solid rgba(0,0,0,.05);
}

.product-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.product-image{
    height:320px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.product-content{
    padding:25px;
}

.product-content h3{
    font-size:22px;
    margin-bottom:15px;
    color:#0f172a;
}

.product-content p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:20px;
}

.product-btn{
    text-decoration:none;
    color:#d32f2f;
    font-weight:600;
    transition:0.3s;
}

.product-btn:hover{
    color:#b71c1c;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:1200px){

    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .product-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:32px;
    }

    .product-links{
        gap:10px;
    }

    .product-links a{
        font-size:13px;
        padding:8px 14px;
    }

}
/* ==========================
   FEATURED PRODUCTS
========================== */

.featured-products{
    padding:100px 8%;
    position:relative;
    background:url("../images/download.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
    overflow:hidden;
}

/* Dark Overlay */
.featured-products::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.80);
    z-index:1;
}

/* Keep Content Above Overlay */
.featured-products .section-heading,
.featured-products .featured-grid{
    position:relative;
    z-index:2;
}

/* Section Heading */
.featured-products .section-heading{
    text-align:center;
    margin-bottom:60px;
}

.featured-products .section-heading span{
    color:#d32f2f;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.featured-products .section-heading h2{
    color:#fff;
    font-size:42px;
    margin:15px 0;
    font-weight:700;
}

.featured-products .section-heading p{
    color:#e2e8f0;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* Product Grid */
.featured-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    max-width:1200px;
    margin:auto;
}

/* Product Card */
.featured-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:all 0.4s ease;
    display:flex;
    flex-direction:column;
    height:100%;
    border:1px solid rgba(255,255,255,0.1);
}

.featured-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.25);
}

/* Product Image */
.featured-image{
    height:350px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:25px;
    background:#fff;
}

.featured-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:0.6s ease;
}

.featured-card:hover .featured-image img{
    transform:scale(1.08);
}

/* Content */
.featured-content{
    padding:30px;
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

/* Tag */
.featured-tag{
    display:inline-block;
    background:#d32f2f;
    color:#fff;
    padding:7px 16px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    margin-bottom:18px;
    text-transform:uppercase;
}

/* Title */
.featured-content h3{
    font-size:34px;
    line-height:1.3;
    color:#0f172a;
    margin-bottom:15px;
    font-weight:700;
}

/* Description */
.featured-content p{
    color:#64748b;
    line-height:1.8;
    font-size:17px;
    margin-bottom:25px;
    flex-grow:1;
}

/* Button */
.featured-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#d32f2f;
    font-weight:700;
    transition:0.3s ease;
}

.featured-btn:hover{
    color:#071b38;
    transform:translateX(5px);
}

/* ==========================
   TABLET
========================== */

@media(max-width:992px){

    .featured-grid{
        grid-template-columns:1fr;
        max-width:700px;
    }

    .featured-products{
        background-attachment:scroll;
    }

    .featured-content h3{
        font-size:30px;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .featured-products{
        padding:80px 6%;
    }

    .featured-products .section-heading h2{
        font-size:32px;
    }

    .featured-image{
        height:260px;
    }

    .featured-content{
        padding:25px;
    }

    .featured-content h3{
        font-size:26px;
    }

    .featured-content p{
        font-size:15px;
    }
}
/* ==========================
   WHY CHOOSE COT
========================== */

.why-choose{
    padding:100px 8%;
    background:#ffffff;
}

.why-choose .section-heading{
    text-align:center;
    margin-bottom:60px;
}

.why-choose .section-heading span{
    color:#d32f2f;
    font-weight:700;
    letter-spacing:2px;
}

.why-choose .section-heading h2{
    font-size:42px;
    margin:15px 0;
    color:#0f172a;
}

.why-choose .section-heading p{
    color:#64748b;
    max-width:700px;
    margin:auto;
}

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

.why-card{
    background:#fff;
    padding:20px;
    min-height:200px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    
}
.why-card{
    opacity:0;
    transform:translateY(40px);
    animation:fadeUp .8s ease forwards;
}

.why-card:nth-child(1){animation-delay:.1s;}
.why-card:nth-child(2){animation-delay:.2s;}
.why-card:nth-child(3){animation-delay:.3s;}
.why-card:nth-child(4){animation-delay:.4s;}
.why-card:nth-child(5){animation-delay:.5s;}
.why-card:nth-child(6){animation-delay:.6s;}

.why-icon{
    font-size:42px;
    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:15px;
    color:#0f172a;
}

.why-card p{
    color:#64748b;
    line-height:1.8;
}
.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}
/* ==========================
   TIMELINE SECTION
========================== */

.timeline-section{

    padding:120px 8%;

    background:
    linear-gradient(
        rgba(255,255,255,.65),
        rgba(255,255,255,.65)
    ),
    url('../images/factory.png');

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    position:relative;

}

/* Section Heading */

.section-heading{

    text-align:center;

    margin-bottom:60px;

}

.section-heading span{

    color:#e53935;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-heading h2{

    color:#0f172a;

    font-size:42px;

    margin:15px 0;

}

.section-heading p{

    color:#0f172a;

    max-width:700px;

    margin:auto;

}

/* Timeline */

.timeline{

    position:relative;

    max-width:1100px;

    margin:auto;

}

.timeline::before{

    content:'';

    position:absolute;

    width:4px;

    background:#e53935;

    top:0;

    bottom:0;

    left:50%;

    transform:translateX(-50%);

    box-shadow:
    0 0 20px rgba(229,57,53,.35);

}

/* Timeline Items */

.timeline-item{

    position:relative;

    width:50%;

    padding:10px 30px;

}

.timeline-item.left{

    left:0;

}

.timeline-item.right{

    left:50%;

}

/* Timeline Dots */

.timeline-item::before{

    content:'';

    position:absolute;

    width:18px;

    height:18px;

    background:#e53935;

    border:3px solid #fff;

    border-radius:50%;

    top:25px;

    z-index:10;

    box-shadow:
    0 0 15px rgba(229,57,53,.35);

}

.timeline-item.left::before{

    right:-9px;

}

.timeline-item.right::before{

    left:-9px;

}

/* Compact Cards */

.timeline-content{

    position:relative;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(10px);

    padding:12px 16px;

    border-radius:12px;

    border-left:4px solid #e53935;

    box-shadow:
    0 8px 25px rgba(0,0,0,.08);

    transition:.3s ease;

}

.timeline-content:hover{

    transform:translateY(-5px);

    box-shadow:
    0 15px 35px rgba(0,0,0,.15);

}

/* Arrow */

.timeline-content::after{

    content:'';

    position:absolute;

    top:22px;

    width:12px;

    height:12px;

    background:#fff;

    transform:rotate(45deg);

}

.timeline-item.left .timeline-content::after{

    right:-6px;

}

.timeline-item.right .timeline-content::after{

    left:-6px;

}

/* Year Badge */

.year{

    display:inline-block;

    background:#e53935;

    color:#fff;

    padding:4px 10px;

    border-radius:20px;

    font-size:16px;

    font-weight:700;

    margin-bottom:6px;

}

/* Title */

.timeline-content h3{

    font-size:14px;

    margin-bottom:4px;

    color:#071b38;

    font-weight:700;

}

/* Description */

.timeline-content p{

    font-size:13px;

    line-height:1.4;

    color:#071b38;

}

/* Mobile */

@media(max-width:768px){

    .timeline::before{

        left:20px;

    }

    .timeline-item{

        width:100%;

        left:0 !important;

        padding-left:55px;

        padding-right:0;

    }

    .timeline-item::before{

        left:11px !important;

    }

    .timeline-content::after{

        left:-6px !important;
        width:14px;
        height:14px;
        top:20px;

        right:auto;

    }

}
/* Timeline Animation */

.timeline-item.left{

    animation:slideLeft 1s ease forwards;

}

.timeline-item.right{

    animation:slideRight 1s ease forwards;

}

/* Delay */

.timeline-item:nth-child(1){

    animation-delay:.2s;

}

.timeline-item:nth-child(2){

    animation-delay:.4s;

}

.timeline-item:nth-child(3){

    animation-delay:.6s;

}

.timeline-item:nth-child(4){

    animation-delay:.8s;

}

.timeline-item:nth-child(5){

    animation-delay:1s;

}

.timeline-item:nth-child(6){

    animation-delay:1.2s;

}

.timeline-item:nth-child(7){

    animation-delay:1.4s;

}

.timeline-item:nth-child(8){

    animation-delay:1.6s;

}

.timeline-item{

    opacity:0;

}

/* Left */

@keyframes slideLeft{

    from{

        opacity:0;

        transform:translateX(-80px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

/* Right */

@keyframes slideRight{

    from{

        opacity:0;

        transform:translateX(80px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}
/* ==========================
   TIMELINE SCROLL ANIMATION
========================== */

.timeline-item{

    opacity:0;

    transition:
    opacity .8s ease,
    transform .8s ease;

}

.timeline-item.left{

    transform:translateX(-80px);

}

.timeline-item.right{

    transform:translateX(80px);

}

.timeline-item.show{

    opacity:1;

    transform:translateX(0);

}
/* ==========================
   CERTIFICATIONS
========================== */

.certifications{

    padding:100px 8%;

    background:#f8fafc;

}

.certification-slider{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin-top:50px;

}

/* Certificate Card */

.certificate-card{

    position:relative;

    height:200px;

    background:#ffffff;

    border-radius:18px;

    overflow:hidden;

    cursor:pointer;

    transition:.4s ease;

    box-shadow:
    0 8px 25px rgba(0,0,0,.08);

}

.certificate-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 18px 40px rgba(0,0,0,.15);

}

/* Certificate Image */

.certificate-card img{

    width:100%;

    height:100%;

    object-fit:contain;

    padding:10px;

    transition:.4s ease;

}

.certificate-card:hover img{

    transform:scale(1.02);

}

/* Dark Overlay */

.certificate-card::before{

    content:'';

    position:absolute;

    inset:0;

    background:
    rgba(7,21,43,.55);

    opacity:0;

    transition:.3s ease;

}

.certificate-card:hover::before{

    opacity:1;

}

/* Click To View */

.certificate-card::after{

    content:'View Certificate';

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    background:#ffffff;

    color:#07152b;

    padding:10px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    opacity:0;

    transition:.3s ease;

}

.certificate-card:hover::after{

    opacity:1;

}

/* ==========================
   CERTIFICATE POPUP
========================== */

.certificate-popup{

    display:none;

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.92);

    z-index:99999;

    justify-content:center;
    align-items:center;

    padding:20px;

}

.certificate-popup img{

    max-width:95%;

    max-height:90vh;

    object-fit:contain;

    background:#fff;

    padding:10px;

    border-radius:12px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.4);

}

.close-popup{

    position:absolute;

    top:20px;

    right:30px;

    color:#fff;

    font-size:45px;

    font-weight:bold;

    cursor:pointer;

}
/* Animations */

@keyframes fadeIn{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }

}

@keyframes zoomIn{

    from{

        opacity:0;

        transform:scale(.85);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

/* Tablet */

@media(max-width:992px){

    .certification-slider{

        grid-template-columns:repeat(2,1fr);

    }

}

/* Mobile */

@media(max-width:768px){

    .certification-slider{

        grid-template-columns:1fr;

    }

    .certificate-card{

        height:220px;

    }

}


/* /* ==========================
   HEADER
========================== */

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    transition:.4s;

    padding:20px 0;

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    width:90%;

    margin:auto;

}

.logo img{

    height:60px;

}

nav ul{

    display:flex;

    gap:35px;

    list-style:none;

}

nav ul li a{

    text-decoration:none;

    color:white;

    font-weight:500;

}

.nav-btn{

    background:#d32f2f;

    color:white;

    text-decoration:none;

    padding:12px 25px;

    border-radius:40px;

}

/* Sticky */

.header.sticky{

    background:white;

    box-shadow:0 5px 25px rgba(0,0,0,.1);

}

.header.sticky nav ul li a{

    color:#071b38;

}

/* ==========================
   ABOUT US SECTION
========================== */

.about-section{
    padding:100px 8%;
    background:#f8f9fb;
    position:relative;
    overflow:hidden;
}

/* World Map Background */
.about-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:url('../images/products/map.png');
    background-size:65%;
    opacity:0.15;
    z-index:0;
}

/* Red Glow Effect */
.about-section::after{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -150px;
    top: -100px;
    background: radial-gradient(
        circle,
        rgba(220,38,38,0.08),
        transparent 70%
    );
    z-index:1;
}

/* Keep Content Above Background */
.about-container{
    position:relative;
    z-index:2;
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:60px;
    align-items:start;
}

/* ==========================
   LEFT CONTENT
========================== */

.section-tag{
    display:inline-block;
    color:#d32f2f;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:10px;
    text-transform:uppercase;
    animation:fadeUp 0.8s ease forwards;
}

.about-content h2{
    font-size:48px;
    line-height:1.2;
    color:#0f172a;
    margin-bottom:25px;
    animation:fadeUp 1s ease forwards;
}

.about-content p{
    color:#64748b;
    font-size:17px;
    line-height:1.8;
    margin-bottom:18px;
    animation:fadeUp 1.2s ease forwards;
}

/* ==========================
   FEATURES
========================== */

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin:35px 0;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
    color:#1e293b;
    transition:.3s;
    animation:fadeUp 1.4s ease forwards;
}

.feature-item i{
    color:#d32f2f;
    font-size:18px;
}

.feature-item:hover{
    transform:translateX(8px);
}
.featured-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    max-width:1000px; /* was 1200px */
    margin:auto;
}
.featured-image{
    height:260px; /* was 350px */
    padding:20px;
}
.featured-content{
    padding:25px;
}
/* ==========================
   BUTTON
========================== */

.about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 32px;
    background:#d32f2f;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    border-radius:50px;
    transition:.4s;
    box-shadow:0 10px 25px rgba(211,47,47,.25);
}

.about-btn:hover{
    background:#b71c1c;
    transform:translateY(-4px);
}

/* ==========================
   RIGHT SIDE
========================== */

.about-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* ==========================
   INFO CARDS
========================== */
.info-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:25px;
    padding:16px 0;
    border-bottom:1px solid #edf1f5;
}

.info-row:last-child{
    border-bottom:none;
}

.info-row span{
    width:180px;
    min-width:180px;
    color:#64748b;
    font-weight:500;
}

.info-row strong{
    flex:1;
    text-align:right;
    color:#0f172a;
    font-weight:700;
    line-height:1.5;
}

/* ==========================
   SNAPSHOT ROWS
========================== */

.info-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
    border-bottom:1px solid #edf1f5;
}

.info-row:last-child{
    border-bottom:none;
}

.info-row span{
    color:#64748b;
}

.info-row strong{
    color:#0f172a;
}

/* ==========================
   PRODUCT LIST
========================== */

.info-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.info-card ul li{
    padding:12px 0;
    color:#334155;
    font-weight:500;
    border-bottom:1px solid #edf1f5;
    transition:.3s;
}

.info-card ul li:last-child{
    border-bottom:none;
}

.info-card ul li::before{
    content:"✓";
    color:#d32f2f;
    margin-right:10px;
    font-weight:700;
}

.info-card ul li:hover{
    padding-left:10px;
    color:#d32f2f;
}

/* ==========================
   ANIMATIONS
========================== */

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

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

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

    .about-container{
        grid-template-columns:1fr;
        gap:40px;
    }

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

    .about-features{
        grid-template-columns:1fr;
    }

    .about-section::before{
        background-size:90%;
    }
}

@media(max-width:768px){

    .about-section{
        padding:90px 6%;
    }

    .about-content h2{
        font-size:32px;
    }

    .info-card{
        padding:40px;
    }

    .info-row{
        flex-direction:column;
        align-items:flex-start;
        gap:5px;
    }
}
/* ==========================
   VISION & MISSION
========================== */

.vision-mission{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin:50px 0;
}

.vm-box{
    background:#ffffff;
    padding:40px 35px;
    border-radius:20px;
    text-align:center;
    position:relative;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s ease;
    border:1px solid rgba(0,0,0,.05);
}

.vm-box::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#020101;
}

.vm-box:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.vm-box i{
    font-size:48px;
    color:#0a0808;
    margin-bottom:20px;
}

.vm-box span{
    display:block;
    color:#070404;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:12px;
}

.vm-box h3{
    font-size:28px;
    font-weight:700;
    color:#071b38;
    margin-bottom:15px;
}

.vm-box p{
    font-size:16px;
    line-height:1.9;
    color:#64748b;
    margin:0;
}

/* Vision Card */

.vision-box{
    background:linear-gradient(
        135deg,
        rgba(211,47,47,.03),
        #ffffff
    );
}

/* Mission Card */

.mission-box{
    background:linear-gradient(
        135deg,
        rgba(7,27,56,.03),
        #ffffff
    );
}

/* Animation */

.vm-box{
    opacity:0;
    transform:translateY(40px);
    animation:vmFadeUp .8s ease forwards;
}

.vision-box{
    animation-delay:.2s;
}

.mission-box{
    animation-delay:.5s;
}

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

/* Tablet */

@media(max-width:991px){

    .vision-mission{
        grid-template-columns:1fr;
    }

}

/* Mobile */

@media(max-width:768px){

    .vm-box{
        padding:30px 25px;
    }

    .vm-box i{
        font-size:40px;
    }

    .vm-box h3{
        font-size:24px;
    }

    .vm-box p{
        font-size:15px;
    }

}
/* ==========================
   FOOTER
========================== */

.footer{
    background:#000;
    color:#fff;
}

.footer-top{
    max-width:1400px;
    margin:auto;
    padding:70px 8%;
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-box{
    padding-right:30px;
}

.footer-box h3{
    color:#d32f2f;
    font-size:22px;
    margin-bottom:20px;
}

.footer-box h4{
    margin-bottom:15px;
    font-size:18px;
    color:#fff;
}

.footer-box p{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:10px;
}

.footer-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

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

.footer-box ul li a{
    color:#cfcfcf;
    text-decoration:none;
    transition:0.3s;
}

.footer-box ul li a:hover{
    color:#d32f2f;
    padding-left:5px;
}

.footer-sub-box{
    margin-bottom:35px;
}

.footer-sub-box:last-child{
    margin-bottom:0;
}

/* Social Icons */

.footer-social{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.footer-social a{
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,0.2);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.footer-social a:hover{
    background:#d32f2f;
    border-color:#d32f2f;
    transform:translateY(-3px);
}

/* Bottom */

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

.footer-links{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin-bottom:15px;
}

.footer-links a{
    color:#cfcfcf;
    text-decoration:none;
}

.footer-links a:hover{
    color:#d32f2f;
}

.footer-bottom p{
    color:#999;
    margin:0;
}

/* Mobile */

@media(max-width:991px){

    .footer-top{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-box{
        padding-right:0;
    }

}
.floating-social{
    position:fixed;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:10px;
    z-index:9999;
}

.floating-social a{
    width:42px;
    height:42px;
    background:#071b38;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:18px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
    transition:.3s;
}

.floating-social a:hover{
    background:#d32f2f;
    transform:translateX(-4px);
}

.supplier-logo{
    width:140px;
    height:auto;
    margin-top:10px;
    display:block;
    border-radius:4px;
    background:#fff;
    padding:5px;
}
/* Links */
.contact-link{
    display:flex;
    align-items:center;
    gap:10px;
    color:inherit;
    text-decoration:none;
}
/* WhatsApp Contact Link */

.whatsapp-link{
    display:flex;
    align-items:center;
    gap:10px;
    color:inherit;
    text-decoration:none;
    transition:0.3s ease;
}

.whatsapp-link i{
    font-size:20px;
    color:#25D366;
}

.whatsapp-link:hover{
    color:#25D366;
}

.whatsapp-link:hover i{
    transform:scale(1.1);
}
.website-link{
    color:inherit;
    text-decoration:none;
    transition:0.3s ease;
}

.website-link:hover{
    color:#d32f2f;
}
.footer-address{
    color:inherit;
    text-decoration:none;
    display:inline-block;
    transition:0.3s ease;
}

.footer-address:hover{
    color:#d32f2f;
}
.phone-link{
    display:flex;
    align-items:center;
    gap:10px;
    color:inherit;
    text-decoration:none;
    transition:0.3s ease;
}

.phone-link:hover{
    color:#d32f2f;
}
.phone-link i{
    font-size:20px;
    color:#071b38;
}
.phone-link:hover i{
    transform:scale(1.1);
}