/* GLOBAL */

body{
font-family: 'Poppins', sans-serif;
color:#333;
line-height:1.6;
}

h1,h2,h3,h4{
font-weight:700;
}

section{
padding:70px 0;
}

.container{
max-width:1200px;
}


/* HEADER */
/* HEADER */
/* ================= HEADER ================= */
.main-header{
  background:#fff;
  box-shadow:0 2px 15px rgba(0,0,0,0.08);
  position:relative;
  z-index:9999;
}

.header-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
}

.logo img{
  height:60px;
}

/* ================= MENU ================= */
.nav-menu ul{
  display:flex;
  gap:30px;
  list-style:none;
  margin:0;
  padding:0;
}

.nav-menu ul li{
  position:relative;
}

.nav-menu ul li a{
  text-decoration:none;
  color:#333;
  font-weight:500;
  padding:10px 5px;
  display:block;
}

/* ================= MEGA MENU ================= */
.mega-menu{
  position:absolute;
  left:0;
  top:100%;
  width:250px;
  background:#fff;
  padding:25px;
  display:flex;
  gap:40px;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
  border-radius:12px;

  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:0.3s ease;
}

/* SHOW */
.mega-parent:hover .mega-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* ================= LEVEL 2 (IMPORTANT FIX) ================= */
/* SINGLE COLUMN MENU */
.mega-column > ul{
  display:block !important;   /* 👈 flex remove */
  padding:0;
  margin:0;
}

/* EACH ITEM NEW LINE */
.mega-column > ul li{
  display:block;
  margin-bottom:10px;
}

/* LINK STYLE */
.mega-column > ul li a{
  display:block;
  white-space:normal;
  color:#555;
  font-size:14px;
}

/* ================= LEVEL 3 ================= */
.sub-menu{
  position:absolute;
  top:100%;
  left:0;
  background:#fff;
  min-width:180px;
  display:none;
  padding:10px 0;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
  border-radius:8px;
}

.submenu-parent:hover .sub-menu{
  display:block;
}

.sub-menu li a{
  display:block;
  padding:8px 15px;
  font-size:13px;
  color:#777;
}

.sub-menu li a:hover{
  background:#f5f5f5;
  color:#007bff;
}

/* ================= BUTTON ================= */
.enquire-btn{
  background:#007bff;
  color:#fff;
  padding:10px 20px;
  border-radius:6px;
  text-decoration:none;
}

/* ================= MOBILE ================= */
.menu-toggle{
  display:none;
  font-size:30px;
  cursor:pointer;
}

.mobile-btn{
  display:none;
}

@media(max-width:768px){

.menu-toggle{
  display:block;
}

.header-btn{
  display:none;
}

.nav-menu{
  position:absolute;
  top:70px;
  left:0;
  width:100%;
  background:#fff;
  display:none;
}

.nav-menu.active{
  display:block;
}

.nav-menu ul{
  flex-direction:column;
}

.mega-menu{
  position:static;
  display:none;
  flex-direction:column;
  box-shadow:none;
}

.mega-parent.active .mega-menu{
  display:block;
}

.sub-menu{
  position:static;
  display:none;
}

.submenu-parent.active .sub-menu{
  display:block;
}

.mobile-btn{
  display:block;
  padding:15px;
  text-align:center;
}

}

/* HERO SECTION */

.hero-section{
background:linear-gradient(135deg,#1d2b64,#0f1c4d);
padding:70px 0;
position:relative;
z-index:1;
}
/* CARD DESIGN */

.hero-card{
background:#fff;
border-radius:14px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,0.2);
transition:0.4s;
}

.hero-card img{
width:100%;
height:350px;
object-fit:cover;
}

/* VIDEO */

.video-box{
background:#fff;
padding:10px;
border-radius:15px;
box-shadow:0 10px 35px rgba(0,0,0,0.15);
overflow:hidden;
position:relative;
transition:0.4s;
}

/* Hover Effect */

.video-box:hover{
transform:translateY(-6px);
box-shadow:0 18px 45px rgba(0,0,0,0.25);
}

/* iframe responsive */

.video-box iframe{
width:100%;
height:400px;
border-radius:12px;
border:none;
}

/* mobile responsive */

