/* ==========================================================
MetaTechX LLP
Professional Steel Industry Portal
style.css
========================================================== */

/* -----------------------------
RESET
------------------------------ */

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

html{
scroll-behavior:smooth;
}

body{

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

background:#071B36;

color:#ffffff;

line-height:1.6;

overflow-x:hidden;

}

/* -----------------------------
CONTAINER
------------------------------ */

.container{

width:92%;

max-width:1400px;

margin:auto;

}

/* -----------------------------
HEADINGS
------------------------------ */

h1{

font-size:58px;

font-weight:700;

line-height:1.2;

}

h2{

font-size:42px;

margin-bottom:25px;

font-weight:700;

text-align:center;

}

h3{

font-size:24px;

font-weight:600;

margin-bottom:15px;

}

p{

color:#d9d9d9;

}

/* -----------------------------
LINKS
------------------------------ */

a{

text-decoration:none;

color:inherit;

}

/* -----------------------------
BUTTONS
------------------------------ */

.btn-primary{

display:inline-block;

padding:15px 38px;

background:#ff7b00;

color:#fff;

border-radius:8px;

font-weight:600;

transition:.35s;

border:none;

cursor:pointer;

}

.btn-primary:hover{

background:#ff9800;

transform:translateY(-3px);

box-shadow:0 10px 30px rgba(255,123,0,.35);

}

.btn-outline{

display:inline-block;

padding:15px 38px;

border:2px solid #ff7b00;

border-radius:8px;

color:#fff;

transition:.35s;

font-weight:600;

}

.btn-outline:hover{

background:#ff7b00;

}

/* -----------------------------
LOADER
------------------------------ */

#loader{

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

background:#071B36;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

z-index:99999;

}

.loader-circle{

width:80px;

height:80px;

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

border-top:6px solid #ff7b00;

border-radius:50%;

animation:spin 1s linear infinite;

margin-bottom:25px;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

/* -----------------------------
HEADER
------------------------------ */

header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:999;

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

backdrop-filter:blur(12px);

box-shadow:0 5px 20px rgba(0,0,0,.2);

}

.navbar{

height:85px;

display:flex;

align-items:center;

justify-content:space-between;

width:92%;

max-width:1400px;

margin:auto;

}

.logo img{

height:60px;

width:auto;

}

.nav-links{

display:flex;

list-style:none;

gap:35px;

align-items:center;

}

.nav-links a{

font-weight:500;

transition:.3s;

}

.nav-links a:hover{

color:#ff9800;

}

.hamburger{

display:none;

font-size:28px;

cursor:pointer;

}

/* -----------------------------
HERO
------------------------------ */

.hero{

padding-top:150px;

padding-bottom:120px;

background:

linear-gradient(rgba(7,27,54,.88),

rgba(7,27,54,.90)),

url("../images/hero-bg.jpg")

center/cover;

}

.hero .container{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.hero-left p{

margin:30px 0;

font-size:20px;

max-width:620px;

}

.hero-buttons{

display:flex;

gap:20px;

margin-top:30px;

}

.hero-image{

width:100%;

animation:float 5s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0);

}

}

/* -----------------------------
STATISTICS
------------------------------ */

.stats{

padding:80px 0;

background:#081f42;

}

.stats .container{

display:grid;

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

gap:30px;

}

.stat{

background:#102d5d;

padding:40px;

border-radius:18px;

text-align:center;

transition:.3s;

}

.stat:hover{

transform:translateY(-8px);

}

.stat h2{

color:#ff9800;

margin-bottom:10px;

}

/* -----------------------------
SERVICES
------------------------------ */

#consultancy{

padding:120px 0;

}

.services-grid{

display:grid;

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

gap:30px;

margin-top:60px;

}

.service-card{

background:#0f2955;

padding:45px;

border-radius:18px;

text-align:center;

transition:.35s;

}

.service-card:hover{

transform:translateY(-12px);

background:#123467;

}

.service-card i{

font-size:48px;

color:#ff9800;

margin-bottom:25px;

}

.service-card p{

margin-top:15px;

}

/* -----------------------------
TRAINING
------------------------------ */

.feature-section{

padding:120px 0;

background:#081f42;

}

.feature-card{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

align-items:center;

background:#102d5d;

padding:50px;

border-radius:25px;

}

