.hero-section{

background: linear-gradient(
rgba(5,20,70,0.9),
rgba(5,20,70,0.9)
),
url('/images/banner.png');

background-size: cover;
background-position: center;

padding:120px 0;
color:white;

}

.hero-content h1{

font-size:42px;
font-weight:700;
margin-bottom:20px;

}

.hero-content p{

font-size:18px;
margin-bottom:30px;

}

.stats-section {
  padding: 40px 15px;
}

.stats-card {
  background: #f2992e;
  border-radius: 20px;
  padding: 30px 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  position: relative;
  color: #fff;
}

/* items */
.stat-item {
  padding: 25px 10px;
}

.stat-item h2 {
  font-size: 32px;
  font-weight: 700;
}

.stat-item p {
  font-size: 14px;
  margin-top: 5px;
}

/* divider lines */
.stats-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 1px;
  background: rgba(255,255,255,0.7);
}

.stats-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255,255,255,0.7);
}

/* DESKTOP fallback (optional) */
@media (min-width: 768px) {
  .stats-card {
    grid-template-columns: repeat(4, 1fr);
  }

  .stats-card::before,
  .stats-card::after {
    display: none;
  }
}
img.logo {
    height: 105px !important;
}

/* Cards section */

.core-services{
background:white;
}

.services-container{
display:flex;
gap:15px;
justify-content:center;
}

.service-card{

width:110px;
height:420px;

border-radius:12px;

background-size:cover;
background-position:center;

display:flex;
align-items:center;
justify-content:center;

cursor:pointer;

position:relative;
overflow:hidden;

transition:0.5s;

}

.service-card::before{

content:"";
position:absolute;

width:100%;
height:100%;

background:linear-gradient(
to top,
rgba(10,20,60,0.9),
rgba(10,20,60,0.2)
);

}

.service-card span{

writing-mode:vertical-rl;
transform:rotate(180deg);

color:white;
font-size:20px;
font-weight:600;

position:relative;
z-index:2;

}

.service-card.expanded{
width:420px;
align-items:flex-end;
}

.service-card.expanded span{
display:none;
}

.service-info{

color:white;
padding:30px;
position:relative;
z-index:2;
display:none;

}

.service-card.expanded .service-info{
display:block;
}

/* Why Choose us  */
.client-section{
    padding:80px 0;
    background:#fcfbfb;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-header h2{
    font-size:36px;
    font-weight:700;
    color:#1c2340;
}

.section-header p{
    font-size:16px;
    color:#666;
    margin-top:10px;
}

.client-grid{
    display:grid;
    grid-template-columns: repeat(5,1fr);
    gap:25px;
}

.client-card{
    background:#0d1333;
    color:#fff;
    text-align:center;
    padding:30px 20px;
    border-radius:12px;
    box-shadow:0 6px 12px rgba(0,0,0,0.15);
    transition:0.3s;
}

.client-card:hover{
    transform:translateY(-8px);
}

.client-card .icon img{
    width:60px;
    margin-bottom:15px;
}

.client-card h3{
    font-size:20px;
    margin-bottom:8px;
}

.client-card p{
    font-size:14px;
    color:#cfd3ff;
}

@media (max-width:992px){
    .client-grid{
        grid-template-columns: repeat(2,1fr);
    }
}

/* Mobile */
@media (max-width:576px){
    .client-grid{
        grid-template-columns: repeat(2,1fr);
        gap:15px;
    }

    .client-card{
        padding:20px 15px;
    }

    .client-card h3{
        font-size:16px;
    }

    .client-card p{
        font-size:12px;
    }

    .client-card .icon img{
        width:50px;
    }

    /* Last card full width */
    .client-card:last-child{
        grid-column: span 2;
        display:flex;
        align-items:center;
        text-align:left;
        gap:15px;
        padding:20px;
    }

    .client-card:last-child .icon img{
        width:70px;
        margin-bottom:0;
    }
}


/* blade section */
/* Card*/
.case-study-section{
    background:#f2f2f2;
}

