/* ============================================================
   MetaTechX Enterprise Appointment Platform
   Main Stylesheet
   Version : 2.0
============================================================ */

/* ===========================
   RESET
=========================== */

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

html{
    scroll-behavior:smooth;
}

body{

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

    background:#071B36;

    color:#ffffff;

    overflow-x:hidden;

    line-height:1.6;

}

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

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{

    background:#081C38;

}

::-webkit-scrollbar-thumb{

    background:#FF7A00;

    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:#ff9338;

}

/* ===========================
   CONTAINER
=========================== */

.container{

    width:min(90%,1300px);

    margin:auto;

}

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

a{

    text-decoration:none;

    color:inherit;

}

img{

    max-width:100%;

    display:block;

}

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

section{

    padding:90px 0;

    position:relative;

}

/* ===========================
   HEADINGS
=========================== */

h1{

    font-size:64px;

    font-weight:800;

    line-height:1.15;

}

h2{

    font-size:42px;

    margin-bottom:20px;

    font-weight:700;

}

h3{

    font-size:24px;

    margin-bottom:15px;

}

p{

    opacity:.9;

    font-size:17px;

}

/* ==========================================================
   LOADER
========================================================== */

#loader{

    position:fixed;

    inset:0;

    background:#071B36;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.loader-circle{

    width:90px;

    height:90px;

    border-radius:50%;

    border:6px solid rgba(255,255,255,.15);

    border-top-color:#FF7A00;

    animation:spin 1s linear infinite;

    margin-bottom:25px;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

/* ==========================================================
   NAVBAR
========================================================== */

header{

    position:fixed;

    top:0;

    width:100%;

    z-index:1000;

    backdrop-filter:blur(16px);

    background:rgba(7,27,54,.82);

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

}

.navbar{

    height:82px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo{

    font-size:30px;

    font-weight:800;

    color:#ffffff;

}

.nav-links{

    display:flex;

    gap:30px;

    list-style:none;

}

.nav-links a{

    transition:.35s;

    font-weight:500;

}

.nav-links a:hover{

    color:#FF7A00;

}

.hamburger{

    display:none;

    font-size:28px;

    cursor:pointer;

}

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

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 34px;

    border-radius:50px;

    background:#FF7A00;

    color:#fff;

    font-weight:700;

    transition:.35s;

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

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(255,122,0,.45);

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 34px;

    border-radius:50px;

    border:2px solid #FF7A00;

    color:#fff;

    transition:.35s;

}

.btn-outline:hover{

    background:#FF7A00;

}

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

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    background:
    radial-gradient(circle at top right,
    rgba(255,122,0,.12),
    transparent 40%);

}

.hero .container{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:70px;

}

.hero p{

    margin:30px 0;

    max-width:620px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:25px;

}

.hero-right{

    display:grid;

    gap:25px;

}

/* ==========================================================
   GLASS CARD
========================================================== */

.glass-card{

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

    backdrop-filter:blur(18px);

    border-radius:24px;

    padding:35px;

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

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

    transition:.35s;

}

.glass-card:hover{

    transform:translateY(-8px);

}

/* ==========================================================
   STATS
========================================================== */

.stats{

    background:#0A2244;

}

.stats .container{

    display:grid;

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

    gap:25px;

}

.stat{

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

    border-radius:22px;

    text-align:center;

    padding:35px;

}

.stat h2{

    color:#FF7A00;

    margin-bottom:10px;

}

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

#services{
    background:#071B36;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:50px;
}

.service-card{

    position:relative;

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

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

    border-radius:24px;

    padding:40px 30px;

    transition:.4s;

    overflow:hidden;

    backdrop-filter:blur(15px);

    cursor:pointer;

}

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(135deg,
    rgba(255,122,0,.15),
    transparent);

    opacity:0;

    transition:.4s;

}

.service-card:hover::before{

    opacity:1;

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:#FF7A00;

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

}

.service-card i{

    font-size:50px;

    color:#FF7A00;

    margin-bottom:25px;

}

.service-card h3{

    margin-bottom:18px;

}

.service-card p{

    opacity:.85;

}

/* ==========================================================
   INDUSTRIES
========================================================== */