@media (max-width:768px){

.hero-section{
padding:40px 15px;
}

/* image slider spacing */

.hero-slider{
margin-bottom:25px;
}

/* video spacing */

.video-box{
margin-top:15px;
}

/* responsive video */

.video-box iframe{
height:220px;
border-radius:10px;
}

}

.video-box{
background:linear-gradient(135deg,#ffffff,#f7f9ff);
border:2px solid rgba(255,255,255,0.3);
backdrop-filter:blur(10px);
}

/* HOVER EFFECT */

.hero-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 50px rgba(0,0,0,0.3);
}


/* ABOUT SECTION */

.about-section ul{
padding-left:20px;
}

.about-section li{
margin-bottom:10px;
}


/* COUNTER SECTION */

.counter-section{
background:#f6f7fb;
padding:70px 0;
}

.counter-box{
background:#fff;
padding:25px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.counter-box:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.counter-box h3{
font-size:36px;
font-weight:700;
color:#ff3d00;
}

.counter-box p{
margin:0;
color:#555;
}

/* LOCATION */

.location-section{
background:#f7f8fc;
}

.location-box{
background:#fff;
padding:20px;
font-weight:600;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.location-box:hover{
background:#1e2a78;
color:#fff;
transform:translateY(-5px);
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* WHY CHOOSE */

.why-section{
    background: url("../images/background.jpg") no-repeat center center/cover;
    padding:90px 0;
    position:relative;
    color:#fff;
}

.why-section::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(30,42,120,0.8); /* overlay color */
    z-index:1;
}

.why-section .container{
    position:relative;
    z-index:2;
}

.section-title{
font-size:38px;
font-weight:700;
margin-bottom:20px;
}

.why-sub{
color:#fff;
margin-bottom:30px;
}

.why-list{
list-style:none;
padding:0;
}

.why-list li{
font-size:18px;
margin-bottom:15px;
display:flex;
align-items:center;
gap:12px;
}

.why-list i{
color:#6c63ff;
font-size:20px;
}

.why-image{
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 40px rgba(0,0,0,0.15);
}

.why-image img{
transition:0.4s;
}

.why-image:hover img{
transform:scale(1.05);
}

/* AFFILIATION */

.affiliations{
background:#f7f9fc;
}

.affiliations h2{
font-size:38px;
font-weight:700;
margin-bottom:20px;
}

.affiliationSlider{
padding:20px 0;
}

.affiliationSlider .swiper-slide{
background:#fff;
padding:30px;
border-radius:8px;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
}

.affiliationSlider img{
max-width:120px;
width:100%;
}

.affiliationSlider img{
filter: grayscale(100%);
transition:0.3s;
}

.affiliationSlider img:hover{
filter: grayscale(0%);
}

.affiliationSlider1{
padding:20px 0;
}

.affiliationSlider1 .swiper-slide{
background:#fff;
padding:30px;
border-radius:8px;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
}

.affiliationSlider1 img{
max-width:120px;
width:100%;
}

.affiliationSlider1 img{
filter: grayscale(100%);
transition:0.3s;
}

.affiliationSlider1 img:hover{
filter: grayscale(0%);
}


/* COMPANIES */

.companies img{
height:60px;
object-fit:contain;
}


/* TESTIMONIAL */

.testimonials{
background: url("../images/testi-background.jpg") no-repeat center center/cover;
    padding:90px 0;
    position:relative;
    color:#fff;
}

.testimonials h2{
font-weight:700;
font-size:38px;
color:#000;
}

.testimonial-box{
background:#fff;
padding:30px 25px;
border-radius:12px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:0.4s;
height:100%;
position:relative;
}

.testimonial-box:hover{
transform:translateY(-10px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.testimonial-img{
width:80px;
height:80px;
margin:auto;
margin-bottom:15px;
}

.testimonial-img img{
width:100%;
height:100%;
border-radius:50%;
object-fit:cover;
border:4px solid #f1f1f1;
}

.testimonial-box p{
font-size:15px;
color:#555;
margin-bottom:15px;
}

.testimonial-box h5{
font-weight:600;
margin-bottom:3px;
}

.testimonial-box span{
font-size:14px;
color:#777;
}

/* BLOG */

.blog-section{
background:#f8f9fb;
}

.section-title h2{
font-size:34px;
font-weight:700;
margin-bottom:10px;
}

.section-title p{
color:#777;
}

.blog-card{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:0.3s;
height:100%;
}

.blog-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.blog-img{
position:relative;
overflow:hidden;
}

.blog-img img{
width:100%;
height:230px;
object-fit:cover;
}

.blog-category{
position:absolute;
top:15px;
left:15px;
background:#0d6efd;
color:#fff;
padding:4px 12px;
font-size:12px;
border-radius:20px;
}

.blog-content{
padding:20px;
}

.blog-date{
font-size:13px;
color:#888;
margin-bottom:8px;
}

.blog-content h5{
font-size:20px;
font-weight:600;
margin-bottom:10px;
}

.blog-content p{
font-size:14px;
color:#666;
}

.read-btn{
display:inline-block;
margin-top:10px;
font-weight:600;
color:#0d6efd;
text-decoration:none;
}

.read-btn:hover{
text-decoration:underline;
}

/* CONTACT */

.contact-section{
background:#f8f9fa;
}

.contact-form-box{
background:#fff;
padding:40px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.contact-form-box h2{
font-weight:700;
font-size:38px;
margin-bottom:10px;
}

.contact-form-box p{
color:#666;
font-size:15px;
}

.contact-form-box .form-control{
border-radius:8px;
padding:12px;
border:1px solid #ddd;
}

.contact-form-box .form-control:focus{
box-shadow:none;
border-color:#007bff;
}

.contact-btn{
background:#0d6efd;
color:#fff;
padding:12px 25px;
border-radius:15px;
border:none;
transition:0.3s;
}

.contact-btn:hover{
background:#0d6efd;
}

.contact-image{
position:relative;
overflow:hidden;
border-radius:12px;
}

.contact-image img{
border-radius:12px;
}

.contact-overlay{
position:absolute;
bottom:20px;
left:20px;
background:rgba(0,0,0,0.7);
color:#fff;
padding:15px 20px;
border-radius:8px;
}


/* FOOTER */

.main-footer{
background: url("../images/background.jpg");
color:#fff;
padding:70px 0;
font-size:15px;
}

.main-footer h4{
font-size:20px;
font-weight:600;
margin-bottom:25px;
position:relative;
}

.main-footer h4:after{
content:'';
display:block;
width:50px;
height:3px;
background:#4dc3ff;
margin-top:8px;
}

.footer-about p{
line-height:1.7;
margin-bottom:15px;
}

.highlight-text{
font-style:italic;
font-weight:500;
color:#dce7ff;
}

.footer-links ul{
list-style:none;
padding:0;
}

.footer-links li{
margin-bottom:10px;
}

.footer-links a{
color:#fff;
text-decoration:none;
transition:0.3s;
}

.footer-links a:before{
content:"▸";
margin-right:8px;
color:#6bd1ff;
}

.footer-links a:hover{
padding-left:5px;
color:#9ad9ff;
}

.footer-contact p{
margin-bottom:12px;
line-height:1.6;
}

.footer-contact strong{
display:block;
margin-top:15px;
margin-bottom:5px;
}

/* BUTTON */

.btn-primary{
background:#5c6cff;
border:none;
}

.btn-primary:hover{
background:#4754d6;
}


/* RESPONSIVE */


@media(max-width:768px){

.header-wrapper{
flex-direction:column;
gap:15px;
}

.nav-menu ul{
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

}

@media(max-width:768px){

.menu{
flex-direction:column;
gap:10px;
text-align:center;
}

.hero-section h1{
font-size:32px;
}

}

/* ================= HERO ================= */
.hero-section{
  background: linear-gradient(135deg, #004aad, #007bff);
  padding: 80px 0;
}

.hero-section h1{
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-section p{
  font-size: 16px;
  opacity: 0.9;
}

/* ================= BREADCRUMB ================= */
.breadcrumb-section{
  background:#f8f9fa;
  padding:15px 0;
  font-size:14px;
}

.breadcrumb-section a{
  text-decoration:none;
  color:#007bff;
}

.breadcrumb-section span{
  color:#555;
}

/* ================= CONTENT CARD ================= */
.content-card{
  background:#fff;
  padding:30px;
  border-radius:10px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.content-card h2{
  font-size:28px;
  margin-bottom:20px;
  font-weight:600;
}

/* CONTENT AREA */
.content-area p{
  font-size:15px;
  line-height:1.8;
  color:#555;
  margin-bottom:15px;
}

.content-area h3{
  font-size:22px;
  margin-top:20px;
}

.content-area ul{
  padding-left:20px;
}

/* ================= ENQUIRY BOX ================= */
.enquiry-box{
  background:#fff;
  padding:25px;
  border-radius:10px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  position:sticky;
  top:100px;
}

.enquiry-box h4{
  margin-bottom:15px;
  font-weight:600;
}

/* FORM INPUT */
.enquiry-box input,
.enquiry-box select,
.enquiry-box textarea{
  width:100%;
  margin-bottom:12px;
  padding:12px;
  border:1px solid #ddd;
  border-radius:6px;
  font-size:14px;
  outline:none;
}

/* INPUT FOCUS */
.enquiry-box input:focus,
.enquiry-box select:focus,
.enquiry-box textarea:focus{
  border-color:#007bff;
}

/* BUTTON */
.enquiry-box button{
  width:100%;
  padding:12px;
  background:#007bff;
  color:#fff;
  border:none;
  border-radius:6px;
  font-size:15px;
  cursor:pointer;
  transition:0.3s;
}

.enquiry-box button:hover{
  background:#0056b3;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){

.hero-section h1{
  font-size:28px;
}

.content-card{
  padding:20px;
}

.enquiry-box{
  position:static;
  margin-top:20px;
}

}

/* HERO */
.contact-hero {
    height: 300px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('assets/images/contact-bg.jpg') center/cover no-repeat;
}

/* CONTACT BOX */
.contact-box {
    border-radius: 12px;
    transition: 0.3s ease;
    background: #fff;
}

.contact-box:hover {
    transform: translateY(-5px);
}

/* FORM */
.contact-form {
    border-radius: 12px;
    background: #fff;
}

.contact-form input,
.contact-form textarea {
    border-radius: 8px;
    padding: 12px;
}

.contact-form button {
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
}

/* MAP */
.map-container iframe {
    border-radius: 12px;
}

.blog-hero {
    position: relative;
    background: linear-gradient(135deg,#004aad,#007bff); color:#fff; padding:80px 0; center/cover no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    color: #fff;
}
.blog-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}
.blog-hero h1 {
    font-size: 40px;
    font-weight: 700;
}
.blog-hero .meta {
    opacity: 0.85;
}

/* CONTENT */
.blog-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
}
.blog-content {
    font-size: 17px;
    line-height: 1.8;
}
.blog-content h2, .blog-content h3 {
    margin-top: 25px;
}

/* SIDEBAR */
.sidebar-sticky {
    position: sticky;
    top: 100px;
}
.enquiry-box {
    background: #004aad;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}
.enquiry-box input {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: none;
}
.enquiry-box button {
    width: 100%;
    background: #fff;
    color: #004aad;
    border: none;
    padding: 10px;
    font-weight: bold;
}
.latest-box {
    margin-top: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

/* RELATED */
.related-card {
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    background: #fff;
}
.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.related-card .content {
    padding: 15px;
}
.related-card a {
    color: #004aad;
    font-weight: 600;
}

.latest-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.widget-title {
    font-weight: 600;
    margin-bottom: 15px;
    border-left: 4px solid #004aad;
    padding-left: 10px;
}

.latest-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.latest-item:hover {
    transform: translateX(5px);
}

.latest-img img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.latest-content a {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
}

.latest-content a:hover {
    color: #004aad;
}

.latest-content .date {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}


.blog-header {
    background: linear-gradient(135deg,#004aad,#007bff);
    padding: 70px 0;
    color: #fff;
    text-align: center;
}
.blog-header h1 {
    font-weight: 700;
}

/* BLOG CARD */
.blog-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-img {
    position: relative;
}
.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #004aad;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 4px;
}

.blog-content {
    padding: 20px;
}
.blog-date {
    font-size: 13px;
    color: #888;
}
.blog-content h5 {
    font-weight: 600;
    margin: 10px 0;
}

.read-btn {
    display: inline-block;
    margin-top: 10px;
    color: #004aad;
    font-weight: 600;
    text-decoration: none;
}
.read-btn:hover {
    text-decoration: underline;
}


