/* =========================
   GLOBAL
========================= */

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial,sans-serif;
  overflow-x:hidden;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

.container{
  width:92%;
  max-width:1320px;
  margin:auto;
}



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

.header{
  position:sticky;
  top:0;
  z-index:999;
  width:100%;
  background:#fff;
  box-shadow:0 4px 16px rgba(0,0,0,.06);
  border-bottom:1px solid #eee;
}

.nav-wrapper{
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo img{
  height:65px;
}


/* NAV */

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

.nav-list{
  display:flex;
  align-items:center;
  gap:30px;
  list-style:none;
}

.nav-list li{
  position:relative;
}

.nav-list li a{
  text-decoration:none;
  color:#111827;
  font-size:16px;
  font-weight:600;
  position:relative;
  padding:8px 0;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.nav-list li a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:0;
  height:2px;
  background:#16a34a;
  transition:.3s ease;
}

.nav-list li a:hover::after{
  width:100%;
}

.nav-list li a:hover{
  color:#16a34a;
}



/* DROPDOWN */

.dropdown-arrow{
  font-size:12px;
  transition:.3s;
}

.dropdown-menu{
  position:absolute;
  top:115%;
  left:0;
  min-width:220px;
  background:#fff;
  border-radius:8px;
  padding:8px 0;
  list-style:none;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:.25s ease;
}

.dropdown-menu li a{
  display:block;
  width:100%;
  padding:12px 18px;
  font-size:15px;
}

.dropdown-menu li a::after{
  display:none;
}

.dropdown-menu li a:hover{
  background:#f7f7f7;
}


/* desktop dropdown */

@media(min-width:769px){

  .dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

  .dropdown:hover .dropdown-arrow{
    transform:rotate(180deg);
  }

}



/* BUTTON */

.quote-btn{
  text-decoration:none;
  background:#16a34a;
  color:#fff;
  padding:12px 22px;
  border-radius:8px;
  font-weight:600;
}

.quote-btn:hover{
  background:#15803d;
}

.menu-toggle{
  display:none;
  font-size:30px;
  cursor:pointer;
}



/* HEADER RESPONSIVE */

@media(max-width:992px){

  .nav-list{
    gap:22px;
  }

  .logo img{
    height:58px;
  }

}

@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  .nav-wrapper{
    height:74px;
  }

  .logo img{
    height:50px;
  }

  .nav-menu{
    position:absolute;
    top:74px;
    left:-100%;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    padding:22px;
    transition:.3s;
  }

  .nav-menu.active{
    left:0;
  }

  .nav-list{
    width:100%;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }

  .nav-list li{
    width:100%;
  }

  .nav-list li a{
    width:100%;
    display:flex;
    justify-content:space-between;
  }

  .dropdown-menu{
    position:static;
    display:none;
    opacity:1;
    visibility:visible;
    transform:none;
    width:100%;
    min-width:100%;
    box-shadow:none;
    padding-left:15px;
    margin-top:8px;
    background:#fafafa;
  }

  .dropdown.active .dropdown-menu{
    display:block;
  }

  .quote-btn{
    width:100%;
    text-align:center;
    margin-top:20px;
  }

}

@media(max-width:480px){

  .logo img{
    height:42px;
  }

  .menu-toggle{
    font-size:26px;
  }

}


/* hero section start here */


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

.blog-hero{

    padding:100px 0;

    background:linear-gradient(135deg,#F8FAFC 0%,#ECFDF5 100%);

    overflow:hidden;

    position:relative;

}

.blog-hero::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(34,197,94,.08);

    border-radius:50%;

    top:-120px;

    right:-80px;

    filter:blur(10px);

}

.blog-hero::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    background:rgba(34,197,94,.06);

    border-radius:50%;

    bottom:-80px;

    left:-60px;

}

.blog-hero-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

    position:relative;

    z-index:2;

}

.blog-left{

    flex:1;

}

.blog-category{

    display:inline-block;

    padding:10px 20px;

    background:#DCFCE7;

    color:#15803D;

    font-size:14px;

    font-weight:600;

    border-radius:50px;

    margin-bottom:18px;

}

.blog-meta{

    display:flex;

    gap:25px;

    flex-wrap:wrap;

    margin-bottom:20px;

    font-size:15px;

    color:#666;

}

