/*========================================
    GOOGLE FONTS
========================================*/

:root{

    --primary:#0A4D8C;
    --secondary:#00BCD4;
    --accent:#F4B400;

    --dark:#1E293B;
    --light:#F8FAFC;
    --white:#ffffff;

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

    --radius:18px;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;
    background:var(--light);
    color:var(--dark);
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:min(1180px,92%);
    margin:auto;

}

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

.header{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    z-index:999;

    backdrop-filter:blur(14px);

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

    border-bottom:1px solid rgba(255,255,255,.4);

    transition:.4s;

}

.header .container{

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

    height:80px;

}

.logo img{

    height:55px;

}

.navbar{

    display:flex;
    gap:35px;

}

.navbar a{

    color:var(--dark);

    font-weight:600;

    position:relative;

}

.navbar a::after{

    content:'';

    position:absolute;

    width:0;

    left:0;

    bottom:-8px;

    height:3px;

    background:var(--primary);

    transition:.3s;

}

.navbar a:hover::after{

    width:100%;

}

.call-btn{

    background:var(--primary);

    color:white;

    padding:14px 22px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.call-btn:hover{

    background:var(--secondary);

}

.menu-btn{

    display:none;

    font-size:28px;

    cursor:pointer;

}

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

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:url("../images/hero-1.jpg") center/cover;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to right,
    rgba(10,77,140,.92),
    rgba(10,77,140,.65),
    rgba(0,0,0,.15));

}

.hero-content{

    position:relative;

    z-index:10;

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:70px;

    align-items:center;

}

.tagline{

    display:inline-block;

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

    color:white;

    padding:10px 20px;

    border-radius:50px;

    backdrop-filter:blur(10px);

    margin-bottom:25px;

}

.hero h1{

    font-family:'Poppins',sans-serif;

    color:white;

    font-size:65px;

    line-height:1.1;

    margin-bottom:25px;

}

.hero p{

    color:white;

    font-size:20px;

    max-width:650px;

    margin-bottom:40px;

}

/*========================================
BUTTONS
========================================*/

.hero-buttons{

    display:flex;
    gap:20px;

}

.btn{

    background:var(--accent);

    color:#222;

    padding:18px 36px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.btn:hover{

    transform:translateY(-4px);

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

}

.btn-outline{

    background:transparent;

    border:2px solid white;

    color:white;

}

.btn-outline:hover{

    background:white;

    color:var(--primary);

}

/*========================================
HERO CARD
========================================*/

.hero-card{

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

    backdrop-filter:blur(20px);

    padding:40px;

    border-radius:25px;

    color:white;

    box-shadow:var(--shadow);

}

.hero-card h3{

    margin-bottom:25px;

    font-size:28px;

}

.hero-card li{

    margin:18px 0;

    font-size:18px;

}

.hero-card i{

    color:#7CFC00;

    margin-right:12px;

}

/*========================================
TRUST SECTION
========================================*/

.trust{

    margin-top:-90px;

    position:relative;

    z-index:50;

    padding-bottom:80px;

}

.trust-grid{

    display:grid;

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

    gap:30px;

}

.trust-card{

    background:white;

    padding:40px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.trust-card:hover{

    transform:translateY(-10px);

}

.trust-card i{

    font-size:45px;

    color:var(--primary);

    margin-bottom:20px;

}

.trust-card h3{

    margin-bottom:15px;

    font-family:'Poppins',sans-serif;

}

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

section{

    padding:100px 0;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    font-family:'Poppins',sans-serif;

    color:var(--primary);

}

.section-title p{

    margin-top:15px;

    color:#666;

}

/*========================================
SCROLLBAR
========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:10px;

}

::-webkit-scrollbar-track{

    background:#e9eef4;

}

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

.about{

    background:#fff;

}

.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    overflow:hidden;

    border-radius:24px;

    box-shadow:var(--shadow);

}

.about-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.about-image:hover img{

    transform:scale(1.05);

}

.about-tag{

    display:inline-block;

    background:#E6F3FF;

    color:var(--primary);

    padding:8px 18px;

    border-radius:50px;

    font-weight:600;

    margin-bottom:20px;

}

.about-content h3{

    font-size:40px;

    margin-bottom:25px;

    font-family:'Poppins',sans-serif;

}

.about-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:20px;

}

.about-features{

    display:grid;

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

    gap:18px;

    margin-top:35px;

}

.feature{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

}

.feature i{

    color:#28A745;

}

/*========================================
STATISTICS
========================================*/

.stats{

    background:linear-gradient(135deg,#0A4D8C,#0086C9);

    color:white;

}

.stats-grid{

    display:grid;

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

    gap:30px;

}

.stat-card{

    text-align:center;

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

    backdrop-filter:blur(10px);

    padding:40px;

    border-radius:20px;

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-10px);

}

.stat-card i{

    font-size:45px;

    margin-bottom:20px;

    color:#FFD54F;

}

.stat-card h2{

    font-size:48px;

    margin-bottom:10px;

    font-family:'Poppins',sans-serif;

}

.stat-card p{

    font-size:17px;

}

/*========================================
SERVICES
========================================*/

.services{

    background:#F7FAFC;

}

.services-grid{

    display:grid;

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

    gap:35px;

}

.service-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

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

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-12px);

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

}

