/* ===========================
   GENERAL
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Outfit',sans-serif;
    color:#222;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

/* ===========================
   TOP BAR
=========================== */

.top-bar{
    background:#0b2f61;
    color:#fff;
    font-size:20px;
    padding:10px 0;
}

/* ===========================
   NAVBAR
=========================== */

.navbar{
    padding:20px 0;
}

.nav-link{
    font-weight:700;
    margin-left:30px;
    color:#222 !important;
    transition:.3s;
}

.nav-link:hover{
    color:#0d6efd !important;
}

/* =========================================
   HERO SECTION
   ========================================= */

.hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(circle at 88% 20%,
            rgba(13, 110, 253, 0.08) 0,
            transparent 180px),
        linear-gradient(135deg,
            #f5f9ff 0%,
            #ffffff 52%,
            #eaf3ff 100%);
}

/* Decorative large circle */
.hero::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    border: 2px solid rgba(13, 110, 253, 0.08);
    border-radius: 50%;

    right: -190px;
    top: -150px;

    pointer-events: none;
}

/* Decorative small circle */
.hero::after {
    content: "";
    position: absolute;

    width: 190px;
    height: 190px;

    border: 2px solid rgba(22, 61, 116, 0.07);
    border-radius: 50%;

    left: -90px;
    bottom: -70px;

    pointer-events: none;
}

/* Keep content above decoration */
.hero .container {
    position: relative;
    z-index: 2;
}


/* =========================================
   HERO TEXT
   ========================================= */

.hero-text {
    position: relative;
}

.hero-tag {
    display: inline-block;

    color: #0d6efd;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;

    margin-bottom: 15px;
}

.hero h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;

    color: #163d74;

    margin-bottom: 25px;
}

.hero h1 span {
    color: #0d6efd;
}

.hero p {
    color: #5f6b7a;
    font-size: 18px;
    line-height: 1.8;

    max-width: 600px;
    margin-bottom: 30px;
}


/* =========================================
   HERO BUTTONS
   ========================================= */

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    margin-top: 0;
    padding: 13px 28px;
    border-radius: 10px;

    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.20);
}


/* =========================================
   HERO IMAGE
   ========================================= */

.hero-image-box {
    position: relative;
}

/* Decorative ring behind image */
.hero-image-box::before {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    border: 1px solid rgba(13, 110, 253, 0.10);
    border-radius: 50%;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    z-index: 0;
}

.hero-img {
    position: relative;
    z-index: 2;

    width: 100%;

    border-radius: 24px;

    border: 8px solid #ffffff;

    box-shadow:
        0 25px 60px rgba(22, 61, 116, 0.18),
        0 5px 20px rgba(0, 0, 0, 0.08);

    transition: all 0.45s ease;
}

.hero-img:hover {
    transform: translateY(-8px) scale(1.015);

    box-shadow:
        0 30px 70px rgba(22, 61, 116, 0.22);
}


/* =========================================
   HERO RESPONSIVE
   ========================================= */