.blog-left h1{

    font-size:52px;

    line-height:1.2;

    font-weight:700;

    color:#1F2937;

    margin-bottom:25px;

}

.blog-left p{

    font-size:18px;

    line-height:1.9;

    color:#4B5563;

    margin-bottom:35px;

}

.blog-btns{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.blog-btns a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 35px;

    border-radius:10px;

    text-decoration:none;

    font-weight:600;

    transition:.35s ease;

}

/* Primary */

.blog-btns a:first-child{

    background:#22C55E;

    color:#fff;

    box-shadow:0 12px 30px rgba(34,197,94,.25);

}

.blog-btns a:first-child:hover{

    background:#16A34A;

    transform:translateY(-3px);

}

/* Secondary */

.blog-btns a:last-child{

    border:2px solid #22C55E;

    color:#15803D;

    background:#fff;

}

.blog-btns a:last-child:hover{

    background:#22C55E;

    color:#fff;

    transform:translateY(-3px);

}

.blog-right{

    flex:1;

    text-align:center;

}

.blog-right img{

    width:100%;

    max-width:560px;

    border-radius:22px;

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

    transition:.4s;

}

.blog-right img:hover{

    transform:scale(1.02);

}

/*=========================
Responsive
=========================*/

@media(max-width:992px){

.blog-hero{

padding:80px 0;

}

.blog-hero-wrapper{

flex-direction:column-reverse;

text-align:center;

gap:50px;

}

.blog-meta{

justify-content:center;

}

.blog-btns{

justify-content:center;

}

.blog-left h1{

font-size:42px;

}

}

@media(max-width:768px){

.blog-hero{

padding:70px 0;

}

.blog-left h1{

font-size:34px;

}

.blog-left p{

font-size:16px;

}

.blog-btns{

flex-direction:column;

}

.blog-btns a{

width:100%;

}

.blog-right img{

max-width:100%;

}

}

@media(max-width:480px){

.blog-left h1{

font-size:28px;

}

.blog-category{

font-size:13px;

padding:8px 16px;

}

.blog-meta{

font-size:14px;

gap:15px;

}

}


/*  second section */

/*=========================
TABLE OF CONTENTS
=========================*/

.blog-toc-section{

    padding:70px 0;

    background:#ffffff;

}

.blog-toc{

    background:#F8FAFC;

    border:1px solid #E5E7EB;

    border-radius:18px;

    padding:40px;

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

}

.blog-toc h2{

    font-size:30px;

    color:#1F2937;

    margin-bottom:30px;

}

.blog-toc-grid{

    display:grid;

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

    gap:18px;

}

.blog-toc-grid a{

    text-decoration:none;

    color:#374151;

    background:#fff;

    border:1px solid #E5E7EB;

    border-radius:10px;

    padding:15px 18px;

    font-weight:500;

    transition:.3s;

}

.blog-toc-grid a:hover{

    background:#22C55E;

    color:#fff;

    border-color:#22C55E;

    transform:translateY(-2px);

}

/* Responsive */

@media(max-width:991px){

.blog-toc-grid{

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

}

}

@media(max-width:768px){

.blog-toc{

padding:25px;

}

.blog-toc h2{

font-size:24px;

}

.blog-toc-grid{

grid-template-columns:1fr;

}

.blog-toc-grid a{

padding:14px 16px;

}

}


/* 3rd section */

/*=========================
BLOG INTRO
=========================*/

.blog-intro-section{

    padding:90px 0;

    background:#fff;

}

.blog-intro-wrapper{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:50px;

    align-items:center;

}

.blog-section-tag{

    display:inline-block;

    padding:8px 18px;

    background:#DCFCE7;

    color:#15803D;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;

}

.blog-intro-content h2{

    font-size:40px;

    line-height:1.3;

    color:#1F2937;

    margin-bottom:25px;

}

.blog-intro-content p{

    font-size:17px;

    line-height:1.9;

    color:#4B5563;

    margin-bottom:20px;

}

.blog-intro-card{

    background:#F8FAFC;

    border:1px solid #E5E7EB;

    border-left:5px solid #22C55E;

    border-radius:18px;

    padding:35px;

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

}

