/*======================================
Google Font
======================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');



/*======================================
Reset
======================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;
background:#f5f7fb;
color:#222;
overflow-x:hidden;
line-height:1.6;

}

a{
text-decoration:none;
color:inherit;
}

ul{
list-style:none;
}

img{

max-width:100%;
display:block;

}

.container{

width:90%;
max-width:1300px;
margin:auto;

}



/*======================================
Color Variables
======================================*/

:root{

--primary:#0F4C81;
--secondary:#00B4D8;
--green:#00C853;
--orange:#ff9800;
--dark:#1E293B;
--light:#ffffff;
--bg:#f7f9fc;
--border:#e6e9ef;
--shadow:0 10px 30px rgba(0,0,0,.08);
--radius:18px;

}



/*======================================
Section
======================================*/

section{

padding:90px 0;

}

.section-title{

text-align:center;
margin-bottom:70px;

}

.section-title span{

display:inline-block;
padding:8px 20px;
background:#e8f4ff;
color:var(--primary);
border-radius:40px;
font-weight:600;
font-size:14px;
letter-spacing:1px;
margin-bottom:18px;

}

.section-title h2{

font-size:42px;
font-weight:700;
color:var(--dark);
margin-bottom:18px;

}

.section-title p{

max-width:700px;
margin:auto;
font-size:17px;
color:#666;

}



/*======================================
Header
======================================*/

header{

position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
background:rgba(255,255,255,.92);
backdrop-filter:blur(15px);
box-shadow:0 5px 25px rgba(0,0,0,.08);

}

header .container{

display:flex;
justify-content:space-between;
align-items:center;
height:85px;

}

.logo img{

height:60px;

}

nav ul{

display:flex;
gap:35px;

}

nav ul li a{

font-weight:600;
transition:.35s;
position:relative;

}

nav ul li a:hover{

color:var(--secondary);

}

nav ul li a::after{

content:'';
position:absolute;
left:0;
bottom:-8px;
width:0%;
height:3px;
background:var(--secondary);
transition:.35s;

}

nav ul li a:hover::after{

width:100%;

}



/*======================================
Call Button
======================================*/

.header-btn a{

background:linear-gradient(135deg,#00B4D8,#0F4C81);
padding:14px 30px;
border-radius:50px;
color:#fff;
font-weight:600;
transition:.4s;
display:inline-flex;
align-items:center;
gap:10px;

}

.header-btn a:hover{

transform:translateY(-4px);
box-shadow:0 15px 35px rgba(0,180,216,.35);

}

.menu-btn{

display:none;
font-size:28px;
cursor:pointer;

}



/*======================================
Hero
======================================*/

.hero{

position:relative;
padding-top:180px;
padding-bottom:120px;
background:linear-gradient(135deg,#0F4C81,#00B4D8);

overflow:hidden;

}

.hero::before{

content:'';
position:absolute;
width:650px;
height:650px;
background:rgba(255,255,255,.08);
border-radius:50%;
top:-220px;
right:-180px;

}

.hero::after{

content:'';
position:absolute;
width:450px;
height:450px;
background:rgba(255,255,255,.06);
border-radius:50%;
bottom:-180px;
left:-120px;

}

.overlay{

position:absolute;
inset:0;
background:rgba(0,0,0,.12);

}

.hero-container{

position:relative;
z-index:5;

display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:80px;

}

.hero-left{

color:#fff;

}

.tag{

display:inline-block;
background:rgba(255,255,255,.15);
padding:12px 22px;
border-radius:40px;
font-weight:600;
margin-bottom:25px;

}

.hero-left h1{

font-size:64px;
line-height:1.15;
font-weight:800;
margin-bottom:20px;

}

.hero-left h1 span{

color:#FFD54F;

}

.hero-left p{

font-size:19px;
max-width:580px;
margin-bottom:40px;
opacity:.95;

}
/*======================================
Hero Buttons
======================================*/

.hero-buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
margin-bottom:50px;
}

.btn-primary,
.btn-secondary{

display:inline-flex;
align-items:center;
justify-content:center;
padding:16px 36px;
border-radius:50px;
font-size:16px;
font-weight:600;
transition:.35s ease;
cursor:pointer;

}

.btn-primary{

background:#fff;
color:var(--primary);

}

.btn-primary:hover{

transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,.18);

}

