@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    color: #1a1a2e;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 88%;
    max-width: 1200px;
    margin: auto;
}

/* ===== TOP BAR ===== */
/* .topbar {
    background: linear-gradient(90deg, #0d3b6e, #1565c0);
    color: white;
    padding: 9px 0;
    font-size: 13px;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons a,
.social-icons i {
    color: rgba(255,255,255,0.8);
    margin-right: 14px;
    font-size: 13px;
    cursor: pointer;
    transition: color 0.3s;
}

.social-icons a:hover i,
.social-icons i:hover {
    color: #64b5f6;
}

.phone {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 500;
    letter-spacing: 0.3px;
} */

/* ===== NAVBAR ===== */
header {
    background: rgba(255, 255, 255, 0.97);
    padding: 16px 0;
    box-shadow: 0 2px 20px rgba(13, 59, 110, 0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}
.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Logo Image */
.logo img{
    width: 85px;
    height: 85px;
    object-fit: contain;
}

/* Company Name */
.logo h2{
    margin: 0;
    color: #046588;
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

/* SURGICAL LLP */
.logo h2 span{
    display: block;
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #1394b1;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}
.nav ul{
    display:flex;
    list-style:none;
    gap:25px;
    margin:0;
    padding:0;
    align-items:center;
}


.nav ul li a {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

.nav ul li a:hover {
    color: #204976;
}

.nav ul li.active a {
    color: #1565c0;
    border-bottom: 2px solid #1565c0;
    padding-bottom: 3px;
}

.contact-btn {
    background: linear-gradient(135deg, #0d3b6e, #1565c0);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 101, 192, 0.4);
}

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

.hero{
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;

    /* New Background */
    background-image:
        linear-gradient(rgba(255,255,255,0.55), rgba(255,255,255,0.55)),
        url("images/bg_img.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:90px;
    background:#ffffff;
    clip-path:ellipse(55% 100% at 50% 100%);
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 80px 0 100px;
}

.hero-text {
    flex: 1;
    color: rgb(29, 32, 32);
}

@font-face {
    font-family: "Bauhaus93";
    src: url("fonts/bauhs93.ttf") format("truetype");
}

.small-heading{
    font-family: "Bauhaus93";
    font-size: 48px;
    color: #068ca0;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 22px;
    color: #22a28d;
}

.hero-text h1 span {
    color: #3c87c5;
    font-style: italic;
}

.description {
    color: rgba(23, 21, 21, 0.82);
    line-height: 1.8;
    margin-bottom: 36px;
    font-size: 15px;
    max-width: 520px;
}

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

.primary-btn {
    background: linear-gradient(135deg, #1565c0, #42a5f5);
    color: white;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(21, 101, 192, 0.5);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(21, 101, 192, 0.6);
}

.secondary-btn {
    background:linear-gradient(135deg, #1565c0, #42a5f5);
    color: white;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    backdrop-filter: blur(6px);
}

.secondary-btn:hover {
    /* background: rgba(25, 161, 199, 0.22); */
    /* border-color: white; */
    transform: translateY(-3px);
}

/* Hero Images */
.hero-images{
    position:relative;
    width:100%;
    max-width:520px;
    aspect-ratio:1/1;
    height:auto;
}

.shape {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reverse-u {
    width: 230px;
    height: 320px;
    top: -30px;
    right: 30px;
    border-radius: 130px 130px 0 0;
    border: 3px solid rgba(100, 181, 246, 0.4);
}

.q1 {
    width: 230px;
    height: 230px;
    top: 30px;
    left: 30px;
    border-radius: 100% 0 0 0;
    border: 3px solid rgba(100, 181, 246, 0.3);
}

.q3 {
    width: 230px;
    height: 230px;
    bottom: 30px;
    left: 30px;
    border-radius: 0 0 0 100%;
    border: 3px solid rgba(100, 181, 246, 0.3);
}

.q4 {
    width: 230px;
    height: 230px;
    bottom: 30px;
    right: 30px;
    border-radius: 0 0 100% 0;
    border: 3px solid rgba(100, 181, 246, 0.3);
}

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

.about-section{
    padding:0;
    background:#fff;
}

.about-section .container{
    max-width:1200px;
    margin:auto;
}

.about-section h1,
.about-text{
    position:relative;
    z-index:2;
}

.about-section::before{
    content:"";
    display:block;
    width:100%;
    height:430px;

    background-image:
    linear-gradient(
        rgba(255,255,255,0.55),
        rgba(255,255,255,0.55)
    ),
    url("images/bg_img.png");

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

    position:absolute;
    top:0;
    left:0;
    z-index:0;
}

.about-section{
    position:relative;
    overflow:hidden;
}

.about-section .container{
    position:relative;
    z-index:1;
    padding:90px 20px 70px;
}

/* Heading */

.about-section h1{
    font-family:'Playfair Display', serif;
    font-size:42px;
    margin-bottom:18px;
    color:#0d3b6e;
    text-align:center;
}

.about-section h1::after{
    content:'';
    display:block;
    width:60px;
    height:4px;
    background:linear-gradient(90deg,#1565c0,#64b5f6);
    margin:14px auto 0;
    border-radius:2px;
}

/* Description */

.about-text{
    max-width:780px;
    margin:24px auto 120px;
    line-height:1.85;
    color:#375d8c;
    font-size:15.5px;
    font-weight:500;

    background:rgba(255,255,255,0.82);
    padding:22px 28px;
    border-radius:12px;
    backdrop-filter:blur(5px);

    text-align:center;
}

/* Cards */

.about-cards{
    display:flex;
    justify-content:center;
    gap:28px;
    flex-wrap:wrap;

    margin-top:20px;
    position:relative;
    z-index:2;
}

/* Card */

.about-card{
    width:300px;
    padding:36px 28px;

    background:#fff;
    border-radius:14px;
    border-top:4px solid #1565c0;

    box-shadow:0 8px 30px rgba(13,59,110,.15);

    transition:.3s;
    cursor:pointer;
    text-align: center;
}

.about-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(13,59,110,.22);
}

.about-card i{
    font-size:36px;
    color:#1565c0;
    margin-bottom:18px;
    display:block;
    width:100%;
    text-align:center;
}

.about-card h2{
    margin-bottom:12px;
    font-size:20px;
    color:#0d3b6e;
}

.about-card p{
    color:#5a6a7a;
    line-height:1.7;
    font-size:14.5px;
}
/* ===== WHY CHOOSE US ===== */

.why-choose{

    padding:90px 0;
    background:#f8fbff;
}

.why-choose h1{

    font-family:'Playfair Display',serif;
    font-size:42px;
    color:#0d3b6e;
    text-align:center;
}

.why-choose h1::after{

    content:"";
    display:block;

    width:70px;
    height:4px;

    background:linear-gradient(90deg,#1565c0,#64b5f6);

    margin:15px auto 0;
    border-radius:20px;
}

.why-text{

    max-width:850px;

    margin:35px auto 60px;

    text-align:center;

    line-height:1.9;

    color:#555;

    font-size:16px;
}

/* Banner Grid */

.why-banner-grid{

    display:grid;

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

    gap:25px;
}

/* Banner Card */

.banner-card{

    border-radius:18px;

    overflow:hidden;

    background:#fff;

    box-shadow:0 12px 30px rgba(0,0,0,.12);

    transition:.35s ease;
}

.banner-card:hover{

    transform:translateY(-8px);

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

.banner-card img{

    width:100%;

    display:block;
}

/* ===== PRODUCTS ===== */
.products{
    padding:0 0 90px;
    background:#fff;
}

/* ===== Products Banner ===== */

.section-title{
    width:100%;
    height:400px;               
    margin-bottom:80px;
    padding:80 20px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;

    position:relative;
    overflow:hidden;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.55),
            rgba(255,255,255,0.55)
        ),
        url("images/bg_img.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    border-radius:0;            
}

.section-title h1{
    font-size:48px;
    color:#0a4d4a;
    margin-bottom:20px;
    position:relative;
    font-weight:700;
}

.section-title h1::after{
    content:"";
    width:90px;
    height:4px;
    background:#246ccf;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-15px;
    border-radius:10px;
}

.section-title p{
    max-width:750px;
    margin-top:30px;

    color:#375d8c;
    font-size:17px;
    line-height:1.8;

    background:rgba(255,255,255,0.82);
    padding:22px 30px;
    border-radius:12px;

    backdrop-filter:blur(5px);
    backdrop-filter:blur(5px);

    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}
/* Product Row */

.product-row{
    display:flex;
    align-items:center;
    gap:60px;
    margin-bottom:80px;
}

.product-row.reverse{
    flex-direction:row-reverse;
}

/* Product Image */

.product-image{
    flex:1;
    overflow:hidden;
    border-radius:20px;
}

.product-image img{
    width:100%;
    height:380px;
    object-fit:cover;
    border-radius:20px;
    transition:0.5s ease;
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

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

/* Product Card */

.product-box{
    flex:1;
    background:#d2dae5;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(54, 32, 32, 0.08);
    transition:0.4s ease;
}

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

.product-number{
    font-size:55px;
    font-weight:700;
    color:#069885;
    opacity:0.18;
    line-height:1;
}

.product-box h2{
    color:#12736e;
    margin:10px 0 20px;
    font-size:30px;
}

.product-box p{
    color:#1d1b1b;
    line-height:1.8;
    margin-bottom:25px;
}

.product-btn{
    display:inline-block;
    padding:12px 28px;
    background:#0a4d4a;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    transition:0.3s;
    font-weight:600;
}

.product-btn:hover{
    background:#00bfa6;
}


/* ===== CONTACT ===== */

.contact-section{
    background:#f8fafc;
    padding:0 0 100px;
}

.contact-inner{
    width:100%;
    padding:0;
}

/* Banner */

.contact-header{
    width:100%;
    height:400px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.55),
            rgba(255,255,255,0.55)
        ),
        url("images/bg_img.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    margin-bottom:70px;
}


.contact-header h1{
    font-size:42px;
    color:#0a4d4a;
    margin-bottom:15px;
    position:relative;
}

.contact-header h1::after{
    content:"";
    width:80px;
    height:4px;
    background:#00bfa6;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-15px;
}

.contact-header p{
    max-width:700px;
    margin:35px auto 0;
    color:#666;
    line-height:1.8;
}

.contact-text{
    max-width:750px;
    margin-top:35px;

    background:rgba(255,255,255,0.82);
    backdrop-filter:blur(5px);
    -webkit-backdrop-filter:blur(5px);

    padding:22px 30px;
    border-radius:12px;

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

    color:#375d8c;
    font-size:16px;
    line-height:1.8;
}

/* Layout */

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1.3fr;
    gap:35px;

    margin:0 50px 90px;   
}

/* Info */

.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.info-card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    display:flex;
    gap:18px;
    align-items:flex-start;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:.4s;
}

.info-card:hover{
    transform:translateY(-8px);
}

.info-card i{
    width:55px;
    height:55px;
    background:#00bfa6;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
}

.info-card h3{
    color:#0a4d4a;
    margin-bottom:8px;
}

.info-card p{
    color:#666;
    line-height:1.7;
}

/* Form */

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.contact-form h2{
    color:#0a4d4a;
    margin-bottom:25px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#00bfa6;
    box-shadow:0 0 0 4px rgba(0,191,166,0.12);
}

.contact-form button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    background:#0a4d4a;
    color:#fff;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#00bfa6;
}

/* Map */

.map-section{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.map-section h2{
    text-align:center;
    color:#0a4d4a;
    margin-bottom:25px;
}

.map-section iframe{
    width:100%;
    height:450px;
    border:none;
    border-radius:15px;
}


/* ===== QUALITY ===== */

.quality-section{
    padding:0 0 80px;
    background:#fff;
}

/* Banner */

.standards{
    padding:90px 10% 70px;
    text-align:center;

    background:
        linear-gradient(
            rgba(255,255,255,.55),
            rgba(255,255,255,.55)
        ),
        url("images/bg_img.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

/* Heading */

.standards h1{
    font-family:'Playfair Display',serif;
    font-size:42px;
    color:#0d3b6e;
    margin-bottom:18px;
}

.standards h1::after{
    content:'';
    display:block;
    width:60px;
    height:4px;
    background:linear-gradient(90deg,#1565c0,#64b5f6);
    margin:14px auto 0;
    border-radius:2px;
}

/* White Box */

.standards-text{
    max-width:780px;
    margin:35px auto 0;

    background:rgba(255,255,255,.82);
    padding:22px 30px;

    border-radius:12px;
    backdrop-filter:blur(5px);

    line-height:1.85;
    color:#1f2937;
    font-size:15.5px;
    font-weight:500;

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

/* White Section */

.quality-content{
    padding:70px 10% 0;
    background:#fff;
}

/* Feature Title */

.feature-title{
    text-align:center;
    font-size:22px;
    color:#0d3b6e;
    margin-bottom:35px;
}
.features {
    display: flex;
    justify-content: space-between;
    margin-top: 36px;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-box {
    width: 22%;
    text-align: center;
    background: white;
    padding: 28px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(13, 59, 110, 0.08);
    transition: 0.3s;
    cursor: pointer;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(13, 59, 110, 0.15);
}

.icon {
    font-size: 38px;
    color: #1565c0;
    margin-bottom: 18px;
}

.feature-box p {
    color: #4a5568;
    font-size: 14.5px;
    line-height: 1.6;
}

.quality-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 10% 80px;
}

.quality-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(13, 59, 110, 0.09);
    text-align: left;
    transition: 0.3s;
    cursor: pointer;
    border-left: 5px solid #1565c0;
}

.quality-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(13, 59, 110, 0.15);
}

.quality-box h3 {
    color: #0d3b6e;
    margin-bottom: 12px;
    font-size: 18px;
}

.quality-box p {
    color: #5a6a7a;
    line-height: 1.7;
    font-size: 14.5px;
}

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

.certifications{
    padding:80px 5%;
    background:
    linear-gradient(rgba(13,59,110,.93),rgba(8,28,60,.93)),
    url('https://images.unsplash.com/photo-1530026405186-ed1f139313f8?w=1400&auto=format&fit=crop&q=80') center/cover no-repeat fixed;
    text-align:center;
}

.certifications h2{
    font-family:'Playfair Display',serif;
    font-size:38px;
    color:#fff;
    margin-bottom:55px;
}

.certifications h2::after{
    content:'';
    display:block;
    width:70px;
    height:4px;
    background:#42a5f5;
    margin:14px auto;
    border-radius:10px;
}

.certificate-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.certificate-card{

    width:320px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    border-radius:15px;
    padding:30px;
    border:1px solid rgba(255,255,255,.15);
    transition:.4s;
    cursor:pointer;

}

.certificate-card:hover{

    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.35);

}

.certificate-card img{

    width:85px;
    margin-bottom:20px;

}

.certificate-card h3{

    color:#fff;
    margin-bottom:15px;
    font-size:20px;

}

.certificate-card p{

    color:#ddd;
    line-height:1.7;
    margin-bottom:25px;

}

.view-btn{

    background:#1e88e5;
    color:#fff;
    border:none;
    padding:12px 28px;
    border-radius:30px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:.3s;

}

.view-btn:hover{

    background:#1565c0;

}


/* Popup */

.certificate-modal{

    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.92);

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

}

.certificate-modal img{

    max-width:85%;
    max-height:90%;
    border-radius:12px;
    box-shadow:0 20px 60px rgba(0,0,0,.5);

}

.close-btn{

    position:absolute;
    top:25px;
    right:40px;
    color:#fff;
    font-size:50px;
    cursor:pointer;

}

/* =========================
     JOURNEY SECTION
========================= */
.journey-section {
    padding: 90px 5%;
    background:
        linear-gradient(rgba(255,255,255,0.95), rgba(248, 250, 255, 0.95)),
        url('https://i.pinimg.com/1200x/3b/47/0c/3b470ce7190c7aa71f2ec16087b5ecae.jpg') center/cover no-repeat fixed;
    text-align: center;
}


.journey-section h2{
    font-size:42px;
    color:#0a4d4a;
    margin-bottom:70px;
    position:relative;
}

.journey-section h2::after{
    content:"";
    width:80px;
    height:4px;
    background:#0f9b8e;
    position:absolute;
    bottom:-15px;
    left:50%;
    transform:translateX(-50%);
}

.journey-horizontal{
    display:flex;
    justify-content:center;
    align-items:flex-end;
    gap:25px;
    flex-wrap:wrap;
}

/* =========================
   GROWTH CARDS
========================= */

.journey-card{
    background:#ffffff;
    border-radius:20px;
    padding:30px 20px;
    position:relative;
    overflow:hidden;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:all .5s ease;
}

/* Growth Progression */

.journey-card:nth-child(1){
    width:220px;
    min-height:220px;
}

.journey-card:nth-child(2){
    width:250px;
    min-height:260px;
}

.journey-card:nth-child(3){
    width:280px;
    min-height:300px;
}

.journey-card:nth-child(4){
    width:310px;
    min-height:340px;
}

/* Slide Layer */

.journey-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        135deg,
        #4064bf,
        #34d1bf
    );
    transition:.5s ease;
}

.journey-card:nth-child(even)::before{
    left:auto;
    right:-100%;
}

.journey-card:hover::before{
    left:0;
}

.journey-card:nth-child(even):hover::before{
    right:0;
}

/* Content Above Layer */

.journey-card .year,
.journey-card h4,
.journey-card p{
    position:relative;
    z-index:5;
}

/* =========================
   YEAR CIRCLES GROW TOO
========================= */

.journey-card:nth-child(1) .year{
    width:60px;
    height:60px;
}

.journey-card:nth-child(2) .year{
    width:70px;
    height:70px;
}

.journey-card:nth-child(3) .year{
    width:80px;
    height:80px;
}

.journey-card:nth-child(4) .year{
    width:90px;
    height:90px;
}

.year{
    margin:0 auto 20px;
    border-radius:50%;
    background:#0f659b;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:700;
    transition:.4s;
}

/* Hover Effects */

.journey-card:hover{
    transform:translateY(-15px) scale(1.03);
    box-shadow:0 20px 40px rgba(15,155,142,0.25);
}

.journey-card:hover h4,
.journey-card:hover p{
    color:white;
}

.journey-card:hover .year{
    background:white;
    color:#0f559b;
}

/* Heading */

.journey-card h4{
    color:#0a4d4a;
    margin-bottom:15px;
    font-size:22px;
    transition:.4s;
}

.journey-card p{
    color:#666;
    line-height:1.7;
    transition:.4s;
}


/* ===== GALLERY ===== */

.gallery{
    padding:0 0 90px;
    background:#fff;
}

/* Banner */

.gallery h1{
    width:100%;
    height:320px;

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

    margin:0 0 70px;
    position:relative;

    font-family:'Playfair Display', serif;
    font-size:42px;
    color:#0d3b6e;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.55),
            rgba(255,255,255,0.55)
        ),
        url("images/bg_img.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

.gallery h1::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:110px;

    transform:translateX(-50%);

    width:60px;
    height:4px;

    background:linear-gradient(90deg,#1565c0,#64b5f6);
    border-radius:2px;
}

/* Gallery */

.gallery-container{
    width:88%;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

/* Gallery Card */

.gallery-item{
    overflow:hidden;
    border-radius:12px;

    background:#fff;

    box-shadow:0 5px 20px rgba(13,59,110,0.12);
}

.gallery-item img{
    width:100%;
    height:230px;
    object-fit:cover;

    display:block;

    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, #081c3a, #050e1f);
    color: white;
    padding: 65px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: flex-start;
    padding-bottom: 50px;
}

.footer-logo {
    width: 85px;
    margin-bottom: 16px;
    border-radius: 6px;
}

.footer-col h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
    letter-spacing: 0.5px;
}

.footer-col h3::after {
    content: '';
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, #1565c0, #64b5f6);
    display: block;
    margin-top: 8px;
    border-radius: 2px;
}

.footer-col p {
    color: #94a3b8;
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #94a3b8;
    font-size: 13.5px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #64b5f6;
    padding-left: 4px;
}

.footer-social a {
    color: #94a3b8;
    margin-right: 16px;
    font-size: 17px;
    transition: 0.3s;
    display: inline-block;
}

.footer-social a:hover {
    color: #64b5f6;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    font-size: 13px;
    color: #64748b;
    letter-spacing: 0.3px;
}

/* What's App  */
.floating-whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    z-index:9999;
    transition:0.3s;
}

.floating-whatsapp:hover{
    transform:scale(1.1);
}

/* Hamburger */

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#1565c0;
    z-index:1100;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:35px;
}

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

/* ---------- Large Tablets ---------- */
@media (max-width: 992px) {

    .container{
        width:92%;
        margin:auto;
    }

    h1{
        font-size:36px !important;
    }

    h2{
        font-size:28px;
    }

    p{
        font-size:15px;
    }

    /* About */

    .about-cards{
        justify-content:center;
        gap:20px;
    }

    .about-card{
        width:45%;
    }

    /* Hero */

    .hero-content{
        gap:35px;
    }

    .hero-text h1{
        font-size:44px;
    }

    .hero-images{
        max-width:400px;
    }

    /* Products */

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

    .product-row{
        gap:35px;
    }

    /* Why Choose */

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

    /* Quality */

    .features{
        justify-content:center;
    }

    .feature-box{
        width:45%;
    }

    .quality-container{
        grid-template-columns:1fr;
        padding:0 5% 70px;
    }

    /* Gallery */

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

    /* Contact */

    .contact-wrapper{
        grid-template-columns:1fr;
        margin:0 5% 90px;
    }

    .contact-form{
        margin-top:20px;
    }

    /* Footer */

    .footer-container{
        flex-wrap:wrap;
        gap:30px;
    }

}


/* ---------- Mobile ---------- */

@media (max-width:768px){

    body{
        overflow-x:hidden;
    }

    .container{
        width:92%;
        margin:auto;
    }

    section{
        overflow:hidden;
    }

    /* Navbar */

    .nav{
        flex-wrap:wrap;
    }

    .logo img{
        width:60px;
        height:60px;
    }

    .logo h2{
        font-size:24px;
    }

    .menu-toggle{
        display:block;
    }

    .nav-menu{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        background:#fff;
        box-shadow:0 15px 25px rgba(13,59,110,0.15);
        padding:10px 6%;
    }

    .nav-menu.active{
        display:flex;
    }

    .nav-menu ul{
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        width:100%;
    }

    .nav-menu ul li{
        width:100%;
        padding:12px 0;
        border-bottom:1px solid rgba(13,59,110,0.08);
    }

    .nav-menu .contact-btn{
        display:block;
        width:100%;
        text-align:center;
        margin:14px 0;
    }

    /* Hero */

    .hero{
        min-height:auto;
    }

    .hero-content{
        flex-direction:column;
        padding:50px 0 70px;
        gap:40px;
        text-align:center;
    }

    .hero-text{
        text-align:center;
    }

    .description{
        margin-left:auto;
        margin-right:auto;
    }

    .buttons{
        justify-content:center;
    }

    .small-heading{
        font-size:32px;
    }

    .hero-text h1{
        font-size:34px;
    }

    .hero-images{
        max-width:320px;
        margin:0 auto;
    }

    .reverse-u{
        width:145px;
        height:200px;
        top:-18px;
        right:18px;
    }

    .q1,
    .q3,
    .q4{
        width:140px;
        height:140px;
    }

    .q1{
        top:18px;
        left:18px;
    }

    .q3{
        bottom:18px;
        left:18px;
    }

    .q4{
        bottom:18px;
        right:18px;
    }

    /* Products */

    .product-row,
    .product-row.reverse{
        flex-direction:column;
        gap:25px;
        margin-bottom:50px;
    }

    .product-image img{
        height:auto;
        max-height:280px;
    }

    .product-box{
        padding:26px;
        width:100%;
    }

    /* Why Choose */

    .why-banner-grid{
        grid-template-columns:1fr;
    }

    /* Certifications */

    .certificate-card{
        width:100%;
        max-width:340px;
    }

    /* Journey */

    .journey-section{
        padding:60px 5%;
    }

    .journey-card:nth-child(1),
    .journey-card:nth-child(2),
    .journey-card:nth-child(3),
    .journey-card:nth-child(4){
        width:100%;
        max-width:320px;
        min-height:auto;
    }

    /* Banner Headings */

    .section-title,
    .contact-header,
    .standards,
    .gallery h1{
        height:auto;
        padding:70px 20px;
        background-attachment:scroll;
    }

    h1,
    .about-section h1,
    .section-title h1,
    .contact-header h1,
    .gallery h1,
    .standards h1{
        font-size:32px !important;
    }

    /* White Content Boxes */

    .about-text,
    .standards-text,
    .contact-text,
    .section-title p{
        width:100%;
        max-width:100%;
        padding:18px;
        font-size:15px;
    }

    /* About */

    .about-cards{
        flex-direction:column;
        align-items:center;
    }

    .about-card{
        width:100%;
        max-width:350px;
    }

    /* Products */

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

    .product-card{
        width:100%;
    }

    .product-btn{
        width:fit-content;
        margin:20px auto 0;
    }

    /* Quality */

    .feature-title{
        font-size:24px;
    }

    .features{
        flex-direction:column;
        align-items:center;
    }

    .feature-box{
        width:100%;
        max-width:350px;
    }

    .quality-container{
        grid-template-columns:1fr;
        padding:0 20px 60px;
    }

    .quality-box{
        width:100%;
    }

    /* Gallery */

    .gallery-container{
        width:92%;
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:220px;
    }

    /* Contact */

    .contact-wrapper{
        grid-template-columns:1fr;
        margin:0 4% 60px;
        padding:0;
    }

    .contact-form{
        padding:25px;
    }

    .info-card{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }

    .map-section iframe{
        height:320px;
    }

    /* Footer */

    .footer-container{
        flex-direction:column;
        text-align:center;
    }

}


/* ---------- Small Mobile ---------- */

@media (max-width:480px){

    h1,
    .about-section h1,
    .section-title h1,
    .contact-header h1,
    .gallery h1,
    .standards h1{
        font-size:28px !important;
    }

    p{
        font-size:14px;
        line-height:1.7;
    }

    .about-card,
    .feature-box,
    .quality-box,
    .contact-form{
        padding:20px;
    }

    .gallery-item img{
        height:190px;
    }

    .product-btn{
        width:100%;
        text-align:center;
    }

    .hero-images{
        max-width:260px;
    }

    .reverse-u{
        width:115px;
        height:160px;
        top:-14px;
        right:14px;
    }

    .q1,
    .q3,
    .q4{
        width:112px;
        height:112px;
    }

    .q1{
        top:14px;
        left:14px;
    }

    .q3{
        bottom:14px;
        left:14px;
    }

    .q4{
        bottom:14px;
        right:14px;
    }

    .hero-text h1{
        font-size:28px;
    }

    .small-heading{
        font-size:26px;
    }

    .buttons{
        flex-direction:column;
        width:100%;
    }

    .buttons a{
        text-align:center;
        width:100%;
    }

    .journey-card:nth-child(1),
    .journey-card:nth-child(2),
    .journey-card:nth-child(3),
    .journey-card:nth-child(4){
        max-width:100%;
    }

    .logo h2{
        font-size:22px;
    }

    .logo img{
        width:60px;
        height:60px;
    }

    .certificate-card{
        max-width:100%;
    }

    .map-section iframe{
        height:280px;
    }

}