.blog-intro-card h3{

    font-size:24px;

    color:#1F2937;

    margin-bottom:20px;

}

.blog-intro-card ul{

    margin:0;

    padding:0;

    list-style:none;

}

.blog-intro-card ul li{

    margin-bottom:16px;

    color:#4B5563;

    line-height:1.7;

    font-size:16px;

}

/* Responsive */

@media(max-width:991px){

.blog-intro-wrapper{

grid-template-columns:1fr;

}

.blog-intro-content{

text-align:center;

}

.blog-intro-content h2{

font-size:34px;

}

}

@media(max-width:768px){

.blog-intro-section{

padding:70px 0;

}

.blog-intro-content h2{

font-size:28px;

}

.blog-intro-content p{

font-size:16px;

}

.blog-intro-card{

padding:25px;

}

}

/* 3rd section */

/*=========================
WHAT IS CAR TRANSPORT
=========================*/

.blog-about-section{

    padding:100px 0;

    background:#F8FAFC;

}

.blog-about-wrapper{

    display:flex;

    align-items:center;

    gap:70px;

}

.blog-about-image{

    flex:1;

}

.blog-about-image img{

    width:100%;

    border-radius:22px;

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

}

.blog-about-content{

    flex:1;

}

.blog-about-content h2{

    font-size:40px;

    margin:20px 0;

    color:#1F2937;

    line-height:1.3;

}

.blog-about-content p{

    font-size:17px;

    line-height:1.9;

    color:#4B5563;

    margin-bottom:20px;

}

.blog-feature-grid{

    display:grid;

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

    gap:18px;

    margin-top:35px;

}

.blog-feature-box{

    background:#fff;

    border:1px solid #E5E7EB;

    border-radius:15px;

    padding:22px;

    text-align:center;

    transition:.3s;

    box-shadow:0 8px 20px rgba(0,0,0,.04);

}

.blog-feature-box:hover{

    transform:translateY(-6px);

    border-color:#22C55E;

}

.blog-feature-box h4{

    margin-top:12px;

    font-size:17px;

    color:#1F2937;

}

/* Responsive */

@media(max-width:991px){

.blog-about-wrapper{

flex-direction:column;

}

.blog-about-content{

text-align:center;

}

.blog-about-content h2{

font-size:34px;

}

}

@media(max-width:768px){

.blog-about-section{

padding:70px 0;

}

.blog-about-content h2{

font-size:28px;

}

.blog-about-content p{

font-size:16px;

}

.blog-feature-grid{

grid-template-columns:1fr;

}

}

/* 4th section */


/*=========================
BLOG TYPES
=========================*/

.blog-types-section{

    padding:100px 0;

    background:#fff;

}

.blog-types-heading{

    max-width:850px;

    margin:0 auto 60px;

    text-align:center;

}

.blog-types-heading h2{

    font-size:42px;

    line-height:1.3;

    color:#1F2937;

    margin:18px 0;

}

.blog-types-heading p{

    font-size:17px;

    line-height:1.9;

    color:#4B5563;

}

.blog-types-grid{

    display:grid;

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

    gap:30px;

    margin-top:50px;

}

.blog-type-card{

    background:#fff;

    padding:35px;

    border-radius:18px;

    border:1px solid #E5E7EB;

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

    transition:all .35s ease;

}

.blog-type-card:hover{

    transform:translateY(-8px);

    border-color:#22C55E;

    box-shadow:0 20px 45px rgba(34,197,94,.15);

}

.blog-type-icon{

    width:70px;

    height:70px;

    background:#DCFCE7;

    color:#16A34A;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin-bottom:25px;

    transition:.3s;

}

.blog-type-card:hover .blog-type-icon{

    background:#22C55E;

    color:#fff;

    transform:rotate(8deg);

}

.blog-type-card h3{

    font-size:24px;

    color:#1F2937;

    margin-bottom:18px;

    line-height:1.4;

}

.blog-type-card p{

    font-size:16px;

    color:#4B5563;

    line-height:1.9;

}

.blog-type-card strong{

    color:#15803D;

}

.blog-types-note{

    margin-top:55px;

    padding:30px;

    background:#F0FDF4;

    border-left:5px solid #22C55E;

    border-radius:15px;

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

}