#industries{

    background:#0A2244;

}

.industry-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:30px;

    margin-top:45px;

}

.industry-card{

    padding:35px;

    border-radius:22px;

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

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

    text-align:center;

    transition:.35s;

}

.industry-card:hover{

    transform:translateY(-8px);

    border-color:#FF7A00;

}

.industry-card img{

    width:80px;

    margin:auto;

    margin-bottom:20px;

}

/* ==========================================================
   WHY CHOOSE US
========================================================== */

#why{

    background:#071B36;

}

.features-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

    margin-top:45px;

}

.feature{

    display:flex;

    gap:20px;

    align-items:flex-start;

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

    padding:30px;

    border-radius:20px;

    transition:.3s;

}

.feature:hover{

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

}

.feature i{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#FF7A00;

    color:#fff;

    font-size:28px;

}

/* ==========================================================
   PROCESS TIMELINE
========================================================== */

.timeline{

    position:relative;

    margin-top:70px;

}

.timeline::before{

    content:"";

    position:absolute;

    left:50%;

    width:4px;

    top:0;

    bottom:0;

    background:#FF7A00;

    transform:translateX(-50%);

}

.timeline-item{

    width:50%;

    padding:25px 45px;

    position:relative;

}

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

    left:0;

    text-align:right;

}

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

    left:50%;

}

.timeline-card{

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

    padding:30px;

    border-radius:20px;

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

}

.timeline-number{

    position:absolute;

    top:40px;

    width:48px;

    height:48px;

    border-radius:50%;

    background:#FF7A00;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-weight:700;

}

.timeline-item:nth-child(odd) .timeline-number{

    right:-24px;

}

.timeline-item:nth-child(even) .timeline-number{

    left:-24px;

}

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

#booking{

    background:#0A2244;

}

#bookingForm{

    margin-top:50px;

    display:grid;

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

    gap:25px;

}

#bookingForm input,
#bookingForm select,
#bookingForm textarea{

    width:100%;

    padding:18px 22px;

    border:none;

    outline:none;

    border-radius:15px;

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

    color:#fff;

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

    transition:.3s;

}

#bookingForm textarea{

    min-height:170px;

    resize:vertical;

    grid-column:1/-1;

}

#bookingForm input:focus,
#bookingForm select:focus,
#bookingForm textarea:focus{

    border-color:#FF7A00;

    box-shadow:0 0 0 4px rgba(255,122,0,.15);

}

#bookingForm button{

    grid-column:1/-1;

    justify-self:center;

    margin-top:10px;

}

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

#slotContainer{

    grid-column:1/-1;

    display:flex;

    flex-wrap:wrap;

    gap:15px;

}

.slot-btn{

    padding:12px 22px;

    border-radius:40px;

    border:2px solid rgba(255,255,255,.15);

    cursor:pointer;

    transition:.3s;

    background:transparent;

    color:#fff;

}

.slot-btn:hover{

    background:#FF7A00;

    border-color:#FF7A00;

}

.slot-btn.active{

    background:#FF7A00;

    border-color:#FF7A00;

}

.slot-btn.booked{

    background:#666;

    cursor:not-allowed;

    opacity:.45;

}

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

#contact{

    background:#071B36;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

    margin-top:45px;

}

.contact-card{

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

    border-radius:22px;

    padding:35px;

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

}

.contact-card i{

    font-size:36px;

    color:#FF7A00;

    margin-bottom:20px;

}

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

footer{

    background:#041326;

    padding:70px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:35px;

}

.footer-links{

    list-style:none;

}

.footer-links li{

    margin:12px 0;

}

.footer-links a{

    opacity:.8;

    transition:.3s;

}

.footer-links a:hover{

    color:#FF7A00;

    opacity:1;

}

.copyright{

    text-align:center;

    margin-top:45px;

    padding-top:25px;

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

}

/* ==========================================================
   FLOATING WHATSAPP
========================================================== */

.whatsapp-float{

    position:fixed;

    right:30px;

    bottom:30px;

    width:64px;

    height:64px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    z-index:999;

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

    transition:.3s;

}

.whatsapp-float:hover{

    transform:scale(1.08);

}

/* ==========================================================
   SCROLL TO TOP
========================================================== */