.service-card img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.5s;

}

.service-card:hover img{

    transform:scale(1.08);

}

.service-content{

    padding:30px;

}

.service-content h3{

    font-family:'Poppins',sans-serif;

    color:var(--primary);

    margin-bottom:15px;

    font-size:24px;

}

.service-content p{

    color:#666;

    line-height:1.7;

}

/*========================================
BRANDS
========================================*/

.brands{

    background:linear-gradient(135deg,#071B32,#0A4D8C);

    color:#fff;

}

.section-title.light h2{

    color:#fff;

}

.section-title.light p{

    color:#d7e8ff;

}

.brands-wrapper{

    display:grid;

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

    gap:35px;

    margin-top:60px;

}

.brand-box{

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

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:24px;

    padding:45px;

    text-align:center;

    transition:.35s;

}

.brand-box:hover{

    transform:translateY(-10px);

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

}

.brand-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

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

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:40px;

    color:#FFD54F;

    margin-bottom:25px;

}

.brand-box h3{

    font-size:30px;

    margin-bottom:30px;

    font-family:'Poppins',sans-serif;

}

.brand-list{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

}

.brand-list span{

    padding:12px 22px;

    border-radius:40px;

    background:white;

    color:#0A4D8C;

    font-weight:700;

    transition:.3s;

}

.brand-list span:hover{

    background:#FFD54F;

}

.genuine-box{

    margin-top:60px;

    background:#FFD54F;

    color:#222;

    padding:25px 35px;

    border-radius:18px;

    font-size:18px;

    font-weight:600;

    text-align:center;

}

.genuine-box i{

    margin-right:12px;

    color:#28A745;

}

/*========================================
TECHNOLOGY
========================================*/

.technology{

    background:#fff;

}

.tech-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

    margin:80px 0;

}

.tech-row.reverse{

    direction:rtl;

}

.tech-row.reverse .tech-content{

    direction:ltr;

}

.tech-image{

    overflow:hidden;

    border-radius:24px;

    box-shadow:var(--shadow);

}

.tech-image img{

    width:100%;

    height:420px;

    object-fit:cover;

    transition:.5s;

}

.tech-image:hover img{

    transform:scale(1.05);

}

.tech-tag{

    display:inline-block;

    background:#E8F4FF;

    color:var(--primary);

    padding:10px 18px;

    border-radius:50px;

    font-weight:600;

    margin-bottom:20px;

}

.tech-content h3{

    font-size:38px;

    margin-bottom:20px;

    font-family:'Poppins',sans-serif;

    color:var(--primary);

}

.tech-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:25px;

}

.tech-content ul{

    list-style:none;

}