.blog-types-note p{

    margin:0;

    font-size:17px;

    line-height:1.9;

    color:#374151;

}

.blog-types-note strong{

    color:#15803D;

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

.blog-types-section{

padding:80px 0;

}

.blog-types-grid{

grid-template-columns:1fr;

}

.blog-types-heading h2{

font-size:34px;

}

}

@media(max-width:768px){

.blog-types-section{

padding:70px 0;

}

.blog-types-heading{

margin-bottom:40px;

}

.blog-types-heading h2{

font-size:28px;

}

.blog-types-heading p{

font-size:16px;

}

.blog-type-card{

padding:25px;

}

.blog-type-icon{

width:60px;

height:60px;

font-size:24px;

margin-bottom:20px;

}

.blog-type-card h3{

font-size:21px;

}

.blog-type-card p{

font-size:15px;

}

.blog-types-note{

padding:22px;

margin-top:40px;

}

.blog-types-note p{

font-size:15px;

}

}

@media(max-width:480px){

.blog-types-grid{

gap:20px;

}

.blog-type-card{

padding:20px;

}

.blog-type-icon{

width:55px;

height:55px;

font-size:22px;

}

.blog-type-card h3{

font-size:19px;

}

.blog-types-heading h2{

font-size:24px;

}

}


/* 5th section */

/*=========================
BLOG PROCESS
=========================*/

.blog-process-section{

padding:100px 0;

background:#F8FAFC;

}

.blog-process-heading{

max-width:850px;

margin:auto;

text-align:center;

margin-bottom:70px;

}

.blog-process-heading h2{

font-size:42px;

margin:18px 0;

color:#222;

}

.blog-process-heading p{

font-size:17px;

line-height:1.9;

color:#666;

}

.blog-process-wrapper{

display:flex;

align-items:center;

justify-content:center;

gap:25px;

}

.blog-process-box{

flex:1;

background:#fff;

border:1px solid #E5E7EB;

border-radius:20px;

padding:35px;

text-align:center;

transition:.35s;

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

}

.blog-process-box:hover{

transform:translateY(-8px);

border-color:#22C55E;

box-shadow:0 20px 45px rgba(34,197,94,.12);

}

.process-icon{

width:80px;

height:80px;

margin:auto;

margin-bottom:20px;

border-radius:50%;

background:#DCFCE7;

display:flex;

align-items:center;

justify-content:center;

font-size:32px;

color:#16A34A;

transition:.3s;

}

.blog-process-box:hover .process-icon{

background:#22C55E;

color:#fff;

}

.process-count{

display:inline-block;

padding:6px 16px;

background:#ECFDF5;

color:#15803D;

border-radius:30px;

font-size:14px;

font-weight:600;

margin-bottom:18px;

}

.blog-process-box h3{

font-size:24px;

margin-bottom:18px;

color:#222;

}

.blog-process-box p{

font-size:16px;

line-height:1.8;

color:#555;

}

.process-arrow{

font-size:38px;

color:#22C55E;

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

.blog-process-wrapper{

flex-direction:column;

}

.process-arrow{

transform:rotate(90deg);

font-size:30px;

}

.blog-process-heading h2{

font-size:34px;

}

}

@media(max-width:768px){

.blog-process-section{

padding:70px 0;

}

.blog-process-heading{

margin-bottom:40px;

}

.blog-process-heading h2{

font-size:28px;

}

.blog-process-heading p{

font-size:16px;

}

.blog-process-box{

padding:25px;

}

.blog-process-box h3{

font-size:22px;

}

.process-icon{

width:65px;

height:65px;

font-size:26px;

}

}

/* 6th ssection */

/*=========================
BLOG CHARGES
=========================*/

.blog-charges-section{

padding:100px 0;

background:#fff;

}

.blog-charges-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.blog-charges-image img{

width:100%;

border-radius:20px;

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

}

.blog-charges-content h2{

font-size:42px;

margin:18px 0;

color:#222;

}

.blog-charges-content p{

font-size:17px;

line-height:1.9;

color:#555;

}

.charges-list{

margin-top:35px;

display:grid;

gap:20px;

}