#scrollTop{

    position:fixed;

    right:30px;

    bottom:110px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#FF7A00;

    color:#fff;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:998;

}

#scrollTop.show{

    opacity:1;

    visibility:visible;

}

/* ==========================================================
   TOAST
========================================================== */

.toast-container{

    position:fixed;

    top:100px;

    right:25px;

    z-index:9999;

}

.toast{

    width:340px;

    padding:18px 20px;

    margin-bottom:15px;

    border-radius:14px;

    background:#102B52;

    border-left:5px solid #FF7A00;

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

    animation:toastIn .35s ease;

}

.toast.success{

    border-left-color:#18c964;

}

.toast.error{

    border-left-color:#ff4d4f;

}

/* ==========================================================
   MODAL
========================================================== */

.modal{

    position:fixed;

    inset:0;

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

    display:none;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.modal.active{

    display:flex;

}

.modal-content{

    width:min(700px,92%);

    background:#102B52;

    border-radius:24px;

    padding:40px;

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

}

/* ==========================================================
   UTILITIES
========================================================== */

.text-center{

    text-align:center;

}

.mt-20{

    margin-top:20px;

}

.mt-40{

    margin-top:40px;

}

.mt-60{

    margin-top:60px;

}

.mb-20{

    margin-bottom:20px;

}

.mb-40{

    margin-bottom:40px;

}

.hidden{

    display:none!important;

}

.flex{

    display:flex;

}

.grid{

    display:grid;

}

.shadow{

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

}

.rounded{

    border-radius:20px;

}

.orange{

    color:#FF7A00;

}

.bg-orange{

    background:#FF7A00;

}

.bg-primary{

    background:#071B36;

}

.bg-secondary{

    background:#0A2244;
}

.summary-table{

width:100%;

border-collapse:collapse;

margin-top:20px;

}

.summary-table td{

padding:12px;

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

}

.summary-table td:first-child{

font-weight:700;

color:#FF7A00;

width:180px;

}

.no-slots{

padding:25px;

text-align:center;

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

border-radius:15px;

color:#aaa;

font-weight:600;

}

.no-slots{

padding:20px;

text-align:center;

border:1px dashed rgba(255,255,255,.15);

border-radius:10px;

color:#9CA3AF;

font-size:14px;

}

.slot-btn{

padding:12px 18px;

margin:6px;

border:none;

border-radius:8px;

cursor:pointer;

transition:.25s;

background:#163A67;

color:#fff;

}

.slot-btn:hover{

background:#FF7A00;

}

.slot-btn.active{

background:#FF7A00;

transform:scale(1.05);

}






.feature-section{

width:100%;
padding:80px 20px;
background:#071B36;

}

.feature-card{

max-width:1400px;
margin:auto;

display:flex;
align-items:center;

background:#0D2146;

border-radius:35px;

overflow:hidden;

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

}

.feature-image{

width:50%;

}

.feature-image img{

width:100%;
display:block;

height:100%;
object-fit:cover;

}

.feature-content{

width:50%;

padding:70px;

color:#fff;

}

.tag{

display:inline-block;

padding:10px 20px;

background:#ff7a00;

color:#fff;

border-radius:40px;

font-size:14px;

font-weight:600;

margin-bottom:25px;

}

.feature-content h2{

font-size:58px;

line-height:1.1;

margin-bottom:25px;

font-weight:700;

}

.feature-content p{

font-size:20px;

line-height:1.8;

color:#C8D0DD;

margin-bottom:40px;

}

.feature-btn{

display:inline-flex;

align-items:center;

gap:12px;

padding:18px 40px;

background:linear-gradient(90deg,#FF8A00,#FF5F00);

border-radius:15px;

text-decoration:none;

color:white;

font-weight:600;

font-size:20px;

transition:.35s;

}

.feature-btn:hover{

transform:translateY(-5px);

box-shadow:0 15px 40px rgba(255,122,0,.4);

}

@media(max-width:900px){

.feature-card{

flex-direction:column;

}

.feature-image{

width:100%;

}

.feature-content{

width:100%;

padding:40px 25px;

}

.feature-content h2{

font-size:36px;

}

}