@media (max-width: 992px) {

    .hero {
        padding: 80px 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-img {
        margin-top: 25px;
    }
}


@media (max-width: 576px) {

    .hero {
        padding: 65px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero::before {
        width: 260px;
        height: 260px;
    }

    .hero-image-box::before {
        width: 250px;
        height: 250px;
    }

    .hero-img {
        border-width: 5px;
        border-radius: 18px;
    }
}
/* ===========================
   STATS
=========================== */

.stats{
    background:#0b2f61;
    padding:70px 0;
}

.stat-box{
    background:#fff;
    border-radius:18px;
    padding:35px 20px;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-8px);
}

.stat-box h2{
    color:#0d6efd;
    font-size:48px;
    font-weight:700;
}

.stat-box p{
    margin:0;
    font-size:18px;
    color:#555;
}
/*=========================
ABOUT
==========================*/

.about{
    padding:90px 0;
    background:#fff;
}

.about-img{
    width:90%;
    max-width:520px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.about h2{
    font-size:42px;
    font-weight:700;
}

.about p{
    color:#666;
    line-height:1.8;
}

.about-list{
    list-style:none;
    padding:0;
    margin-top:20px;
}

.about-list li{
    margin-bottom:12px;
    font-size:17px;
}
.about{
    padding:80px 0;
}

.about-container{
    width:90%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.about-image{
    width:50%;
}

.about-image img{
    width:100%;
    border-radius:20px;
}

.about-text{
    width:50%;
}

.about-text h5{
    color:#0d6efd;
    margin-bottom:10px;
}

.about-text h2{
    font-size:48px;
    margin-bottom:20px;
}

.about-text p{
    color:#555;
    line-height:1.8;
    margin-bottom:15px;
}

.about-text ul{
    list-style:none;
    padding:0;
}

.about-text li{
    margin-bottom:12px;
}

.btn{
    display:inline-block;
    margin-top:20px;
    background:#0d6efd;
    color:white;
    padding:14px 30px;
    text-decoration:none;
    border-radius:8px;
}
/*=========================
WHY CHOOSE US
==========================*/

.why{
    padding:90px 0;
    background:#f8fbff;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h5{
    color:#0d6efd;
    font-weight:600;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-card i{
    font-size:45px;
    color:#0d6efd;
    margin-bottom:20px;
}

.why-card h3{
    font-size:22px;
    margin-bottom:15px;
}

.why-card p{
    color:#666;
    line-height:1.7;
}

@media(max-width:992px){

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.why-grid{
    grid-template-columns:1fr;
}

}
/*=========================
PRODUCTS
==========================*/

.products{
    padding:90px 0;
    background:#fff;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.product-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    text-align:centerfill;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    padding-bottom:25px;
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-card img{
    width:100%;
    height:250px;
    object-fit:fill;
}

.product-card h3{
    margin-top:20px;
    font-size:22px;
}

.product-card h4{
    color:#0d6efd;
    margin:15px 0;
    font-size:20px;
    font-weight:700;
}

@media(max-width:992px){

.product-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.product-grid{
grid-template-columns:1fr;
}

}
/*=========================
CATEGORIES
==========================*/

.categories{
    padding:90px 0;
    background:#f8fbff;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.category-card{
    background:#fff;
    border-radius:15px;
    padding:40px 20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.category-card:hover{
    transform:translateY(-8px);
}

.category-card i{
    font-size:50px;
    color:#0d6efd;
    margin-bottom:20px;
}

.category-card h3{
    font-size:22px;
}

@media(max-width:992px){

.category-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.category-grid{
grid-template-columns:1fr;
}

}
/*=========================
MANUFACTURING PROCESS
==========================*/

.process{
    padding:90px 0;
    background:#ffffff;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.process-card{
    background:#f8fbff;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.process-card:hover{
    transform:translateY(-8px);
}

.process-card i{
    font-size:45px;
    color:#0d6efd;
    margin-bottom:20px;
}

.process-card h3{
    margin-bottom:15px;
}

.process-card p{
    color:#666;
    line-height:1.7;
}

@media(max-width:992px){

.process-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.process-grid{
grid-template-columns:1fr;
}

}
/*=========================
QUALITY CERTIFICATES
==========================*/

.certificates{
    padding:90px 0;
    background:#f8fbff;
}

.certificate-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.certificate-card{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.certificate-card:hover{
    transform:translateY(-10px);
}

.certificate-card i{
    font-size:50px;
    color:#0d6efd;
    margin-bottom:20px;
}

.certificate-card h3{
    margin-bottom:15px;
}

.certificate-card p{
    color:#666;
}

@media(max-width:992px){

.certificate-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.certificate-grid{
grid-template-columns:1fr;
}

}
/*=========================
EXPORT COUNTRIES
==========================*/

.export{
    padding:90px 0;
    background:#fff;
}

.export-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.export-image{
    flex:1;
}

.export-image img{
    width:100%;
    max-width:550px;
}

.export-list{
    flex:1;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.country{
    background:#f8fbff;
    padding:18px;
    border-radius:10px;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

@media(max-width:992px){

.export-content{
    flex-direction:column;
}

.export-list{
    grid-template-columns:1fr;
}

}
/*=========================
CLIENT REVIEWS
==========================*/

.reviews{
    padding:90px 0;
    background:#f8fbff;
}

.review-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.review-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.review-card:hover{
    transform:translateY(-8px);
}

.stars{
    color:#ffc107;
    font-size:22px;
    margin-bottom:15px;
}

.review-card p{
    color:#666;
    line-height:1.8;
    font-style:italic;
}

.review-card h4{
    margin-top:20px;
    margin-bottom:5px;
}

.review-card span{
    color:#0d6efd;
    font-weight:600;
}

@media(max-width:992px){

.review-grid{
    grid-template-columns:1fr;
}

}
/* =========================
   GALLERY
========================= */

.gallery {
    padding: 80px 0;
    background: #ffffff;
}

.gallery-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Gallery Card */
.gallery-grid > div {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
}

/* Gallery Image */
.gallery-grid img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

/* Hover */
.gallery-grid > div:hover img {
    transform: scale(1.04);
}


/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .gallery-grid img {
        height: 250px;
    }

}
/*=========================
CONTACT
==========================*/

.contact{
    padding:90px 0;
    background:#f8fbff;
}

.contact-info{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    height:100%;
}

.contact-info h4{
    margin-top:20px;
    color:#163d74;
}

.contact-info i{
    color:#0d6efd;
    margin-right:10px;
}

.contact form{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact .form-control{
    border-radius:10px;
    padding:12px;
}

.contact button{
    padding:12px 30px;
    border-radius:10px;
}
/*=========================
FOOTER
==========================*/

.footer{
    background:#163d74;
    color:#fff;
    padding:70px 0 20px;
}

.footer h4{
    margin-bottom:20px;
    font-weight:600;
}

.footer p{
    color:#ddd;
    line-height:1.8;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer ul li{
    margin-bottom:12px;
}

.footer ul li a{
    color:#ddd;
    text-decoration:none;
}

.footer ul li a:hover{
    color:#fff;
}

.social-icons{
    margin-top:20px;
}

.social-icons a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    background:#0d6efd;
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:hover{
    background:#fff;
    color:#163d74;
}

.footer hr{
    border-color:rgba(255,255,255,.2);
    margin:40px 0 20px;
}
/*=========================
WHATSAPP
==========================*/

.whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:60px;

height:60px;

background:#25D366;

color:#fff;

font-size:32px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

text-decoration:none;

box-shadow:0 10px 25px rgba(0,0,0,.25);

z-index:9999;

transition:.3s;

}

.whatsapp:hover{

transform:scale(1.1);

background:#1ebe5d;

color:#fff;

}
/* =========================
   CSS Animations
========================= */

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-left{
    animation: fadeLeft 1s ease;
}

.animate-right{
    animation: fadeRight 1s ease;
}

.animate-up{
    animation: fadeUp 1s ease;
}
/* =================================
   PREMIUM HERO SECTION
================================= */

.hero {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8fbff, #ffffff);
    overflow: hidden;
}

.hero-tag,
.section-tag {
    display: inline-block;
    color: #0d6efd;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 700;
    color: #163d74;
    margin-bottom: 25px;
}

.hero h1 span {
    color: #0d6efd;
    display: block;
}

.hero p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
}

.hero-image-box {
    animation: heroImage 1.2s ease;
}

.hero-img {
    width: 100%;
    max-width: 520px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: 0.5s ease;
}

.hero-img:hover {
    transform: scale(1.03);
}


/* =================================
   STATS
================================= */

.stats {
    background: #163d74;
    padding: 55px 0;
}

.stat-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transition: 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-box h2 {
    font-size: 42px;
    color: #0d6efd;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-box p {
    margin: 0;
    font-size: 16px;
    color: #555;
}


/* =================================
   ABOUT
================================= */

.about {
    background: #ffffff;
    padding: 90px 0 !important;
}

.about-img {
    width: 100%;
    max-width: 520px;
    border-radius: 25px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.13);
    transition: 0.5s ease;
}

.about-img:hover {
    transform: scale(1.03);
}

.section-title {
    color: #163d74;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 25px;
}

.about p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.about-list li {
    margin-bottom: 12px;
    color: #333;
    font-weight: 500;
}


/* =================================
   CSS ANIMATIONS
================================= */

@keyframes heroText {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroImage {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text {
    animation: heroText 1s ease;
}


/* =================================
   MOBILE RESPONSIVE
================================= */

@media (max-width: 992px) {

    .hero {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 42px;
    }

    .section-title {
        font-size: 35px;
    }

}

@media (max-width: 576px) {

    .hero {
        padding: 50px 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-img {
        margin-top: 30px;
    }

    .about {
        padding: 60px 0 !important;
    }

    .section-title {
        font-size: 30px;
    }

}
/* =================================
   WHY CHOOSE US
================================= */

.why {
    background: #f8fbff;
}

.section-subtitle {
    color: #666;
    font-size: 16px;
    margin-top: -10px;
}

.why-card {
    height: 100%;
    padding: 35px 25px;
    background: #ffffff;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    border: 1px solid #eef3f8;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(13, 110, 253, 0.15);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf3ff;
    color: #0d6efd;
    border-radius: 50%;
    font-size: 28px;
    transition: 0.4s ease;
}

.why-card:hover .why-icon {
    background: #0d6efd;
    color: #ffffff;
    transform: rotateY(180deg);
}

.why-card h4 {
    color: #163d74;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}


<style>
/* =========================
   FEATURED PRODUCTS IMAGES
   ========================= */

section.products .product-card {
    overflow: hidden;
    background: #fff;
}

section.products .product-card img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
    object-position: center;
    background: #ffffff;
    
    /* Black edge ko frame ke bahar push karta hai */
    transform: scale(1.12);
}

/* Hover par extra zoom na ho */
section.products .product-card:hover img {
    transform: scale(1.12);
}
</style>

/* =================================
   MOBILE
================================= */

@media (max-width: 576px) {

    .why-card,
    .category-card {
        padding: 30px 20px;
    }

    .product-img {
        height: 210px;
    }

    .product-content h4 {
        font-size: 18px;
    }

}
/* =================================
   MANUFACTURING PROCESS
================================= */

.process {
    background: #ffffff;
}

.process-card {
    height: 100%;
    position: relative;
    padding: 35px 25px;
    text-align: center;
    background: #f8fbff;
    border-radius: 20px;
    border: 1px solid #e7eef7;
    transition: 0.4s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(13, 110, 253, 0.13);
}

.process-number {
    font-size: 14px;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 18px;
}

.process-card > i {
    font-size: 32px;
    color: #0d6efd;
    margin-bottom: 20px;
}

.process-card h4 {
    color: #163d74;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}


/* =================================
   CERTIFICATES
================================= */

.certificates {
    background: #f8fbff;
}

.certificate-card {
    height: 100%;
    padding: 35px 25px;
    text-align: center;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e7eef7;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
}

.certificate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(13, 110, 253, 0.13);
}

.certificate-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf3ff;
    color: #0d6efd;
    border-radius: 50%;
    font-size: 28px;
}

.certificate-card h4 {
    color: #163d74;
    font-weight: 700;
    margin-bottom: 12px;
}

.certificate-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}


/* =================================
   WORLDWIDE EXPORT
================================= */

.export-section {
    background: #ffffff;
}

.export-section p {
    color: #666;
    line-height: 1.8;
}

.export-highlight {
    display: flex;
    gap: 45px;
    margin-top: 30px;
}

.export-highlight div {
    display: flex;
    flex-direction: column;
}

.export-highlight strong {
    font-size: 35px;
    color: #0d6efd;
    font-weight: 700;
}

.export-highlight span {
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

.export-box {
    min-height: 300px;
    padding: 45px 30px;
    border-radius: 25px;
    background: linear-gradient(135deg, #163d74, #0d6efd);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 45px rgba(13, 110, 253, 0.2);
    transition: 0.4s ease;
}

.export-box:hover {
    transform: translateY(-8px);
}

.export-box > i {
    font-size: 65px;
    margin-bottom: 20px;
}

.export-box h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.export-box p {
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
}


/* =================================
   MOBILE
================================= */

@media (max-width: 576px) {

    .process-card,
    .certificate-card {
        padding: 30px 20px;
    }

    .export-highlight {
        gap: 25px;
    }

    .export-highlight strong {
        font-size: 30px;
    }

}
/* =================================
   REVIEWS / TESTIMONIALS
================================= */

.reviews {
    background: #f8fbff;
}

.review-card {
    height: 100%;
    padding: 35px 28px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e7eef7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(13, 110, 253, 0.13);
}

.review-stars {
    color: #f5b400;
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.review-card > p {
    color: #666;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.review-client {
    display: flex;
    align-items: center;
    gap: 13px;
}

.client-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf3ff;
    color: #0d6efd;
    border-radius: 50%;
}

.review-client h5 {
    color: #163d74;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 3px;
}

.review-client span {
    color: #777;
    font-size: 13px;
}


/* =================================
   GALLERY
================================= */

.gallery {
    background: #ffffff;
}

.gallery-item

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.65);
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-overlay i {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #0d6efd;
    border-radius: 50%;
    font-size: 20px;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


/* =================================
   CONTACT
================================= */

.contact {
    background: #f8fbff;
}

.contact-info {
    padding: 15px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-icon {
    min-width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf3ff;
    color: #0d6efd;
    border-radius: 14px;
    font-size: 20px;
}

.contact-item h5 {
    color: #163d74;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.contact-form .form-control {
    padding: 13px 16px;
    border: 1px solid #dfe7ef;
    border-radius: 8px;
    box-shadow: none;
}

.contact-form .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.08);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
}


/* =================================
   MOBILE
================================= */

@media (max-width: 576px) {

    .review-card {
        padding: 28px 22px;
    }

    .gallery-item {
        height: 230px;
    }

    .contact-form {
        padding: 25px 20px;
    }

}
/* ================= FOOTER LOGO FIX ================= */

.footer img {
    background: #ffffff;
    padding: 12px;
    width: 85px;
    height: 85px;
    object-fit: contain;
    border-radius: 14px;
    display: block;
    margin-bottom: 20px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
}

/* Footer text */
.footer {
    background: #1d467d;
}

.footer h4 {
    color: #ffffff;
}

.footer p,
.footer li,
.footer a {
    color: #f2f5f9;
}

/* Footer links hover */
.footer a:hover {
    color: #ffffff;
}

/* Social icons */
.footer .social-icons a {
    transition: 0.3s ease;
}

.footer .social-icons a:hover {
    transform: translateY(-4px);
}
/* =========================================
   HERO + CONTACT PREMIUM POLISH
   ========================================= */

/* HERO - soft medical background */
.hero {
    position: relative;
    background:
        radial-gradient(circle at 85% 20%, rgba(13, 110, 253, 0.08) 0 90px, transparent 91px),
        radial-gradient(circle at 10% 85%, rgba(22, 61, 116, 0.06) 0 120px, transparent 121px),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 55%, #f4f9ff 100%);
}

/* subtle decorative medical-style lines */
.hero::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 2px solid rgba(13, 110, 253, 0.08);
    border-radius: 50%;
    top: 35px;
    left: -80px;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(22, 61, 116, 0.07);
    border-radius: 50%;
    bottom: 30px;
    right: -45px;
    pointer-events: none;
}

/* Keep hero content above decoration */
.hero .container {
    position: relative;
    z-index: 2;
}

/* Hero image premium effect */
.hero-img {
    border: 8px solid #ffffff;
    box-shadow:
        0 20px 50px rgba(22, 61, 116, 0.16),
        0 0 0 1px rgba(13, 110, 253, 0.06);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 28px 60px rgba(22, 61, 116, 0.20),
        0 0 0 1px rgba(13, 110, 253, 0.10);
}


/* =========================================
   CONTACT INFO - CLEAN ALIGNMENT
   ========================================= */

.contact-info {
    padding: 18px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    min-height: 62px;
}

.contact-icon {
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf3ff;
    color: #0d6efd;

    border-radius: 14px;
    font-size: 20px;
    line-height: 1;

    box-sizing: border-box;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: #0d6efd;
    color: #ffffff;
    transform: translateY(-3px);
}

.contact-item > div:last-child {
    flex: 1;
    min-width: 0;
}

.contact-item h5 {
    margin: 0 0 5px 0;
    color: #163d74;
    font-weight: 700;
    line-height: 1.2;
}

.contact-item p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* Clickable contact links */
.contact-item a {
    color: #0d6efd;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}


/* =========================================
   MOBILE HERO
   ========================================= */

@media (max-width: 576px) {

    .hero::before {
        width: 120px;
        height: 120px;
    }

    .hero::after {
        width: 80px;
        height: 80px;
    }

    .hero-img {
        border-width: 6px;
    }

    .contact-item {
        gap: 14px;
        margin-bottom: 20px;
    }

    .contact-icon {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}/* CONTACT ICONS - FINAL ALIGNMENT FIX */

.contact-item {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
}

.contact-icon {
    width: 55px !important;
    height: 55px !important;
    min-width: 55px !important;
    max-width: 55px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    margin: 0 !important;

    border-radius: 14px !important;
    box-sizing: border-box !important;

    line-height: 1 !important;
    text-align: center !important;
}

/* Make every Font Awesome icon sit exactly in the center */
.contact-icon i {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    line-height: 1 !important;
}

/* Keep text perfectly aligned */
.contact-item > div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Same heading spacing */
.contact-item h5 {
    margin: 0 0 5px 0 !important;
}

/* Same paragraph spacing */
.contact-item p {
    margin: 0 !important;
}
/* =========================================
   PRODUCT CATEGORY ICONS - CLEAN ALIGNMENT
   ========================================= */

.product-card .icon,
.product-card .category-icon {
    width: 66px !important;
    height: 66px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 auto 18px auto !important;
    padding: 0 !important;

    border-radius: 16px !important;
    box-sizing: border-box !important;

    line-height: 1 !important;
}

/* Center the actual Font Awesome icons */
.product-card .icon i,
.product-card .category-icon i {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;

    line-height: 1 !important;
}

/* Same visual icon size */
.product-card .icon i {
    font-size: 30px !important;
}

/* Small hover effect */
.product-card:hover .icon,
.product-card:hover .category-icon {
    transform: translateY(-4px);
    transition: all 0.3s ease;
}
/* =========================================
   PRODUCT CATEGORY ICONS
   ========================================= */

.category-card .category-icon {
    width: 70px !important;
    height: 70px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 auto 20px auto !important;
    padding: 0 !important;

    border-radius: 18px !important;
    box-sizing: border-box !important;

    line-height: 1 !important;

    transition: all 0.3s ease;
}

.category-card .category-icon i {
    margin: 0 !important;
    padding: 0 !important;

    font-size: 30px !important;
    line-height: 1 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Nice subtle hover */
.category-card:hover .category-icon {
    transform: translateY(-5px);
}
/* =========================================
   QUALITY & CERTIFICATION ICONS
   ========================================= */

.certificate-card .certificate-icon {
    width: 70px !important;
    height: 70px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 auto 20px auto !important;
    padding: 0 !important;

    border-radius: 50% !important;
    box-sizing: border-box !important;
    line-height: 1 !important;

    transition: all 0.3s ease;
}

.certificate-card .certificate-icon i {
    font-size: 30px !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Small professional hover effect */
.certificate-card:hover .certificate-icon {
    transform: translateY(-4px);
}
/* =========================================
   WHY CHOOSE US ICONS
   ========================================= */

.why-card .why-icon {
    width: 70px !important;
    height: 70px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 auto 20px auto !important;
    padding: 0 !important;

    border-radius: 50% !important;
    box-sizing: border-box !important;
    line-height: 1 !important;

    transition: all 0.3s ease;
}

.why-card .why-icon i {
    font-size: 30px !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hover effect */
.why-card:hover .why-icon {
    transform: translateY(-4px);
}
/* =========================================
   PREMIUM WEBSITE EFFECTS
   ========================================= */

/* Soft background for sections */
.why,
.certificates,
.products {
    background: linear-gradient(
        135deg,
        #f8fbff 0%,
        #eef6ff 50%,
        #f8fbff 100%
    );
}

/* Premium card effect */
.why-card,
.certificate-card,
.category-card {
    transition: all 0.35s ease !important;
    border: 1px solid rgba(20, 83, 145, 0.08) !important;
    box-shadow: 0 8px 25px rgba(20, 70, 120, 0.07) !important;
}

/* Card hover */
.why-card:hover,
.certificate-card:hover,
.category-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 18px 40px rgba(20, 83, 145, 0.15) !important;
    border-color: rgba(30, 115, 220, 0.18) !important;
}

/* Icon glow */
.why-icon,
.certificate-icon,
.category-icon {
    box-shadow: 0 8px 20px rgba(30, 115, 220, 0.10);
    transition: all 0.35s ease !important;
}

.why-card:hover .why-icon,
.certificate-card:hover .certificate-icon,
.category-card:hover .category-icon {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(30, 115, 220, 0.20);
}

/* Buttons */
.btn,
button {
    transition: all 0.3s ease !important;
}

.btn:hover,
button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(20, 100, 220, 0.22);
}
/* =========================================
   STRONGER BLUE PREMIUM BACKGROUNDS
   ========================================= */

.why,
.certificates,
.products {
    background: linear-gradient(
        135deg,
        #e8f2ff 0%,
        #d8eaff 50%,
        #eef6ff 100%
    ) !important;
}

/* Slightly stronger card depth */
.why-card,
.certificate-card,
.category-card {
    background: #ffffff !important;
    box-shadow: 0 12px 30px rgba(22, 61, 116, 0.12) !important;
}

/* Stronger hover */
.why-card:hover,
.certificate-card:hover,
.category-card:hover {
    box-shadow: 0 20px 45px rgba(22, 61, 116, 0.20) !important;
}
/* =========================================
   PREMIUM BLUE LINES & TEXTURE
   ========================================= */

/* Subtle decorative lines on blue sections */
.why,
.certificates,
.products {
    position: relative;
    overflow: hidden;
}

/* Large soft circular outline */
.why::before,
.certificates::before,
.products::before {
    content: "";
    position: absolute;

    width: 280px;
    height: 280px;

    border: 2px solid rgba(13, 110, 253, 0.08);
    border-radius: 50%;

    top: -120px;
    right: -100px;

    pointer-events: none;
}

/* Second decorative circle */
.why::after,
.certificates::after,
.products::after {
    content: "";
    position: absolute;

    width: 180px;
    height: 180px;

    border: 1px solid rgba(22, 61, 116, 0.08);
    border-radius: 50%;

    bottom: -80px;
    left: -60px;

    pointer-events: none;
}

/* Keep content above decorative texture */
.why .container,
.certificates .container,
.products .container {
    position: relative;
    z-index: 2;
}


/* =========================================
   VERY SUBTLE GRID TEXTURE
   ========================================= */

.why {
    background-image:
        linear-gradient(rgba(255,255,255,0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.18) 1px, transparent 1px),
        linear-gradient(
            135deg,
            #e8f2ff 0%,
            #d8eaff 50%,
            #eef6ff 100%
        ) !important;

    background-size:
        35px 35px,
        35px 35px,
        100% 100%;
}
/* =========================================
   HERO - PREMIUM VISUAL DETAILS
   ========================================= */

.hero {
    position: relative;
    overflow: hidden;
}

/* Soft blue glow behind the main content */
.hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;

    background: rgba(13, 110, 253, 0.055);
    filter: blur(10px);

    top: -180px;
    left: -150px;

    pointer-events: none;
}

/* Decorative rings on image side */
.hero::after {
    content: "";
    position: absolute;

    width: 330px;
    height: 330px;

    border: 2px solid rgba(13, 110, 253, 0.09);
    border-radius: 50%;

    right: -150px;
    bottom: -130px;

    pointer-events: none;
}

/* Keep hero content above decorations */
.hero .container {
    position: relative;
    z-index: 2;
}

/* Heading area */
.hero h1 {
    position: relative;
    z-index: 2;
}

/* Small decorative line above heading */
.hero h1::before {
    content: "";
    display: block;

    width: 55px;
    height: 4px;

    background: #0d6efd;
    border-radius: 10px;

    margin-bottom: 18px;
}

/* Image area */
.hero-img {
    position: relative;
    z-index: 3;

    border-radius: 24px;

    box-shadow:
        0 25px 60px rgba(22, 61, 116, 0.18),
        0 0 0 8px rgba(255, 255, 255, 0.9);
}

/* Image hover */
.hero-img:hover {
    transform: translateY(-8px) scale(1.02);
}


/* =========================================
   HERO TEXT DETAILS
   ========================================= */

.hero p {
    max-width: 600px;
    line-height: 1.8;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {

    .hero::before {
        width: 280px;
        height: 280px;
    }

    .hero::after {
        width: 220px;
        height: 220px;
        right: -120px;
        bottom: -80px;
    }

    .hero h1::before {
        margin-bottom: 14px;
    }
}
/* ================= GALLERY ALBUMS ================= */

.album-card {
    cursor: pointer;
    transition: all 0.35s ease;
}

.album-card:hover {
    transform: translateY(-8px);
}

.gallery-overlay span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    opacity: 0.9;
}


/* ================= ALBUM POPUP ================= */

.album-modal {
    display: none;

    position: fixed;
    z-index: 9999;

    inset: 0;

    background: rgba(5, 25, 50, 0.88);

    padding: 40px 20px;

    overflow-y: auto;
}

.album-modal-content {
    position: relative;

    max-width: 1050px;
    margin: 30px auto;

    background: #ffffff;

    border-radius: 20px;

    padding: 35px;

    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
}

.album-modal-content h2 {
    color: #163d74;
    text-align: center;
    margin-bottom: 30px;
}

.album-close {
    position: absolute;

    top: 15px;
    right: 20px;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #0d6efd;
    color: white;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;
}

.album-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.album-grid img {
    width: 100%;
    height: 220px;

    object-fit: cover;

    border-radius: 14px;

    transition: 0.3s;
}

.album-grid img:hover {
    transform: scale(1.03);
}


@media(max-width:768px) {

    .album-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .album-modal-content {
        padding: 25px 18px;
    }
}

@media(max-width:500px) {

    .album-grid {
        grid-template-columns: 1fr;
    }
}
.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s ease;
    height:100%;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(13,110,253,.15);
}

.product-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:.4s ease;
}

.product-card:hover img{
    transform:scale(1.04);
}

.product-content{
    padding:22px 20px 25px;
}

.product-card h3{
    font-size:22px;
    font-weight:700;
    color:#0b2f61;
    margin-bottom:10px;
}

.product-card p{
    color:#666;
    line-height:1.6;
    margin:0;
}
.product-card img{
    width:100%;
    height:300px;
    object-fit:contain;
    display:block;
    background:#fff;
    padding:5px;
}
.product-card {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
}

.product-card img {
    width: 100%;
    height: 290px;
    display: block;
    object-fit: contain;
    object-position: center;
    background: #fff;
    padding: 0;
}

.product-content {
    padding: 25px 20px 28px;
    text-align: center;
    min-height: 170px;
}

.product-content h3 {
    margin: 0 0 12px;
}

.product-content p {
    margin: 0;
    line-height: 1.6;
}
.gallery-section {
    padding: 50px 7%;
    background: #f7f7f7;
}

.gallery-section h2 {
    text-align: center;
    font-size: 35px;
    margin-bottom: 35px;
    color: #222;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-7px);
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.gallery-item h3 {
    text-align: center;
    padding: 15px;
    margin: 0;
    font-size: 18px;
    color: #333;
}
/* =========================
   ORTHOPAEDIC ALBUM
========================= */

#albumImages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

#albumImages img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    background: #f5f5f5;
    border-radius: 15px;
    padding: 10px;
    display: block;
}

/* Tablet */
@media (max-width: 992px) {
    #albumImages {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    #albumImages {
        grid-template-columns: 1fr;
    }

    #albumImages img {
        height: 260px;
    }
}
/* =========================
   PRODUCT IMAGE CARD
========================= */

#albumImages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.album-product {
    position: relative;
    height: 280px;
    background: #f5f5f5;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

/* VIEW BUTTON */

.view-product-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);

    background: #174a8b;
    color: white;
    border: none;
    padding: 10px 28px;
    border-radius: 25px;

    font-size: 14px;
    font-weight: 600;
    cursor: pointer;

    opacity: 0;
    transition: .3s;
}

.album-product:hover .view-product-btn {
    opacity: 1;
}

.view-product-btn:hover {
    background: #0d3568;
}


/* =========================
   FULL PRODUCT PAGE
========================= */

#productModal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;

    background: #f5f7fa;

    overflow-y: auto;
    padding: 30px;
}


.product-page {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    background: white;

    min-height: 100vh;

    padding: 50px;

    position: relative;
}


/* CLOSE BUTTON */

.close-product {
    position: absolute;

    right: 25px;
    top: 20px;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #174a8b;
    color: white;

    font-size: 25px;

    cursor: pointer;

    z-index: 5;
}


/* PRODUCT TOP */

.product-detail {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: start;

    padding-top: 20px;
}


/* PRODUCT IMAGE */

.product-image-area {

    width: 100%;

    background: #f5f5f5;

    border-radius: 20px;

    padding: 25px;
}


.product-image-area img {

    width: 100%;

    height: 500px;

    object-fit: contain;

    display: block;
}


/* PRODUCT INFO */

.product-info {

    padding-top: 20px;
}


.product-info h1 {

    font-size: 38px;

    color: #174a8b;

    margin-bottom: 30px;

    line-height: 1.2;
}


.product-section {

    margin-bottom: 25px;
}


.product-section h3 {

    font-size: 20px;

    color: #222;

    margin-bottom: 10px;
}


.product-section p {

    color: #555;

    line-height: 1.8;

    font-size: 16px;
}


/* BUTTONS */

.product-actions {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;

    flex-wrap: wrap;
}


.like-btn {

    width: 48px;

    height: 48px;

    border: 1px solid #ddd;

    background: white;

    border-radius: 50%;

    font-size: 25px;

    cursor: pointer;

    color: #174a8b;
}


.cart-btn {

    border: none;

    background: #174a8b;

    color: white;

    padding: 13px 22px;

    border-radius: 25px;

    font-weight: 600;

    cursor: pointer;
}


.inquiry-btn {

    display: inline-block;

    background: #25D366;

    color: white;

    padding: 13px 22px;

    border-radius: 25px;

    text-decoration: none;

    font-weight: 600;
}


.inquiry-btn:hover {

    color: white;

    opacity: .9;
}


/* =========================
   REVIEWS
========================= */

.reviews-section {

    margin-top: 70px;

    padding-top: 40px;

    border-top: 1px solid #ddd;
}


.reviews-section h2,
.related-section h2 {

    color: #174a8b;

    margin-bottom: 25px;
}


.review-box {

    background: #f8f9fb;

    padding: 20px;

    border-radius: 12px;

    margin-bottom: 15px;
}


.stars {

    color: #f5b400;

    font-size: 20px;

    margin-bottom: 8px;
}


.review-box p {

    color: #555;

    margin-bottom: 8px;
}


.review-btn {

    background: white;

    border: 1px solid #174a8b;

    color: #174a8b;

    padding: 10px 20px;

    border-radius: 20px;

    cursor: pointer;
}


/* =========================
   RELATED PRODUCTS
========================= */

.related-section {

    margin-top: 60px;

    padding-top: 40px;

    border-top: 1px solid #ddd;
}


.related-products {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


.related-product-card {

    background: #f8f9fb;

    border-radius: 12px;

    padding: 15px;

    text-align: center;
}


.related-product-card img {

    width: 100%;

    height: 180px;

    object-fit: contain;

    border-radius: 10px;

    background: white;
}


.related-product-card h4 {

    font-size: 16px;

    color: #333;

    margin-top: 12px;
}


/* =========================
   MOBILE
========================= */

@media(max-width: 768px) {

    #productModal {

        padding: 0;
    }


    .product-page {

        padding: 30px 20px;
    }


    .product-detail {

        grid-template-columns: 1fr;

        gap: 30px;
    }


    .product-image-area img {

        height: 350px;
    }


    .product-info h1 {

        font-size: 28px;
    }


    .related-products {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media(max-width: 576px) {

    .related-products {

        grid-template-columns: 1fr;
    }


    .product-actions {

        flex-direction: column;

        align-items: stretch;
    }


    .cart-btn,
    .inquiry-btn {

        text-align: center;

        width: 100%;
    }

}
/* =========================================
   FINAL FIX - ALBUM PRODUCT IMAGES
   ALL IMAGES SAME SIZE
========================================= */

#albumImages {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 22px !important;
    padding: 20px !important;
}

.album-product {
    position: relative !important;
    width: 100% !important;
    height: 300px !important;

    background: #ffffff !important;
    border-radius: 16px !important;
    overflow: hidden !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    box-shadow: 0 8px 25px rgba(0,0,0,0.08) !important;
}

/* IMAGE SIZE FIX */
.album-product img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center !important;

    padding: 0 !important;
    margin: 0 !important;

    display: block !important;

    border-radius: 16px !important;

    transition: transform 0.35s ease !important;
}

/* Hover */
.album-product:hover img {
    transform: scale(1.04) !important;
}

/* VIEW BUTTON */
.album-product .view-product-btn {
    position: absolute !important;
    bottom: 15px !important;
    left: 50% !important;

    transform: translateX(-50%) !important;

    z-index: 5 !important;

    opacity: 0 !important;
    visibility: hidden !important;

    background: #174a8b !important;
    color: #ffffff !important;

    border: none !important;
    padding: 10px 28px !important;

    border-radius: 25px !important;

    font-size: 14px !important;
    font-weight: 600 !important;

    cursor: pointer !important;

    transition: all 0.3s ease !important;
}

.album-product:hover .view-product-btn {
    opacity: 1 !important;
    visibility: visible !important;
}

.album-product .view-product-btn:hover {
    background: #0d3568 !important;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    #albumImages {
        grid-template-columns: repeat(2, 1fr) !important;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    #albumImages {
        grid-template-columns: 1fr !important;
        padding: 15px !important;
    }

    .album-product {
        height: 280px !important;
    }

}
/* =========================================
   FINAL FIX - ALL PRODUCT IMAGES SAME SIZE
========================================= */

/* Album popup cards */
#albumImages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Same size box for every product */
#albumImages .album-product {
    width: 100%;
    height: 300px;
    background: #f5f7fa;
    border-radius: 15px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

/* All images use exactly same area */
#albumImages .album-product img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    padding: 15px;
    display: block;

    background: #f5f7fa;
}


/* =========================================
   PRODUCT CARDS - SAME IMAGE SIZE
========================================= */

.product-card img {
    width: 100% !important;
    height: 290px !important;

    object-fit: contain !important;
    object-position: center !important;

    padding: 15px !important;
    display: block !important;

    background: #f5f7fa !important;
}


/* Product image container */
.product-img {
    width: 100%;
    height: 290px !important;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    background: #f5f7fa;
}


/* =========================================
   RELATED PRODUCTS
========================================= */

.related-product-card img {
    width: 100% !important;
    height: 180px !important;

    object-fit: contain !important;
    object-position: center !important;

    padding: 10px;
    background: #fff;
    display: block;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {

    #albumImages {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 576px) {

    #albumImages {
        grid-template-columns: 1fr;
    }

    #albumImages .album-product {
        height: 280px;
    }

    .product-img {
        height: 250px !important;
    }

    .product-card img {
        height: 250px !important;
    }

}
.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #fff;
}