.charge-item{

display:flex;

align-items:flex-start;

gap:18px;

padding:20px;

background:#F8FAFC;

border-radius:14px;

transition:.3s;

}

.charge-item:hover{

background:#F0FDF4;

}

.charge-item i{

font-size:24px;

color:#16A34A;

margin-top:4px;

}

.charge-item h4{

margin-bottom:6px;

font-size:20px;

color:#222;

}

.charges-note{

margin-top:35px;

padding:20px;

background:#ECFDF5;

border-left:5px solid #22C55E;

border-radius:12px;

font-size:16px;

line-height:1.8;

}

@media(max-width:991px){

.blog-charges-wrapper{

grid-template-columns:1fr;

}

.blog-charges-content{

text-align:center;

}

.charge-item{

text-align:left;

}

.blog-charges-content h2{

font-size:34px;

}

}

@media(max-width:768px){

.blog-charges-section{

padding:70px 0;

}

.blog-charges-content h2{

font-size:28px;

}

.blog-charges-content p{

font-size:16px;

}

}


/* 7th section */

/*=========================
BLOG BENEFITS
=========================*/

.blog-benefits-section{

padding:100px 0;

background:#F8FAFC;

}

.blog-benefits-heading{

max-width:850px;

margin:0 auto 70px;

text-align:center;

}

.blog-benefits-heading h2{

font-size:42px;

margin:18px 0;

color:#222;

}

.blog-benefits-heading p{

font-size:17px;

line-height:1.9;

color:#666;

}

.benefits-layout{

display:grid;

grid-template-columns:1fr 420px 1fr;

gap:40px;

align-items:center;

}

.benefits-column{

display:flex;

flex-direction:column;

gap:25px;

}

.benefit-item{

display:flex;

gap:18px;

align-items:flex-start;

padding:22px;

background:#fff;

border:1px solid #E5E7EB;

border-radius:16px;

box-shadow:0 8px 20px rgba(0,0,0,.05);

transition:.3s;

}

.benefit-item:hover{

transform:translateY(-6px);

border-color:#22C55E;

box-shadow:0 18px 35px rgba(34,197,94,.12);

}

.benefit-item i{

width:60px;

height:60px;

border-radius:50%;

background:#DCFCE7;

color:#16A34A;

display:flex;

align-items:center;

justify-content:center;

font-size:24px;

flex-shrink:0;

transition:.3s;

}

.benefit-item:hover i{

background:#22C55E;

color:#fff;

}

.benefit-item h3{

font-size:22px;

margin-bottom:8px;

color:#222;

}

.benefit-item p{

font-size:15px;

line-height:1.8;

color:#666;

margin:0;

}

.benefits-image img{

width:100%;

border-radius:20px;

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

}

/*=========================
Responsive
=========================*/

@media(max-width:1100px){

.benefits-layout{

grid-template-columns:1fr;

}

.benefits-image{

order:-1;

max-width:500px;

margin:auto;

}

}

@media(max-width:768px){

.blog-benefits-section{

padding:70px 0;

}

.blog-benefits-heading h2{

font-size:28px;

}

.blog-benefits-heading p{

font-size:16px;

}

.benefit-item{

padding:18px;

gap:15px;

}

.benefit-item i{

width:50px;

height:50px;

font-size:20px;

}

.benefit-item h3{

font-size:18px;

}

}