.tech-content li{

    margin:18px 0;

    font-size:18px;

    display:flex;

    align-items:center;

}

.tech-content li i{

    color:#28A745;

    margin-right:12px;

}

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

.gallery{

    background:#F7FAFC;

}

.gallery-grid{

    display:grid;

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

    grid-auto-rows:250px;

    gap:18px;

}

.gallery-item{

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

    position:relative;

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

}

.gallery-item img{

    width:100%;
    height:100%;
    object-fit:cover;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item::after{

    content:"View";

    position:absolute;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(10,77,140,.45);

    color:white;

    font-size:22px;

    font-weight:600;

    opacity:0;

    transition:.3s;

}

.gallery-item:hover::after{

    opacity:1;

}

.gallery-item.tall{

    grid-row:span 2;

}

.gallery-item.wide{

    grid-column:span 2;

}

/*==============================
LIGHTBOX
==============================*/

.lightbox{

    position:fixed;

    inset:0;

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

    display:none;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.lightbox img{

    width:90%;

    max-width:1100px;

    max-height:85vh;

    border-radius:15px;

}

.close-lightbox{

    position:absolute;

    top:25px;

    right:35px;

    color:white;

    font-size:45px;

    cursor:pointer;

}

/*========================================
APPOINTMENT
========================================*/

.appointment{

    background:linear-gradient(135deg,#0A4D8C,#0085C8);

}

.appointment-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.appointment-info{

    color:white;

}

.appointment-tag{

    display:inline-block;

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

    padding:10px 18px;

    border-radius:40px;

    margin-bottom:20px;

}

.appointment-info h2{

    font-size:46px;

    line-height:1.2;

    margin-bottom:25px;

    font-family:Poppins;

}

.appointment-info p{

    line-height:1.8;

    margin-bottom:35px;

}

.appointment-points{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

}

.appointment-points div{

    display:flex;

    gap:10px;

    align-items:center;

}

.appointment-points i{

    color:#FFD54F;

}

/* Form */

.appointment-form{

    background:white;

    padding:45px;

    border-radius:24px;

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

}

.appointment-form h3{

    text-align:center;

    margin-bottom:30px;

    color:var(--primary);

    font-family:Poppins;

}

.appointment-form form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.appointment-form input,
.appointment-form textarea{

    padding:16px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:16px;

    outline:none;

}

.appointment-form input:focus,
.appointment-form textarea:focus{

    border-color:var(--primary);

}

.appointment-form button{

    border:none;

    cursor:pointer;

}

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

.contact{

    background:#fff;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:45px;

    align-items:stretch;

}

.contact-card{

    background:linear-gradient(135deg,#0A4D8C,#0870BF);

    color:white;

    padding:45px;

    border-radius:24px;

    box-shadow:var(--shadow);

}

.contact-card h3{

    font-size:32px;

    margin-bottom:30px;

    font-family:Poppins;

}

.contact-card p{

    margin-bottom:25px;

    line-height:1.8;

}

.contact-card i{

    color:#FFD54F;

    margin-right:10px;

}

.contact-card a{

    color:white;

}

.contact-buttons{

    display:flex;

    gap:15px;

    margin-top:30px;

}

.map-box{

    overflow:hidden;

    border-radius:24px;

    box-shadow:var(--shadow);

}

.map-box iframe{

    width:100%;

    height:100%;

    min-height:480px;

    border:none;

}

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

.footer{

    background:#071B32;

    color:#fff;

    padding:70px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:40px;

}

.footer h3,
.footer h4{

    margin-bottom:20px;

    font-family:Poppins;

}

.footer ul{

    padding:0;

}

.footer li{

    margin:12px 0;

    color:#ddd;

}

.footer p{

    color:#ddd;

    line-height:1.8;

}

.footer hr{

    margin:40px 0 20px;

    border:none;

    border-top:1px solid rgba(255,255,255,.1);

}

.copyright{

    text-align:center;

    color:#bbb;

}