.btn-secondary{

border:2px solid rgba(255,255,255,.4);
color:#fff;

}

.btn-secondary:hover{

background:#fff;
color:var(--primary);

}



/*======================================
Hero Features
======================================*/

.hero-features{

display:flex;
gap:20px;
flex-wrap:wrap;

}

.feature-box{

background:rgba(255,255,255,.12);
backdrop-filter:blur(10px);

padding:25px;

border-radius:18px;

text-align:center;

min-width:150px;

transition:.4s;

}

.feature-box:hover{

transform:translateY(-8px);

background:rgba(255,255,255,.2);

}

.feature-box i{

font-size:34px;

margin-bottom:15px;

color:#FFD54F;

}

.feature-box h3{

font-size:28px;

margin-bottom:8px;

color:#fff;

}

.feature-box p{

font-size:15px;

opacity:.9;

}



/*======================================
Hero Image
======================================*/

.hero-card{

background:#fff;

padding:18px;

border-radius:30px;

box-shadow:0 30px 70px rgba(0,0,0,.25);

transform:rotate(-3deg);

transition:.5s;

}

.hero-card:hover{

transform:rotate(0deg) scale(1.03);

}

.hero-card img{

width:100%;

border-radius:22px;

display:block;

}



/*======================================
About Section
======================================*/

.about{

background:#fff;

}

.about-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.about-card{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:var(--shadow);

text-align:center;

transition:.35s;

border:1px solid var(--border);

}

.about-card:hover{

transform:translateY(-10px);

}

.about-card i{

font-size:46px;

color:var(--secondary);

margin-bottom:22px;

}

.about-card h3{

margin-bottom:15px;

font-size:22px;

color:var(--dark);

}

.about-card p{

color:#666;

font-size:15px;

}



/*======================================
Services
======================================*/

.services{

background:var(--bg);

}

.services-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.service-card{

background:#fff;

padding:40px 30px;

border-radius:22px;

text-align:center;

box-shadow:var(--shadow);

transition:.4s;

border:1px solid transparent;

}

.service-card:hover{

transform:translateY(-12px);

border-color:var(--secondary);

}

.service-card .icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:25px;

border-radius:50%;

background:linear-gradient(135deg,var(--primary),var(--secondary));

display:flex;

justify-content:center;

align-items:center;

color:#fff;

font-size:38px;

}

.service-card h3{

font-size:22px;

margin-bottom:18px;

}

.service-card p{

color:#666;

font-size:15px;

line-height:1.8;

}



/*======================================
Statistics
======================================*/