/* 8th  section

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

.blog-related-services{

padding:100px 0;

background:#fff;

}

.blog-related-heading{

max-width:850px;

margin:auto;

text-align:center;

margin-bottom:60px;

}

.blog-related-heading span{

display:inline-block;

padding:10px 22px;

background:#DCFCE7;

color:#16A34A;

font-size:14px;

font-weight:600;

border-radius:30px;

margin-bottom:18px;

}

.blog-related-heading h2{

font-size:42px;

line-height:1.3;

color:#222;

margin-bottom:20px;

}

.blog-related-heading p{

font-size:17px;

line-height:1.9;

color:#666;

max-width:760px;

margin:auto;

}

.blog-related-grid{

display:grid;

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

gap:30px;

margin-top:50px;

}

.related-card{

background:#fff;

padding:35px 30px;

border:1px solid #E8E8E8;

border-radius:18px;

text-align:center;

text-decoration:none;

transition:.35s;

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

}

.related-card:hover{

transform:translateY(-8px);

border-color:#22C55E;

box-shadow:0 18px 40px rgba(34,197,94,.12);

}

.related-card i{

width:75px;

height:75px;

margin:auto;

margin-bottom:22px;

background:#DCFCE7;

color:#16A34A;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

transition:.35s;

}

.related-card:hover i{

background:#22C55E;

color:#fff;

transform:rotate(8deg);

}

.related-card h3{

font-size:24px;

font-weight:700;

color:#222;

margin-bottom:15px;

transition:.3s;

}

.related-card:hover h3{

color:#16A34A;

}

.related-card p{

font-size:16px;

line-height:1.8;

color:#666;

margin:0;

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

.blog-related-services{

padding:80px 0;

}

.blog-related-heading h2{

font-size:34px;

}

.blog-related-grid{

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

gap:25px;

}

}

@media(max-width:768px){

.blog-related-services{

padding:70px 0;

}

.blog-related-heading{

margin-bottom:40px;

}

.blog-related-heading h2{

font-size:28px;

}

.blog-related-heading p{

font-size:16px;

}

.blog-related-grid{

grid-template-columns:1fr;

gap:20px;

}

.related-card{

padding:28px 22px;

}

.related-card h3{

font-size:22px;

}

.related-card i{

width:65px;

height:65px;

font-size:26px;

}

}

@media(max-width:480px){

.blog-related-heading span{

font-size:13px;

padding:9px 18px;

}

.blog-related-heading h2{

font-size:24px;

}

.related-card{

padding:24px 18px;

}

.related-card h3{

font-size:20px;

}

.related-card p{

font-size:15px;

}

}


/* 9th section */


/*=========================
BLOG CTA
=========================*/

.blog-cta-section{

padding:100px 0;

background:#F8FAFC;

}

.blog-cta-box{

max-width:1050px;

margin:auto;

padding:70px 60px;

background:#fff;

border-radius:22px;

border:1px solid #E5E7EB;

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

text-align:center;

position:relative;

overflow:hidden;

}

.blog-cta-box::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:#22C55E;

}

.blog-cta-box h2{

font-size:42px;

color:#222;

margin:20px 0;

line-height:1.3;

}

.blog-cta-box p{

max-width:760px;

margin:auto;

font-size:17px;

line-height:1.9;

color:#666;

}

.blog-cta-buttons{

display:flex;

justify-content:center;

gap:18px;

margin-top:40px;

flex-wrap:wrap;

}

.blog-cta-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 38px;

background:#16A34A;

color:#fff;

text-decoration:none;

font-weight:600;

border-radius:8px;

transition:.3s;

}

.blog-cta-btn:hover{

background:#15803D;

transform:translateY(-4px);

}

.blog-call-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 38px;

border:2px solid #16A34A;

color:#16A34A;

text-decoration:none;

font-weight:600;

border-radius:8px;

transition:.3s;

}

.blog-call-btn:hover{

background:#16A34A;

color:#fff;

transform:translateY(-4px);

}

/* Responsive */

@media(max-width:991px){

.blog-cta-box{

padding:55px 35px;

}

.blog-cta-box h2{

font-size:34px;

}

}

@media(max-width:768px){

.blog-cta-section{

padding:70px 0;

}

.blog-cta-box{

padding:40px 22px;

}

.blog-cta-box h2{

font-size:28px;

}

.blog-cta-box p{

font-size:16px;

}

.blog-cta-buttons{

flex-direction:column;

align-items:center;

}

.blog-cta-btn,

.blog-call-btn{

width:100%;

max-width:280px;

}

}

@media(max-width:480px){

.blog-cta-box h2{

font-size:24px;

}

.blog-cta-box p{

font-size:15px;

}

}


/* 10th section faq */


.elite-faq-white-section{
  padding: 90px 0;
  background: #ffffff;
  color: #0f172a;
}