.feature-image img{

width:100%;

border-radius:18px;

}

.feature-content p{

margin:25px 0;

}

/* -----------------------------
FORMS
------------------------------ */

input,
select,
textarea{

width:100%;

padding:16px;

margin-bottom:18px;

border-radius:8px;

border:1px solid #365b93;

background:#0e2448;

color:#fff;

font-size:16px;

font-family:Poppins,sans-serif;

}

input:focus,
select:focus,
textarea:focus{

outline:none;

border-color:#ff9800;

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

}

.form-grid{

display:grid;

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

gap:20px;

}

.registration-card{

background:#102d5d;

padding:45px;

border-radius:20px;

max-width:1000px;

margin:auto;

}



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

.assessment-section{

padding:120px 0;

background:#071B36;

}

.section-description{

text-align:center;

max-width:850px;

margin:0 auto 50px;

font-size:18px;

color:#d0d8e8;

}

.quiz-section{

padding:60px 0;

max-width:1000px;

margin:auto;

}

.question-card{

background:#102d5d;

border-radius:20px;

padding:40px;

margin-bottom:35px;

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

}

.question-card h3{

font-size:24px;

margin-bottom:25px;

color:#fff;

}

.option{

display:block;

padding:18px 22px;

margin-bottom:15px;

border-radius:12px;

background:#183d76;

cursor:pointer;

transition:.3s;

border:2px solid transparent;

}

.option:hover{

background:#ff9800;

color:#fff;

transform:translateX(8px);

}

.option input{

margin-right:12px;

width:auto;

}

/* ==========================================================
TIMER
========================================================== */

.timer{

position:sticky;

top:90px;

z-index:99;

width:240px;

margin:30px auto;

padding:18px;

background:#ff9800;

color:#fff;

font-size:24px;

font-weight:700;

text-align:center;

border-radius:50px;

box-shadow:0 10px 25px rgba(255,152,0,.35);

}

/* ==========================================================
RESULT
========================================================== */

.result-section{

padding:70px 0;

text-align:center;

}

.result-card{

max-width:700px;

margin:auto;

padding:45px;

background:#102d5d;

border-radius:20px;

}

.score{

font-size:70px;

font-weight:700;

color:#ff9800;

margin:25px 0;

}

.grade{

font-size:30px;

font-weight:600;

margin-bottom:20px;

}

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

.certificate{

width:1100px;

max-width:100%;

margin:50px auto;

background:#ffffff;

color:#222;

padding:35px;

border-radius:12px;

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

}

.cert-border{

border:12px solid #c89d36;

padding:50px;

text-align:center;

}

.cert-logo img{

max-width:280px;

margin-bottom:25px;

}

.cert-title{

font-size:48px;

font-weight:700;

color:#0d2d63;

letter-spacing:2px;

margin-bottom:20px;

}

.cert-subtitle{

font-size:20px;

margin:20px 0;

color:#555;

}

.cert-name{

font-size:48px;

font-weight:700;

color:#000;

margin:25px 0;

}

.cert-course{

font-size:30px;

font-weight:600;

margin:20px 0;

color:#0d2d63;

}

.cert-category{

font-size:22px;

margin-bottom:25px;

color:#555;

}

.grade-box{

display:inline-block;

padding:16px 40px;

background:#0d2d63;

color:#fff;

border-radius:10px;

font-size:28px;

font-weight:700;

margin:25px 0;

}

.cert-details{

display:flex;

justify-content:space-between;

margin-top:40px;

font-size:18px;

}

.signature-section{

display:flex;

justify-content:space-around;

margin-top:70px;

text-align:center;

}

.signature-section img{

height:70px;

width:auto;

margin-bottom:12px;

}

.certificate-actions{

display:flex;

justify-content:center;

gap:20px;

margin:40px 0;

}

/* ==========================================================
BOOKING
========================================================== */

#booking{

padding:120px 0;

background:#081f42;

}

#bookingForm{

max-width:1000px;

margin:auto;

background:#102d5d;

padding:45px;

border-radius:20px;

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

}

#slotContainer{

display:grid;

grid-template-columns:repeat(auto-fill,minmax(150px,1fr));

gap:15px;

margin:25px 0;

}

.slot{

padding:15px;

text-align:center;

background:#183d76;

border-radius:10px;

cursor:pointer;

transition:.3s;

}