.stats{

background:linear-gradient(135deg,#0F4C81,#00B4D8);

}

.stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.stat-card{

background:rgba(255,255,255,.12);

backdrop-filter:blur(10px);

padding:35px;

border-radius:20px;

text-align:center;

color:#fff;

transition:.35s;

}

.stat-card:hover{

transform:translateY(-8px);

}

.stat-card h2{

font-size:48px;

margin-bottom:12px;

font-weight:700;

}

.stat-card p{

font-size:16px;

opacity:.9;

}



/*======================================
Gallery
======================================*/

.gallery{

background:#fff;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

}

.gallery-item{

position:relative;

overflow:hidden;

border-radius:22px;

box-shadow:var(--shadow);

cursor:pointer;

}

.gallery-item img{

width:100%;

height:280px;

object-fit:cover;

transition:.6s;

}

.gallery-item:hover img{

transform:scale(1.12);

}

.gallery-overlay{

position:absolute;

inset:0;

background:rgba(15,76,129,.65);

display:flex;

align-items:center;

justify-content:center;

opacity:0;

transition:.35s;

}

.gallery-item:hover .gallery-overlay{

opacity:1;

}

.gallery-overlay i{

font-size:44px;

color:#fff;

}
/*======================================
Call To Action
======================================*/

.cta{

padding:100px 0;

background:linear-gradient(135deg,#0F4C81,#00B4D8);

}

.cta-content{

text-align:center;

max-width:900px;

margin:auto;

color:#fff;

}

.cta-content h2{

font-size:48px;

margin-bottom:20px;

font-weight:700;

}

.cta-content p{

font-size:18px;

opacity:.9;

margin-bottom:40px;

}

.cta-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}



/*======================================
Packages
======================================*/

.packages{

background:#f7f9fc;

}



/*======================================
Notice Box
======================================*/

.notice-box{

background:#fff8e7;

border-left:6px solid #ff9800;

padding:35px;

border-radius:18px;

margin-bottom:60px;

box-shadow:var(--shadow);

}

.notice-title{

display:flex;

align-items:center;

gap:12px;

font-size:24px;

font-weight:700;

color:#ff9800;

margin-bottom:20px;

}

.notice-box ul{

padding-left:25px;

}

.notice-box li{

list-style:disc;

margin-bottom:14px;

color:#555;

line-height:1.8;

}



/*======================================
Package Table
======================================*/

.package-table{

overflow-x:auto;

margin-bottom:70px;

border-radius:20px;

box-shadow:var(--shadow);

}

.package-table table{

width:100%;

border-collapse:collapse;

background:#fff;

}

.package-table thead{

background:linear-gradient(135deg,#0F4C81,#00B4D8);

color:#fff;

}

.package-table th{

padding:22px;

font-size:17px;

font-weight:600;

}

.package-table td{

padding:20px;

text-align:center;

border-bottom:1px solid #eee;

font-size:16px;

}

.package-table tbody tr{

transition:.3s;

}

.package-table tbody tr:hover{

background:#f3faff;

}



/*======================================
Pricing Cards
======================================*/

.pricing-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:35px;

}

.pricing-card{

position:relative;

background:#fff;

border-radius:24px;

padding:40px 30px;

box-shadow:var(--shadow);

transition:.4s;

overflow:hidden;

}

.pricing-card:hover{

transform:translateY(-12px);

box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.card-header{

text-align:center;

margin-bottom:30px;

}

.card-header h3{

font-size:22px;

color:#444;

margin-bottom:10px;

}

.card-header h2{

font-size:42px;

color:var(--primary);

font-weight:700;

}



/*======================================
Popular Package
======================================*/

.popular{

border:3px solid var(--secondary);

transform:scale(1.03);

}

.popular:hover{

transform:scale(1.05);

}

.popular-badge{

position:absolute;

top:18px;

right:-45px;

background:#ff9800;

color:#fff;

padding:10px 60px;

font-size:13px;

font-weight:700;

transform:rotate(45deg);

}



/*======================================
Package Features
======================================*/

.pricing-card ul{

margin-bottom:30px;

}

.pricing-card ul li{

display:flex;

align-items:center;

gap:12px;

padding:14px 0;

border-bottom:1px solid #eee;

font-size:15px;

}

.pricing-card ul li:last-child{

border-bottom:none;

}

.pricing-card ul li i{

color:#00C853;

font-size:18px;

}



/*======================================
Package Button
======================================*/

.package-btn{

display:block;

text-align:center;

padding:16px;

border-radius:50px;

background:linear-gradient(135deg,#0F4C81,#00B4D8);

color:#fff;

font-weight:600;

transition:.35s;

}

.package-btn:hover{

transform:translateY(-4px);

box-shadow:0 15px 30px rgba(0,180,216,.35);

}



/*======================================
Pricing Card Decorative Effect
======================================*/

.pricing-card::before{

content:"";

position:absolute;

width:180px;

height:180px;

background:rgba(0,180,216,.05);

border-radius:50%;

top:-80px;

right:-80px;

}

.pricing-card::after{

content:"";

position:absolute;

width:120px;

height:120px;

background:rgba(15,76,129,.05);

border-radius:50%;

bottom:-60px;

left:-60px;

}
/*======================================
Training Schedule
======================================*/

.schedule{
    background:#fff;
}

.schedule-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.time-card{

    background:#fff;

    padding:28px;

    text-align:center;

    border-radius:18px;

    font-size:22px;

    font-weight:700;

    color:var(--primary);

    box-shadow:var(--shadow);

    transition:.35s;

    border:2px solid transparent;

}

.time-card:hover{

    transform:translateY(-10px);

    background:linear-gradient(135deg,#0F4C81,#00B4D8);

    color:#fff;

    border-color:#00B4D8;

}



/*======================================
Contact
======================================*/

.contact{

    background:#f7f9fc;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:50px;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.info-box{

    display:flex;

    align-items:flex-start;

    gap:20px;

    background:#fff;

    padding:30px;

    border-radius:18px;

    box-shadow:var(--shadow);

    transition:.35s;

}

.info-box:hover{

    transform:translateY(-8px);

}

.info-box i{

    width:65px;

    height:65px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#0F4C81,#00B4D8);

    color:#fff;

    font-size:24px;

}

.info-box h3{

    margin-bottom:8px;

    color:var(--dark);

}

.info-box p{

    color:#666;

    line-height:1.7;

}

.info-box a{

    color:#0F4C81;

    font-weight:600;

}



/*======================================
Contact Form
======================================*/

.contact-form{

    background:#fff;

    padding:40px;

    border-radius:22px;

    box-shadow:var(--shadow);

}

.input-group{

    margin-bottom:20px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid #ddd;

    border-radius:12px;

    outline:none;

    font-size:15px;

    font-family:Poppins,sans-serif;

    transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#00B4D8;

    box-shadow:0 0 0 4px rgba(0,180,216,.12);

}

.contact-form button{

    width:100%;

    border:none;

    padding:18px;

    border-radius:50px;

    background:linear-gradient(135deg,#0F4C81,#00B4D8);

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.contact-form button:hover{

    transform:translateY(-5px);

}



/*======================================
Google Map
======================================*/

.map{

    height:450px;

}

.map iframe{

    width:100%;

    height:100%;

    border:none;

}



/*======================================
Footer
======================================*/

footer{

    background:#0f172a;

    color:#fff;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;

    margin-bottom:40px;

}

.footer-logo{

    width:180px;

    margin-bottom:20px;

}

.footer-grid h3{

    margin-bottom:22px;

    font-size:22px;

}

.footer-grid p{

    color:#cbd5e1;

    line-height:1.8;

}

.footer-grid ul li{

    margin-bottom:14px;

}

.footer-grid ul li a{

    color:#cbd5e1;

    transition:.3s;

}

.footer-grid ul li a:hover{

    color:#fff;

    padding-left:8px;

}



/*======================================
Social
======================================*/

.social-links{

    display:flex;

    gap:15px;

}

.social-links a{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#1e293b;

    color:#fff;

    transition:.35s;

}

.social-links a:hover{

    background:#00B4D8;

    transform:translateY(-6px);

}



/*======================================
Copyright
======================================*/

footer hr{

    border:none;

    border-top:1px solid rgba(255,255,255,.08);

    margin:30px 0;

}

.copyright{

    text-align:center;

    color:#94a3b8;

}



/*======================================
Floating WhatsApp
======================================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#25D366;

    color:#fff;

    font-size:32px;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    z-index:999;

    transition:.35s;

}

.whatsapp:hover{

    transform:scale(1.1);

}



/*======================================
Back To Top
======================================*/

.top-btn{

    position:fixed;

    right:25px;

    bottom:105px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#0F4C81;

    color:#fff;

    font-size:20px;

    cursor:pointer;

    display:none;

    box-shadow:var(--shadow);

    transition:.3s;

}

.top-btn:hover{

    background:#00B4D8;

    transform:translateY(-5px);

}
/*======================================
Animation
======================================*/

.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.fade-up.active{
    opacity:1;
    transform:translateY(0);
}



/*======================================
Scrollbar
======================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#edf2f7;
}

::-webkit-scrollbar-thumb{
    background:#0F4C81;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#00B4D8;
}



/*======================================
Selection
======================================*/

::selection{
    background:#00B4D8;
    color:#fff;
}



/*======================================
Responsive
======================================*/

@media(max-width:1200px){

.hero-container,
.contact-wrapper{

grid-template-columns:1fr;

}

.about-grid{

grid-template-columns:repeat(2,1fr);

}

.services-grid{

grid-template-columns:repeat(2,1fr);

}

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

.schedule-grid{

grid-template-columns:repeat(3,1fr);

}

}



@media(max-width:991px){

header .container{

height:75px;

}

.menu-btn{

display:block;

}

nav{

position:fixed;

top:75px;

left:-100%;

width:280px;

height:100vh;

background:#fff;

box-shadow:0 10px 30px rgba(0,0,0,.12);

transition:.4s;

padding-top:40px;

}

nav.active{

left:0;

}

nav ul{

flex-direction:column;

gap:0;

}

nav ul li{

border-bottom:1px solid #eee;

}

nav ul li a{

display:block;

padding:18px 25px;

}

.header-btn{

display:none;

}

.hero{

padding-top:140px;

}

.hero-left h1{

font-size:48px;

}

.hero-features{

justify-content:center;

}

.section-title h2{

font-size:34px;

}

.schedule-grid{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:768px){

.hero-container{

gap:40px;

text-align:center;

}

.hero-left p{

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.hero-features{

justify-content:center;

}

.hero-card{

transform:none;

}

.about-grid{

grid-template-columns:1fr;

}

.services-grid{

grid-template-columns:1fr;

}

.gallery-grid{

grid-template-columns:1fr;

}

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

.pricing-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

}

.contact-wrapper{

grid-template-columns:1fr;

}

.schedule-grid{

grid-template-columns:repeat(2,1fr);

}

.time-card{

font-size:18px;

padding:20px;

}

}



@media(max-width:576px){

.container{

width:92%;

}

.hero{

padding-top:130px;

}

.hero-left h1{

font-size:36px;

}

.hero-left p{

font-size:16px;

}

.section-title h2{

font-size:28px;

}

.section-title p{

font-size:15px;

}

.feature-box{

min-width:130px;

padding:18px;

}

.feature-box h3{

font-size:22px;

}

.service-card{

padding:30px 20px;

}

.card-header h2{

font-size:34px;

}

.schedule-grid{

grid-template-columns:1fr;

}

.contact-form{

padding:25px;

}

.info-box{

padding:20px;

}

.footer-logo{

width:140px;

}

.social-links{

justify-content:center;

}

.whatsapp{

width:58px;

height:58px;

font-size:28px;

}

.top-btn{

width:48px;

height:48px;

font-size:18px;

}

}



/*======================================
Smooth Hover
======================================*/

.service-card,
.about-card,
.pricing-card,
.time-card,
.info-box,
.gallery-item{

transition:all .35s ease;

}



/*======================================
Image Radius
======================================*/

img{

border-radius:12px;

}
/* WhatsApp Floating */


.whatsapp{

position:fixed;
right:20px;
bottom:20px;

width:60px;
height:60px;

background:#25D366;

color:white;

border-radius:50%;

display:flex;

align-items:center;
justify-content:center;

font-size:32px;

z-index:9999;

text-decoration:none;

box-shadow:0 5px 20px rgba(0,0,0,.3);

}



.whatsapp i{

color:white;

}



@media(max-width:768px){


.whatsapp{

width:55px;
height:55px;

right:15px;
bottom:15px;

font-size:28px;

}


}
/* =========================
Mobile Menu
========================= */


.menu-btn{
    display:none;
    cursor:pointer;
    font-size:28px;
}



@media(max-width:768px){


.menu-btn{

    display:block;

}



nav{

    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#fff;
    display:none;
    padding:20px 0;
    z-index:999;


}


nav.active{

    display:block;

}



nav ul{

    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;

}



.header-btn{

    display:none;

}


}
/* ==========================
Logo Fix
========================== */

.logo{
    display:flex;
    align-items:center;
}


.logo img{
    width:140px;
    height:auto;
    display:block;
    object-fit:contain;
}


/* Header Fix */

header{
    position:relative;
    z-index:999;
}


header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}


@media(max-width:768px){

.logo img{

    width:110px;

}


}
/*==================================
FULL RESPONSIVE DESIGN
BD Driving School
==================================*/


/* Container */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}



/* Header */

header{
    width:100%;
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
}


header .container{

    display:flex;
    align-items:center;
    justify-content:space-between;

}


.logo img{

    width:140px;
    height:auto;
    display:block;

}


/* Navigation */

nav ul{

    display:flex;
    list-style:none;
    gap:30px;

}


nav ul li a{

    text-decoration:none;
    color:#111;
    font-weight:500;

}


/* Menu button */


.menu-btn{

    display:none;
    font-size:28px;
    cursor:pointer;

}




/*=========================
TABLET
=========================*/

@media(max-width:992px){


nav ul{

    gap:15px;

}


.hero-container{

    gap:30px;

}


.hero-left h1{

    font-size:42px;

}


.services-grid,
.about-grid{

    grid-template-columns:repeat(2,1fr);

}


.pricing-grid{

    grid-template-columns:repeat(2,1fr);

}



}



/*=========================
MOBILE
=========================*/

@media(max-width:768px){



.container{

    width:92%;

}



/* Header */


.logo img{

    width:110px;

}


.header-btn{

    display:none;

}



.menu-btn{

    display:block;

}



nav{

    position:absolute;
    top:75px;
    left:0;
    width:100%;
    background:#fff;
    display:none;
    padding:25px 0;
    box-shadow:0 10px 30px rgba(0,0,0,.1);

}



nav.active{

    display:block;

}



nav ul{

    flex-direction:column;
    text-align:center;
    gap:20px;

}




/* Hero */


.hero-container{

    flex-direction:column;
    text-align:center;

}


.hero-left h1{

    font-size:34px;
    line-height:1.3;

}



.hero-left p{

    font-size:15px;

}



.hero-buttons{

    flex-direction:column;
    gap:15px;

}



.hero-buttons a{

    width:100%;

}



.hero-right img{

    width:100%;

}



/* Features */


.hero-features{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;

}


.feature-box h3{

    font-size:20px;

}



.feature-box p{

    font-size:12px;

}




/* Section */

.section-title h2{

    font-size:28px;

}



.section-title p{

    font-size:14px;

}




/* Cards */


.services-grid,
.about-grid,
.pricing-grid,
.stats-grid{

    grid-template-columns:1fr;

}



.service-card,
.about-card,
.pricing-card{

    width:100%;

}



/* Package Table */


.package-table{

    overflow-x:auto;

}



.package-table table{

    min-width:700px;

}





/* Schedule */


.schedule-grid{

    grid-template-columns:repeat(2,1fr);

}



/* Gallery */


.gallery-grid{

    grid-template-columns:1fr;

}



/* Contact */


.contact-wrapper{

    flex-direction:column;

}


.contact-form,
.contact-info{

    width:100%;

}



/* Footer */


.footer-grid{

    grid-template-columns:1fr;
    text-align:center;

}



.social-links{

    justify-content:center;

}




/* WhatsApp */


.whatsapp{

    width:55px;
    height:55px;
    right:15px;
    bottom:15px;

    font-size:28px;

}



/* Translate */


#google_translate_element{

    margin-top:15px;

}



}



/*=========================
SMALL MOBILE
=========================*/

@media(max-width:400px){


.hero-left h1{

    font-size:28px;

}



.hero-features{

    grid-template-columns:1fr;

}



.schedule-grid{

    grid-template-columns:1fr;

}


.logo img{

    width:95px;

}



}
/*========================
Back To Top Button
========================*/

.top-btn{

    position:fixed;

    right:20px;
    bottom:90px;

    width:55px;
    height:55px;

    border-radius:50%;

    border:none;

    background:#0d6efd;

    color:#fff;

    display:none;

    align-items:center;
    justify-content:center;

    font-size:20px;

    cursor:pointer;

    z-index:9999;

    box-shadow:0 5px 20px rgba(0,0,0,.25);

    transition:.3s ease;

}


.top-btn i{

    margin:0;

    line-height:1;

}



.top-btn:hover{

    transform:translateY(-5px);

    background:#084298;

}



/* Mobile */

@media(max-width:768px){

.top-btn{

    width:50px;
    height:50px;

    right:15px;
    bottom:80px;

    font-size:18px;

}

}
/*==================================
BRTA ROAD SIGNS
==================================*/

.road-signs{
    padding:100px 0;
    background:#f8fafc;
    position:relative;
}

.sign-tabs{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    margin:50px 0;
}

.tab-btn{
    border:none;
    outline:none;
    background:#fff;
    color:#1f2937;
    padding:14px 28px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.tab-btn:hover{
    transform:translateY(-3px);
    color:#fff;
    background:#0d9488;
}

.tab-btn.active{
    background:#0d9488;
    color:#fff;
    box-shadow:0 15px 35px rgba(13,148,136,.35);
}

/*========== GRID ==========*/

.sign-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

/*========== CARD ==========*/

.sign-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    padding:30px;

    text-align:center;

    transition:.4s;

    position:relative;

    box-shadow:0 15px 40px rgba(0,0,0,.07);

    border:1px solid #edf2f7;

}

.sign-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:#0d9488;

    transform:scaleX(0);

    transition:.4s;

}

.sign-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.sign-card:hover::before{

    transform:scaleX(1);

}

/*========== IMAGE ==========*/

.sign-image{

    width:120px;

    height:120px;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#f1f5f9;

    transition:.35s;

}

.sign-card:hover .sign-image{

    background:#ecfeff;

}

.sign-image img{

    width:85px;

    transition:.35s;

}

.sign-card:hover img{

    transform:scale(1.12) rotate(4deg);

}

/*========== BADGE ==========*/

.badge{

    display:inline-block;

    margin:25px 0 15px;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.badge.red{

    color:#dc2626;

    background:#fee2e2;

}

.badge.yellow{

    color:#ca8a04;

    background:#fef9c3;

}

.badge.blue{

    color:#2563eb;

    background:#dbeafe;

}

.badge.green{

    color:#059669;

    background:#d1fae5;

}

/*========== TEXT ==========*/

.sign-card h3{

    font-size:21px;

    font-weight:700;

    color:#111827;

    margin-bottom:6px;

}

.sign-card h4{

    font-size:17px;

    color:#0d9488;

    margin-bottom:14px;

    font-weight:600;

}

.sign-card p{

    color:#64748b;

    line-height:1.7;

    font-size:15px;

}

/*========== RESPONSIVE ==========*/

@media(max-width:992px){

.sign-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.sign-tabs{

gap:10px;

}

.tab-btn{

width:100%;

}

.sign-grid{

grid-template-columns:1fr;

}

}


/*======================================
End CSS
======================================*/