/* CONTAINER */
.elite-faq-container{
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.elite-faq-title{
  text-align: center;
  margin-bottom: 50px;
}

.elite-faq-subtitle{
  color: #0ea5e9;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.elite-faq-title h2{
  font-size: 34px;
  font-weight: 800;
}

.elite-faq-title p{
  color: #64748b;
  max-width: 750px;
  margin: auto;
  line-height: 1.6;
}

/* WRAPPER */
.elite-faq-wrapper{
  max-width: 900px;
  margin: auto;
}

/* ITEM */
.elite-faq-item{
  background: #f8fafc;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: 0.3s;
}

.elite-faq-item:hover{
  border-color: #0ea5e9;
}

/* QUESTION */
.elite-faq-question{
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
}

/* + / - ICON */
.elite-faq-question::after{
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  color: #0ea5e9;
}

/* ANSWER */
.elite-faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  padding: 0 20px;
  color: #475569;
  line-height: 1.6;
}

/* ACTIVE STATE */
.elite-faq-item.active .elite-faq-answer{
  max-height: 250px;
  padding: 15px 20px 20px;
}

.elite-faq-item.active .elite-faq-question::after{
  content: "-";
}

/* =========================
   📱 TABLET RESPONSIVE
========================= */
@media (max-width: 1024px){

  .elite-faq-title h2{
    font-size: 30px;
  }

  .elite-faq-wrapper{
    max-width: 750px;
  }
}

/* =========================
   📱 MOBILE RESPONSIVE
========================= */
@media (max-width: 768px){

  .elite-faq-white-section{
    padding: 70px 0;
  }

  .elite-faq-title h2{
    font-size: 26px;
  }

  .elite-faq-title p{
    font-size: 14px;
    padding: 0 10px;
  }

  .elite-faq-question{
    font-size: 15px;
    padding: 16px 15px;
  }

  .elite-faq-answer{
    font-size: 14px;
  }
}

/* =========================
   📱 SMALL MOBILE
========================= */
@media (max-width: 480px){

  .elite-faq-title h2{
    font-size: 22px;
  }

  .elite-faq-question{
    font-size: 14px;
    padding: 14px 12px;
  }

  .elite-faq-question::after{
    right: 15px;
  }

  .elite-faq-wrapper{
    width: 100%;
  }
}


/* last section here */


/* ===== BASE ===== */
.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000; /* ↑ z-index bada kiya */
}

/* BUTTON */
.chat-toggle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.chat-toggle:hover {
  transform: scale(1.1) rotate(5deg);
}

/* ===== CHAT BOX ===== */
.chat-box {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 280px;
  background: rgba(15,23,42,0.9);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  display: none;
  animation: slideUp 0.3s ease;
}

/* HEADER */
.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h3 {
  font-size: 18px;
  color: #fff;
}

.chat-header span {
  cursor: pointer;
  font-size: 18px;
  color: #ef4444;
  transition: 0.3s;
}

.chat-header span:hover {
  color: #dc2626;
  transform: scale(1.2);
}

/* TEXT */
.chat-subtext {
  font-size: 13px;
  color: #cbd5e1;
  margin: 10px 0 15px;
}

/* OPTIONS */
.chat-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ITEM */
.chat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 10px;
  background: #1e293b;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.chat-item:hover {
  transform: translateX(6px);
}

/* CALL BUTTON DEFAULT GREEN */
.chat-item:nth-child(1) {
  background: #22c55e;
}

/* COLORS */
.chat-item:nth-child(2):hover {
  background: #ea4335;
}

.chat-item:nth-child(3):hover {
  background: #25d366;
}

/* ANIMATION */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== SCROLL BUTTON ===== */
#topBtn {
  position: fixed;
  bottom: 20px;
  right: 95px; /* chat se proper gap */
  z-index: 900; /* chat ke niche rakha */

  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #0f172a;
  color: #fff;
  border: none;
  cursor: pointer;

  opacity: 0.85;
  transition: 0.3s;
}

/* HOVER */
#topBtn:hover {
  background: #38bdf8;
  transform: scale(1.1);
}

/* 🔥 IMPORTANT FIX → CONTENT COVER NA HO */
body.scrolled-bottom #topBtn {
  bottom: 120px;
}