/* CARD BASE */
.case-card{
    max-width:900px;
    margin:auto;
    padding:80px 40px;
    color:#fff;
    position:relative;
    transform:rotate(-3deg);
    box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

/* TEXT */
.case-card h1{
    font-size:48px;
    font-weight:700;
}

/* BORDER */
.inner-border{
    border:2px dashed rgba(255,255,255,0.6);
    padding:40px;
    border-radius:10px;
}

/* TABLET */
@media (max-width:992px){

    .case-card{
        padding:60px 30px;
        transform:rotate(-2deg);
    }

    .case-card h1{
        font-size:32px;
    }

    .inner-border{
        padding:30px;
    }
}

/* MOBILE */
@media (max-width:576px){

    .case-card{
        padding:40px 20px;
        transform:rotate(0deg); /* remove tilt for mobile */
    }

    .case-card h1{
        font-size:22px;
        line-height:1.4;
    }

    .inner-border{
        padding:20px;
    }

    /* spacing fix */
    .carousel-inner{
        padding:10px;
    }
}

/* colors */

.blue-card{
background:#232a6d;
}

.orange-card{
background:#f59e0b;
}

.dark-card{
background:#0d1333;
}

/* carousel button styling */

.carousel-control-prev,
.carousel-control-next{
width:5%;
}

/* our work process */



/* RESET */
.tl-wrapper * {
    box-sizing: border-box;
}

/* WRAPPER */
.tl-wrapper {
    position: relative;
    width: 100%;
}

/* CENTER LINE */
.tl-line {
    position: absolute;
    left: 50%;
    top: 15%;
    width: 3px;
    height: 100%;
    background: black;
    transform: translateX(-50%);
}

/* DOT */
.tl-dot {
    position: absolute;
    left: 50%;
    width: 18px;
    height: 18px;
    background: orange;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* ITEM */
.tl-item {
    position: relative;
    height: 30vh;
}

/* BOX */
.tl-box {
    position: absolute;
    top: 140%;
    width: 550px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    transform: translateY(-50%);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* LEFT */
.tl-box.left {
    left: 5%;
}

/* RIGHT */
.tl-box.right {
    right: 5%;
}

.work-section{
    padding:80px 0;
    background:#f8f9fa;
}

/* GRID */
.work-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:30px;
}

/* CARD */
.work-card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    transition:0.3s;
}

.work-card:hover{
    transform:translateY(-8px);
}

.work-card img{
    width:80px;
    margin-bottom:15px;
}

.work-card h3{
    font-size:20px;
    margin-bottom:10px;
}

.work-card p{
    font-size:14px;
    color:#666;
}

/* TABLET */
@media (max-width:992px){
    .work-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width:576px){
    .work-grid{
        grid-template-columns: 1fr;
    }

    .work-card{
        padding:20px;
    }

    .work-card h3{
        font-size:18px;
    }

    .work-card p{
        font-size:13px;
    }
}

/* Blog */

.blog-section {
    margin-top: 2%;
    padding: 5%;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
}

.header h2 {
    font-size: 32px;
    font-weight: 600;
}

.header a {
    position: absolute;
    right: 0;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.blog-card {
    background: #11153b;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-card .content {
    padding: 15px;
}

.blog-card span {
    color: #f4b400;
    font-size: 12px;
    display: block;
    margin-bottom: 8px;
}

.blog-card p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonial */

.testimonial-title{
font-size:36px;
font-weight:700;
}

.testimonial-card{
background:#fff;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
padding:40px;
position:relative;
}

.testimonial-header{
background:#0b1235;
color:#fff;
padding:40px 30px;
border-radius:0 40px 0 0;
display:flex;
justify-content:space-between;
align-items:center;
margin-top:-70px;
position:relative;
}

.testimonial-header h4{
margin:0;
font-weight:700;
}

.testimonial-header span{
font-size:14px;
}

.testimonial-img{
width:120px;
height:120px;
border-radius:50%;
overflow:hidden;
border:6px solid #fff;
}

.testimonial-img img{
width:100%;
height:100%;
object-fit:cover;
}

.testimonial-content{
margin-top:30px;
font-size:15px;
color:#333;
}


.btn-warning{
background:#f59e0b;
border:none;
border-radius:8px;
}

.btn-warning:hover{
background:#e58f05;
}
/* FAQ */
.faq-section {
    background: #f3f3f3;
    padding: 60px 80px;
    font-family: Arial, sans-serif;
}

.faq-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* LEFT */
.faq-left {
    flex: 1;
}

.faq-left img {
    max-width: 100%;
    height: 100%;
}

.faq-left h2 {
    font-size: 36px;
    margin: 20px 0;
    font-weight: 700;
}

.faq-left h2 span {
    color: #f59e0b;
}

.faq-left p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* RIGHT */
.faq-right {
    flex: 1;
}

.faq-item {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 15px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question .icon {
    transition: 0.3s;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    font-size: 14px;
    color: #555;
    transition: 0.3s ease;
}

/* Active */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px;
}

.faq-item.active .icon {
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 900px) {
    .faq-container {
        flex-direction: column;
    }
}
/* Contact us form */

.contact-section{
    background:#f5f5f5;
    padding:60px 0;
}

/* Left Image */

.contact-image{
    background-size:cover;
    background-position:center;
    height:100%;
    width: 80%;
    border-top-right-radius:120px;
}

/* Form Wrapper */

.contact-form-wrapper{
    padding:60px;
}

.form-title{
    font-size:32px;
    font-weight:600;
    margin-bottom:30px;
}

/* Input Fields */

.custom-input{
    height:60px;
    border-radius:10px;
    border:1px solid #333;
    padding-left:20px;
}

/* Button */

.submit-btn{
    background:#232a63;
    height:55px;
    border-radius:10px;
    color: white;
}


/* Footer */

.footer-section{
background:#0a0f3c;
color:#fff;
padding:70px 0 20px;
position:relative;
}

/* dotted background */

.footer-section::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background-image: radial-gradient(rgba(255,255,255,0.2) 1px, transparent 1px);
background-size:25px 25px;
opacity:0.2;
pointer-events:none;
}

/* logo */

.footer-logo img{
width:200px;
margin-bottom:20px;
}

.footer-text{
color:#c7c7c7;
font-size:14px;
line-height:1.7;
}

/* titles */

.footer-title{
font-size:18px;
font-weight:600;
margin-bottom:20px;
}

/* links */

.footer-links{
list-style:none;
padding:0;
}

.footer-links li{
margin-bottom:8px;
}

.footer-links a{
color:#c7c7c7;
text-decoration:none;
}

.footer-links a:hover{
color:#fff;
}

/* contact */

.footer-contact{
list-style:none;
padding:0;
}

.footer-contact li{
margin-bottom:8px;
color:#c7c7c7;
}

/* divider */

.footer-divider{
border-top:1px dashed rgba(255,255,255,0.4);
margin:40px 0 20px;
}

/* copyright */

.footer-copy{
font-size:14px;
color:#c7c7c7;
}


/* About Us  Page */
.about-section {
    background: #ffffff;
    padding: 80px 0;
}

.title {
    font-size: 48px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.description {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Stats */
.stats {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.stat-item p {
    margin: 0;
    font-size: 14px;
    color: white;
}

/* Divider line */
.divider {
    width: 1px;
    height: 50px;
    background: #f59e0b;
}

/* Images */
.image-wrapper {
    position: relative;
}

.img-top {
    width: 55%;
    border-radius: 16px;
    margin-bottom: 20px;
    height: 300px;
}

.img-bottom {
    width: 49%;
    border-radius: 16px;
    position: absolute;
    left: 40%;
}

/* Responsive */
@media (max-width: 576px){

    /* SECTION */
    .about-section{
        padding: 30px 0;
        background: #fff;
    }

    .about-section .container{
        padding: 0 20px;
    }

    /* ROW FIX */
    .about-section .row{
        display: flex;
        flex-direction: column;
    }

    /* 🔥 IMAGE FIRST */
    .about-section .col-lg-6:nth-child(2){
        order: 1;
    }

    /* 🔥 TEXT SECOND */
    .about-section .col-lg-6:nth-child(1){
        order: 2;
    }

    /* TITLE */
    .title{
        font-size: 36px;
        line-height: 1.2;
        font-weight: 700;
        color: #101631;
        margin-top: 55px;
        margin-bottom: 15px;
    }

    /* TEXT */
    .description{
        font-size: 14px;
        line-height: 1.4;
        color: #222;
        margin-bottom: 20px;
    }

    /* ================= */
    /* IMAGES DESIGN */
    .image-wrapper{
        position: relative;
        margin-bottom: 20px;
        min-height: 260px;
    }

    .img-top{
        width: 75%;
        height: 150px;
        object-fit: cover;
        border-radius: 16px;
    }

    .img-bottom{
        width: 60%;
        height: 150px;
        object-fit: cover;
        border-radius: 16px;
        position: absolute;
        right: 0;
        top: 170px;
    }

    /* ================= */
    /* STATS GRID */
    .stats{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 25px 10px;
        text-align: center;
        margin-top: 30px;
        position: relative;
    }

    /* remove old divider */
    .divider{
        display: none;
    }

    /* vertical line */
    .stats::before{
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        height: 100%;
        width: 2px;
        background: #000;
        transform: translateX(-50%);
    }

    /* stats text */
    .stat-item h3{
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .stat-item p{
        font-size: 11px;
        color: #000;
        margin: 0;
    }

}


.stat-box{
border-right:1px solid #ccc;
padding-right:25px;
}

.stat-box:last-child{
border:none;
}

.stat-box h3{
font-size:28px;
font-weight:700;
margin-bottom:5px;
}

.stat-box p{
font-size:14px;
color:#555;
}

/* image layout */

.about-images{
position:relative;
}

.about-images img{
border-radius:20px;
}

.img1{
width:350px;
margin-bottom:20px;
}

.img2{
width:350px;
margin-left:15px;
}

.our-story-section{
padding:100px 0;
background:#ffffff;
}

/* header */

.story-header h2{
font-size:40px;
font-weight:700;
margin-bottom:10px;
}

.story-header p{
color:#555;
max-width:600px;
margin:auto;
}

/* year */

.story-year{
font-size:48px;
font-weight:700;
margin-bottom:10px;
}

/* title */

.story-title{
color:#444;
margin-bottom:20px;
}

/* list */

.story-list{
list-style:none;
padding:0;
}

.story-list li{
margin-bottom:15px;
padding-left:25px;
position:relative;
color:#555;
}

.story-list li::before{
content:"✔";
position:absolute;
left:0;
color:#333;
}

/* image */

.story-img{
border-radius:25px;
}

/* timeline */

.timeline{
display:flex;
justify-content:space-between;
align-items:center;
margin-top:60px;
position:relative;
}

.timeline::before{
content:"";
position:absolute;
width:100%;
height:2px;
background:#ccc;
top:50%;
left:0;
}

.timeline-item{
width:12px;
height:12px;
background:#f59e0b;
border-radius:50%;
position:relative;
z-index:2;
}

.timeline-item.active{
width:18px;
height:18px;
border: 3px solid #f59e0b;
background: #f59e0b;
}
.timeline-span {
    margin-top: 10px;
}

.vision-section{
padding:100px 0;
background:#ffffff;
}

/* title */

.vision-title{
font-size:38px;
font-weight:700;
margin-bottom:15px;
}

.vision-desc{
color:#555;
margin-bottom:30px;
}

/* content */

.vision-item{
margin-bottom:25px;
}

.vision-item h5{
font-weight:600;
margin-bottom:8px;
}

.vision-item p{
color:#555;
}

/* images */

.vision-images{
display:flex;
gap:20px;
align-items:flex-end;
}

.vision-img{
border-radius:30px;
object-fit:cover;
}

/* different heights */

.img1{
height:300px;
width:170px;
}

.img2{
height:380px;
width:170px;
}

.img3{
height:320px;
width:170px;
}


.vision-section{
    padding:100px 0;
    background:#fff;
}

.vision-images{
    display:flex;
    gap:20px;
    align-items:flex-start;
    justify-content:center;
}

.vision-img{
    width:170px;
    object-fit:cover;
    border-radius:30px;
}

.img1{
    height:300px;
    margin-top:40px;
}

.img2{
    height:340px;
    margin-top:0;
}

.img3{
    height:300px;
    margin-top:80px;
}

.vision-title{
    font-size:38px;
    font-weight:700;
    margin-bottom:15px;
}

.vision-desc{
    font-size:18px;
    color:#000;
    margin-bottom:60px;
}

.vision-item{
    margin-bottom:55px;
}

.vision-item h5{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
}

.vision-item p{
    font-size:18px;
    color:#000;
}

/* Mobile */
@media(max-width:576px){

    .vision-section{
        padding:0 0 20px;
        text-align:center;
    }

    .vision-section .container{
        padding:0 26px;
    }

    .vision-section .row{
        display:flex;
        flex-direction:column;
    }

    .vision-images{
        display:flex;
        justify-content:center;
        align-items:flex-start;
        gap:5px;
        margin-bottom:80px;
    }

    .vision-img{
        width:32%;
        object-fit:cover;
        border-radius:22px;
    }

    .img1{
        height:235px;
        margin-top:40px;
    }

    .img2{
        height:238px;
        margin-top:0;
    }

    .img3{
        height:235px;
        margin-top:75px;
    }

    .vision-title{
        font-size:22px;
        line-height:1.25;
        font-weight:700;
        margin-bottom:8px;
    }

    .vision-desc{
        font-size:21px;
        line-height:1.25;
        margin-bottom:90px;
    }

    .vision-item{
        margin-bottom:90px;
    }

    .vision-item h5{
        font-size:22px;
        font-weight:700;
        margin-bottom:12px;
    }

    .vision-item p{
        font-size:21px;
        line-height:1.25;
        margin:0;
    }
}


.core-values-section{
    background:#f5f5f5;
}

.core-title{
    font-size:40px;
    font-weight:700;
}

.core-subtitle{
    color:#666;
    max-width:600px;
    margin:auto;
}

.core-card{
    background:#0b1238;
    color:white;
    padding:35px 28px;
    border-radius:20px;
    height:100%;
    box-shadow:0 10px 20px rgba(0,0,0,0.15);
    transition:all .3s ease;
}

.core-card h4{
    font-size:22px;
    font-weight:600;
    margin-bottom:15px;
}

.core-card p{
    font-size:15px;
    line-height:1.7;
    color:#dcdcdc;
}

.core-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,0.25);
}

.ceo-section{
    background:#ffffff;
}

.ceo-image img{
    width:100%;
    border-radius:30px;
    object-fit:cover;
    height: 500px;
}

.ceo-content-card{
    background:#efefef;
    border:1.5px solid #222;
    border-radius:30px;
    padding:40px;
}

.ceo-name{
    font-size:36px;
    font-weight:700;
    margin-bottom:5px;
}

.ceo-position{
    font-size:22px;
    font-weight:600;
    margin-bottom:20px;
}

.ceo-content-card p{
    font-size:15px;
    line-height:1.7;
    color:#333;
}

.leadership-section{
    background:#ffffff;
}

.leadership-title{
    font-size:40px;
    font-weight:700;
}

.leadership-subtitle{
    color:#666;
    max-width:500px;
    margin:auto;
}

.leader-card{
    background:white;
    border-radius:25px;
    overflow:hidden;
    border:1px solid #333;
    text-align:center;
    transition:0.3s;
}

.leader-img img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.leader-name{
    padding:18px;
    font-size:18px;
    font-weight:500;
    background:#f3f3f3;
}

.leader-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.blog-section{
background:#f7f7f7;
}

.blog-card{
border-radius:12px;
overflow:hidden;
transition:0.3s;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.blog-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 20px rgba(0,0,0,0.12);
}

.blog-card img{
height:200px;
object-fit:cover;
}

h5.card-title {

color:#f2992e;
}

/* Dynamic FAQ Page */
.faq-banner-section{
    background:#f8fbff;
    padding:70px 0;
    border-bottom:1px solid #eef1f5;
}
.faq-banner-section .faq-label{
    display:inline-block;
    background:#fff3df;
    color:#f6a11a;
    font-weight:700;
    padding:7px 16px;
    border-radius:50px;
    margin-bottom:18px;
}
.faq-banner-section h1{
    font-size:54px;
    line-height:1.15;
    font-weight:800;
    color:#05061f;
    margin-bottom:18px;
}
.faq-banner-section h1 span{ color:#f6a11a; }
.faq-banner-section p{
    font-size:17px;
    line-height:1.7;
    max-width:560px;
    color:#333;
}
.faq-banner-img{
    width:100%;
    max-width:560px;
    max-height:430px;
    object-fit:contain;
}
.faq-list-section{
    padding:70px 0;
    background:#fff;
}
.faq-list-wrapper{
    max-width:980px;
    margin:0 auto;
}
.faq-card{
    border:1px solid #10162f;
    border-radius:8px;
    margin-bottom:18px;
    background:#fff;
    overflow:hidden;
}
.faq-card-question{
    width:100%;
    border:0;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:24px 30px;
    font-size:24px;
    font-weight:800;
    color:#000;
    text-align:left;
    cursor:pointer;
}
.faq-card-question i{
    font-style:normal;
    font-size:32px;
    line-height:1;
    transition:.25s ease;
}
.faq-card-answer{
    display:none;
    padding:0 30px 24px;
    font-size:16px;
    line-height:1.7;
    color:#222;
}
.faq-card-answer p{ margin-bottom:12px; }
.faq-card-answer ul,
.faq-card-answer ol{ padding-left:22px; margin-bottom:12px; }
.faq-card.active .faq-card-answer{ display:block; }
.faq-card.active .faq-card-question i{ transform:rotate(180deg); }
@media(max-width:768px){
    .faq-banner-section{ padding:45px 0; }
    .faq-banner-section h1{ font-size:36px; }
    .faq-card-question{ font-size:18px; padding:18px 20px; }
    .faq-card-answer{ padding:0 20px 18px; }
}

/* Dynamic Leadership Section */
.dynamic-leader-card{
    position:relative;
    height:100%;
}

.leader-img-wrap{
    position:relative;
    overflow:hidden;
}

.leader-social-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:-70px;
    display:flex;
    justify-content:center;
    gap:10px;
    padding:14px 10px;
    background:rgba(0,0,0,0.72);
    transition:0.35s ease;
}

.dynamic-leader-card:hover .leader-social-overlay{
    bottom:0;
}

.leader-social-overlay a{
    width:36px;
    height:36px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#ffffff;
    color:#0b1230;
    font-size:16px;
    font-weight:700;
    text-decoration:none;
    transition:0.3s;
}

.leader-social-overlay a:hover{
    background:#f2992e;
    color:#ffffff;
}

.leader-designation{
    margin-top:-10px;
    padding:0 18px 10px;
    font-size:14px;
    font-weight:600;
    color:#f2992e;
    background:#f3f3f3;
}

.leader-description{
    padding:0 18px 18px;
    margin:0;
    font-size:14px;
    line-height:1.6;
    color:#444;
    background:#f3f3f3;
}
.contact-map iframe{width:100% !important;height:420px !important;border:0 !important;display:block;}
.footer-links a,.footer-contact a{color:inherit;text-decoration:none;}
.footer-links a:hover,.footer-contact a:hover{color:#f6a11a;}

/* ===== Vallore New Homepage + Common Navbar ===== */
:root{
  --va-blue:#061d45;
  --va-blue2:#003e9f;
  --va-gold:#f4a300;
  --va-text:#172033;
  --va-light:#f7f9fc;
}
body{font-family:Arial,Helvetica,sans-serif;color:var(--va-text)}
.va-main-navbar{background:#fff;box-shadow:0 8px 28px rgba(6,29,69,.08);padding:8px 0;z-index:1030}
.va-navbar-logo{height:62px;max-width:210px;object-fit:contain}
.va-main-navbar .nav-link{font-size:15px;font-weight:700;color:var(--va-blue)!important;margin:0 8px;position:relative}
.va-main-navbar .nav-link.active,.va-main-navbar .nav-link:hover{color:var(--va-gold)!important}
.va-main-navbar .dropdown-menu{border:0;box-shadow:0 14px 38px rgba(6,29,69,.14);border-radius:10px;padding:10px;min-width:240px}
.va-main-navbar .dropdown-item{font-weight:600;color:var(--va-blue);border-radius:7px;padding:9px 12px}
.va-main-navbar .dropdown-item:hover{background:#f6f8fc;color:var(--va-gold)}
.va-main-navbar .dropdown-submenu{position:relative}
.va-main-navbar .dropdown-submenu .sub-services-dropdown-menu{display:none;position:absolute;left:100%;top:0;margin-left:6px}
.va-main-navbar .dropdown-submenu:hover>.sub-services-dropdown-menu{display:block}
.va-nav-btn,.va-btn-gold{background:var(--va-gold);color:#111!important;border-radius:7px;padding:12px 24px;font-weight:800;display:inline-block;text-decoration:none;border:0}
.va-nav-btn:hover,.va-btn-gold:hover{background:#df9300;color:#111!important}
.va-btn-outline{border:1px solid #fff;color:#fff!important;border-radius:7px;padding:12px 24px;font-weight:800;display:inline-block;text-decoration:none}
.va-btn-outline:hover{background:#fff;color:var(--va-blue)!important}
.va-hero{min-height:590px;position:relative;display:flex;align-items:center;overflow:hidden;background:var(--va-blue)}
.va-hero-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.55}
.va-hero:before{content:"";position:absolute;inset:0;background:url('../images/banner.png') center/cover no-repeat;opacity:.4;z-index:0}
.va-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(3,18,44,.96),rgba(3,18,44,.66),rgba(3,18,44,.34));z-index:1}
.va-hero .container{position:relative;z-index:2}
.va-hero-content{max-width:720px;color:#fff;padding:75px 0}
.va-eyebrow{font-size:13px;letter-spacing:1.8px;text-transform:uppercase;color:var(--va-gold);font-weight:900;margin-bottom:12px}
.va-hero h1{font-family:Georgia,serif;font-size:58px;line-height:1.05;font-weight:900;margin-bottom:18px}.va-hero h1 span{color:var(--va-gold)}
.va-hero p{font-size:18px;line-height:1.7;color:#edf3ff;max-width:650px;margin:0}
.va-partners{padding:30px 0;background:#fff;border-bottom:1px solid #eef1f6;overflow:hidden}
.va-section-small{text-align:center;color:var(--va-blue2);font-weight:900;font-size:13px;letter-spacing:.6px;text-transform:uppercase;margin-bottom:22px}
.va-logo-slider{overflow:hidden;width:100%}.va-logo-track{display:flex;gap:18px;animation:vaScroll 26s linear infinite;width:max-content}.va-logo-item{width:160px;height:54px;border:1px solid #e8eef7;border-radius:10px;display:grid;place-items:center;font-weight:900;color:#637083;background:#fff;filter:grayscale(1);box-shadow:0 6px 18px rgba(6,29,69,.04)}
@keyframes vaScroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.va-section{padding:72px 0}.va-work{background:linear-gradient(180deg,#fff,#f7faff)}.va-blogs{background:var(--va-light)}
.va-tag{color:var(--va-gold);font-size:13px;font-weight:900;text-transform:uppercase;letter-spacing:.7px;margin-bottom:8px}.va-title{font-family:Georgia,serif;font-size:38px;line-height:1.18;font-weight:900;color:var(--va-blue);margin-bottom:16px}.va-title span{color:var(--va-gold)}.va-muted{color:#5f6b7a;line-height:1.75}.va-center-title{text-align:center;margin-bottom:34px}.va-gold-line{width:78px;height:3px;background:var(--va-gold);margin:10px auto 0;border-radius:10px}
.va-about-img{border-radius:10px;width:100%;height:285px;object-fit:cover;box-shadow:0 16px 40px rgba(6,29,69,.14);background:#f3f5f9}.va-stat-card{background:#fff;border-radius:10px;padding:24px 18px;box-shadow:0 10px 35px rgba(6,29,69,.08);height:100%;border:1px solid #edf1f7}.va-stat-card i{font-size:30px;color:var(--va-gold)}.va-stat-card h3{font-size:30px;font-weight:900;color:var(--va-blue);margin:8px 0 2px}.va-stat-card p{margin:0;font-weight:700;color:#32405a;font-size:13px}
.va-process-card{background:#fff;border:1px solid #e9eef6;border-radius:12px;padding:25px 22px;box-shadow:0 12px 32px rgba(6,29,69,.08);display:flex;align-items:center;gap:17px;height:100%;position:relative;transition:.3s}.va-process-card:hover{transform:translateY(-6px)}.va-step{position:absolute;left:18px;top:-18px;width:45px;height:45px;border-radius:50%;display:grid;place-items:center;background:var(--va-blue);color:#fff;font-weight:900;border:4px solid #fff;box-shadow:0 7px 20px rgba(0,0,0,.16)}.va-process-card.gold .va-step{background:var(--va-gold)}.va-process-icon{width:76px;height:76px;min-width:76px;border-radius:50%;background:#f6f9ff;display:grid;place-items:center;color:var(--va-blue);font-size:33px;border:1px solid #edf2fa}.va-process-card.gold .va-process-icon{color:var(--va-gold)}.va-process-card h4{font-size:20px;font-weight:900;color:var(--va-blue);margin:0 0 6px}.va-process-card p{margin:0;color:#5f6b7a;font-size:14px;line-height:1.55}
.va-service-card{background:#fff;border:1px solid #e9eef6;border-radius:10px;padding:28px 14px;text-align:center;height:100%;box-shadow:0 8px 26px rgba(6,29,69,.06);transition:.3s;display:block;text-decoration:none}.va-service-card:hover{transform:translateY(-5px);border-color:var(--va-gold)}.va-service-card i{font-size:34px;color:var(--va-gold);margin-bottom:12px;display:block}.va-service-card h5{font-weight:900;color:var(--va-blue);font-size:16px;margin:0;line-height:1.35}
.va-blog-card{background:#fff;border-radius:10px;overflow:hidden;border:1px solid #e9eef6;box-shadow:0 10px 30px rgba(6,29,69,.07);height:100%}.va-blog-card img{width:100%;height:155px;object-fit:cover;background:#eef2f7}.va-blog-body{padding:18px}.va-blog-date{font-size:12px;color:#6b7688;margin-bottom:8px}.va-blog-card h5{font-size:17px;font-weight:900;color:var(--va-blue);line-height:1.35;min-height:68px}.va-blog-card a{font-size:13px;font-weight:900;color:var(--va-blue2);text-decoration:none}
.va-contact-img{background:#f3f7ff;border-radius:12px;min-height:320px;display:grid;place-items:center;overflow:hidden;padding:20px}.va-contact-img img{max-width:100%;max-height:300px}.va-section .form-control,.va-section .form-select{height:48px;border-radius:7px;border:1px solid #d9dee8}.va-section textarea.form-control{height:110px}.va-section .form-control:focus,.va-section .form-select:focus{box-shadow:none;border-color:var(--va-gold)}
.va-cta{background:linear-gradient(90deg,var(--va-blue),#092a5f);color:#fff;padding:38px 0}.va-cta h3{font-family:Georgia,serif;font-weight:900;font-size:32px;margin:0}.va-cta p{margin:6px 0 0;color:#dce6f7}.va-faq{max-width:900px;margin:auto}.va-faq .accordion-item{border:1px solid #e1e6ef;margin-bottom:12px;border-radius:8px!important;overflow:hidden}.va-faq .accordion-button{font-weight:800;color:var(--va-blue)}.va-faq .accordion-button:not(.collapsed){background:#fff;color:var(--va-blue);box-shadow:none}.va-faq .accordion-button:focus{box-shadow:none}
@media(max-width:991px){.va-navbar-logo{height:52px}.va-main-navbar .navbar-collapse{padding:14px 0}.va-nav-btn{margin-top:8px}.va-main-navbar .dropdown-submenu .sub-services-dropdown-menu{position:static;margin-left:10px;box-shadow:none;border:1px solid #eef2f6}.va-hero{min-height:520px}.va-hero h1{font-size:42px}.va-logo-track{animation-duration:18s}.va-section{padding:54px 0}}
@media(max-width:576px){.va-hero{min-height:500px}.va-hero-content{padding:45px 0}.va-hero h1{font-size:34px}.va-hero p{font-size:15px}.va-title{font-size:30px}.va-process-card{padding:26px 18px;gap:14px}.va-process-icon{width:62px;height:62px;min-width:62px;font-size:28px}.va-btn-gold,.va-btn-outline{padding:10px 16px;font-size:13px}}

.va-customer-login-btn{
    display:inline-block;
    padding:10px 18px;
    border:1px solid rgba(255,255,255,.7);
    color:#fff;
    border-radius:6px;
    font-weight:700;
    font-size:14px;
    transition:.3s;
}
.va-customer-login-btn:hover{
    background:#fff;
    color:#061d45;
}
@media(max-width:991px){
    .va-customer-login-btn{
        color:#061d45;
        border-color:#061d45;
        margin-top:10px;
    }
}
.va-blog-body p{
    color:#5f6b7a;
    font-size:14px;
    line-height:1.55;
    margin-bottom:12px;
}


/* ===== 3 Level Services Mega Menu ===== */
.va-main-navbar .service-mega-dropdown:hover > .va-mega-menu{display:block;}
.va-main-navbar .va-mega-menu{
    width:min(1120px, calc(100vw - 40px));
    left:50%;
    transform:translateX(-50%);
    top:100%;
    border:0;
    border-radius:16px;
    padding:28px 32px;
    box-shadow:0 18px 50px rgba(6,29,69,.18);
}
.va-mega-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px 42px;}
.va-mega-column{min-width:0;}
.va-mega-heading{display:block;color:var(--va-blue);font-weight:900;font-size:17px;margin-bottom:14px;text-decoration:none;}
.va-mega-heading:hover{color:var(--va-gold);}
.va-mega-list,.va-mega-child-list{list-style:none;padding:0;margin:0;}
.va-mega-list>li{margin-bottom:12px;}
.va-mega-sub{display:block;color:#5f6b7a;font-size:15px;font-weight:700;text-decoration:none;margin-bottom:6px;}
.va-mega-sub:hover{color:var(--va-gold);}
.va-mega-child-list{margin-left:13px;border-left:2px solid #eef2f7;padding-left:12px;}
.va-mega-child-list li{margin:6px 0;}
.va-mega-child-list a{color:#7a8493;font-size:14px;text-decoration:none;}
.va-mega-child-list a:hover{color:var(--va-gold);}
.va-customer-login-btn{border-color:var(--va-blue);color:var(--va-blue)!important;background:#fff;}
.va-customer-login-btn:hover{background:var(--va-blue);color:#fff!important;}
@media(max-width:991px){
    .va-main-navbar .service-mega-dropdown:hover > .va-mega-menu{display:none;}
    .va-main-navbar .service-mega-dropdown .va-mega-menu.show{display:block;}
    .va-main-navbar .va-mega-menu{position:static;width:100%;transform:none;padding:16px;box-shadow:none;border:1px solid #eef2f7;}
    .va-mega-grid{grid-template-columns:1fr;gap:16px;}
    .va-customer-login-btn{color:#061d45!important;border-color:#061d45;}
}