.slot:hover{

background:#ff9800;

}

.slot.active{

background:#00c853;

color:#fff;

font-weight:600;

}

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

.contact-section{

padding:120px 0;

}

.contact-grid{

display:grid;

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

gap:30px;

margin-top:60px;

}

.contact-card{

background:#102d5d;

padding:35px;

text-align:center;

border-radius:18px;

transition:.35s;

}

.contact-card:hover{

transform:translateY(-8px);

}

.contact-card i{

font-size:42px;

margin-bottom:20px;

color:#ff9800;

}

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

footer{

background:#04162e;

padding:80px 0 30px;

}

.footer-grid{

display:grid;

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

gap:40px;

margin-bottom:40px;

}

.footer-grid h3{

margin-bottom:18px;

color:#fff;

}

.footer-grid ul{

list-style:none;

}

.footer-grid li{

margin-bottom:10px;

}

.footer-grid a:hover{

color:#ff9800;

}

footer hr{

border:none;

height:1px;

background:#365b93;

margin:30px 0;

}

.copyright{

text-align:center;

color:#9eb5d8;

font-size:15px;

}

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

.modal{

display:none;

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

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

z-index:9999;

justify-content:center;

align-items:center;

}

.modal-content{

background:#fff;

color:#222;

padding:45px;

border-radius:20px;

width:90%;

max-width:650px;

text-align:center;

}

.success-icon{

font-size:70px;

color:#00c853;

margin-bottom:20px;

}

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

.whatsapp-float{

position:fixed;

bottom:25px;

right:25px;

width:65px;

height:65px;

border-radius:50%;

background:#25d366;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

color:#fff;

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

z-index:999;

transition:.3s;

}

.whatsapp-float:hover{

transform:scale(1.1);

}

#scrollTop{

position:fixed;

bottom:25px;

left:25px;

width:60px;

height:60px;

border:none;

border-radius:50%;

background:#ff9800;

color:#fff;

font-size:22px;

cursor:pointer;

display:none;

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

}

/* ==========================================================
UTILITY
========================================================== */

.text-center{

text-align:center;

}

.mt-30{

margin-top:30px;

}

.mb-30{

margin-bottom:30px;

}

.hidden{

display:none;

}

.fade-in{

animation:fadeIn .6s ease;

}

@keyframes fadeIn{

from{

opacity:0;

transform:translateY(20px);

}

to{

opacity:1;

transform:translateY(0);

}

}


/* Navigation */

.navbar.sticky{

background:#071B36;

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

}

.nav-links a.active{

color:#ff9800;

font-weight:600;

}

#scroll-progress{

pointer-events:none;

}




/*==========================================
Experts Section
==========================================*/

.experts-section{

padding:90px 0;

background:#071B36;

}

.section-title{

text-align:center;

font-size:40px;

color:#fff;

margin-bottom:15px;

}

.section-subtitle{

text-align:center;

color:#bfc8d8;

margin-bottom:60px;

font-size:18px;

}

.experts-grid{

display:grid;

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

gap:35px;

}

.expert-card{

background:linear-gradient(180deg,#163766,#0E2749);

border-radius:20px;

overflow:hidden;

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

transition:.35s;

text-align:center;

}

.expert-card:hover{

transform:translateY(-10px);

}

.expert-header{

height:120px;

background:linear-gradient(135deg,#1e4d89,#0b1f3e);

position:relative;

}

.expert-header img{

width:130px;

height:130px;

border-radius:50%;

object-fit:cover;

border:6px solid #fff;

position:absolute;

left:50%;

bottom:-65px;

transform:translateX(-50%);

background:#fff;

}

.expert-body{

padding:90px 30px 35px;

}

.expert-body h3{

color:#fff;

font-size:24px;

margin-bottom:8px;

}

.designation{

display:inline-block;

padding:6px 18px;

background:#ff9800;

color:#fff;

border-radius:30px;

font-size:14px;

font-weight:600;

margin-bottom:20px;

}

.expert-body p{

color:#d6deed;

line-height:1.7;

margin-bottom:30px;

}

.expert-btn{

display:inline-block;

padding:12px 28px;

background:#00C853;

color:#fff;

border-radius:40px;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.expert-btn:hover{

background:#00a846;

transform:scale(1.05);

}