/* ============================= */
/* 📱 MOBILE OPTIMIZATION */
/* ============================= */
@media (max-width: 768px) {

  .chat-box {
    width: 90vw;
    right: 5%;
    bottom: 90px;
  }

  .chat-toggle {
    width: 56px;
    height: 56px;
  }

  /* 🔥 TOP BUTTON → CHAT KE UPAR STACK */
  #topBtn {
    right: 20px;      /* chat ke saath align */
    bottom: 95px;     /* chat ke upar */
    width: 42px;
    height: 42px;
  }

  /* 🔥 FOOTER KE PASS AUR UPAR SHIFT */
  body.scrolled-bottom #topBtn {
    bottom: 140px;
  }
}

@media (max-width: 480px) {

  .chat-box {
    width: 92vw;
    right: 4%;
    padding: 15px;
  }

  .chat-item {
    padding: 10px;
  }

  .chat-toggle {
    width: 52px;
    height: 52px;
  }

  /* 🔥 TOP BUTTON CHAT KE UPAR */
  #topBtn {
    right: 20px;     /* same alignment as chat */
    bottom: 85px;    /* chat ke upar */
    width: 38px;
    height: 38px;
  }

  /* 🔥 FOOTER KE PASS SHIFT */
  body.scrolled-bottom #topBtn {
    bottom: 130px;
  }
}



/*10th section footer  */

/* =========================
   ELITE MOVE FOOTER (DARK)
   FULL RESPONSIVE FINAL
========================= */

/* =========================
   ELITE MOVE FOOTER
   FULL RESPONSIVE FINAL VERSION
========================= */

.elite-footer-dark{
  background: #0b1220;
  color: #fff;
  padding: 70px 0 20px;
}

/* CONTAINER */
.elite-footer-container{
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

/* GRID - DESKTOP */
.elite-footer-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* BOX TEXT */
.elite-footer-box h3{
  font-size: 24px;
  margin-bottom: 15px;
}

.elite-footer-box h4{
  font-size: 18px;
  margin-bottom: 15px;
  color: #0ea5e9;
}

.elite-footer-box p{
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
}

/* LIST */
.elite-footer-box ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.elite-footer-box ul li{
  margin-bottom: 8px;
}

/* LINKS */
.elite-footer-box ul li a{
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.elite-footer-box ul li a:hover{
  color: #0ea5e9;
}

/* CTA BUTTON */
.elite-footer-location-cta{
  display: inline-block;
  margin-top: 10px;
  padding: 9px 14px;
  border: 1px solid #0ea5e9;
  color: #0ea5e9;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.elite-footer-location-cta:hover{
  background: #0ea5e9;
  color: #fff;
}

/* MAIN BUTTON */
.elite-footer-btn{
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background: #0ea5e9;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.elite-footer-btn:hover{
  background: #0284c7;
}

/* SOCIAL ICONS */
.elite-footer-social{
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.elite-footer-social a{
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 6px;
  color: #cbd5e1;
  font-size: 14px;
  transition: 0.3s;
}

.elite-footer-social a:hover{
  background: #0ea5e9;
  color: #fff;
  transform: translateY(-2px);
}

/* BOTTOM BAR */
.elite-footer-bottom{
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #1f2937;
  font-size: 13px;
  color: #94a3b8;
}

.elite-footer-bottom a{
  color: #cbd5e1;
  text-decoration: none;
}

.elite-footer-bottom a:hover{
  color: #0ea5e9;
}

/* =========================
   📱 TABLET (1024px)
========================= */
@media (max-width: 1024px){

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

/* =========================
   📱 MOBILE (768px)
========================= */
@media (max-width: 768px){

  .elite-footer-grid{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .elite-footer-social{
    justify-content: center;
  }

  .elite-footer-box ul li{
    text-align: center;
  }

  .elite-footer-location-cta,
  .elite-footer-btn{
    width: 100%;
    text-align: center;
  }
}

/* =========================
   📱 SMALL MOBILE (480px)
========================= */
@media (max-width: 480px){

  .elite-footer-dark{
    padding: 60px 0 15px;
  }

  .elite-footer-box h3{
    font-size: 20px;
  }

  .elite-footer-box h4{
    font-size: 16px;
  }

  .elite-footer-box p,
  .elite-footer-box ul li a{
    font-size: 13px;
  }

  .elite-footer-location-cta,
  .elite-footer-btn{
    font-size: 13px;
    padding: 10px;
  }

  .elite-footer-bottom{
    font-size: 12px;
    padding: 15px 10px;
  }
}
