
   


























.about-media-section {
    background: #f5f5f5;
    padding: 90px 0;
}

.about-media-section .about-content {
    max-width: 900px;
    margin: auto;
}

.about-media-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0f3c63;
    margin-bottom: 25px;
}

.about-media-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-media-section {
        padding: 60px 20px;
    }

    .about-media-section h3 {
        font-size: 20px;
    }

    .about-media-section p {
        font-size: 14px;
    }
}
.about-media-section h3 {
    font-size: 26px;
    font-weight: 700;
    color: #ef8944;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}



































.choose-us-section {
    background: #d3cdcd;
    padding: 110px 0;
    text-align: center;
}

/* ===== Title ===== */
.choose-us-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ===== Center Red Dot Divider ===== */


/* ===== Box ===== */
.choose-box {
    padding: 30px 20px;
    transition: 0.3s ease;
}

.choose-box:hover {
    transform: translateY(-8px);
}

/* ===== Dotted Double Circle Icon ===== */
.icon-circle {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    border: 2px dashed #ef8944;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-circle::before {
    content: "";
    position: absolute;
    width: 85px;
    height: 85px;
    border: 2px dashed #ef8944;
    border-radius: 50%;
}

/* Icon */
.icon-circle i {
    width: 60px;
    height: 60px;
    background: #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #555;
    z-index: 2;
    transition: 0.3s ease;
}

/* Hover animation */
.choose-box:hover .icon-circle i {
    background: #ef8944;
    color: #fff;
    transform: scale(1.1);
}

/* Title */
.choose-box h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Paragraph */
.choose-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .choose-us-section {
        padding: 70px 20px;
    }
}
.choose-us-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f9f9f9, #eeeeee);
    position: relative;
    text-align: center;
}

/* ===== Glass Effect ===== */
.choose-box {
    padding: 35px 25px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.6);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.choose-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

/* ===== Dotted Circle ===== */
.icon-circle {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    border: 2px dashed #ef8944;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.5s ease;
}

/* Inner Dotted */
.icon-circle::before {
    content: "";
    position: absolute;
    width: 85px;
    height: 85px;
    border: 2px dashed #ef8944;
    border-radius: 50%;
}

/* Rotate only on hover */
.choose-box:hover .icon-circle {
    animation: rotateCircle 2s linear infinite;
}

@keyframes rotateCircle {
    100% { transform: rotate(360deg); }
}

/* ===== Icon Style ===== */
.icon-circle i {
    width: 60px;
    height: 60px;
    background: #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #555;
    z-index: 2;
    transition: 0.3s ease;
}
.center-divider {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Glow Effect */
.choose-box:hover .icon-circle i {
    background: #ef8944;
    color: #fff;
    box-shadow: 0 0 20px #ef8944;
    transform: scale(1.1);
}

/* ===== Animated Center Divider ===== */
.center-divider {
    width: 2px;
    height: 45px;
    background: #ddd;
    margin: 20px auto;
    position: relative;
}

.center-divider::after {
    content: "";
    width: 12px;
    height: 12px;
    background: #ef8944;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.4); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

/* ===== Text ===== */
.choose-box h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

/* Responsive */
@media (max-width: 768px) {
    .choose-us-section {
        padding: 80px 20px;
    }
}


.choose-us-section .section-title h2 {
    color: #ef8944;
    font-weight: 700;
    letter-spacing: 1px;
}
.center-divider::before,
.center-divider::after {
    content: none !important;
    background: none !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
}







.how-work-section {
  padding: 120px 0;
  background: #f5f5f5;
}

.work-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  transition: 0.4s ease;
}

.work-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.work-box img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.work-box h4 {
  color: #ef8944;
  font-weight: 700;
  margin-bottom: 10px;
}

.work-box ul li {
  font-size: 14px;
  margin-bottom: 6px;
}

/* Arrow Color */
.swiper-button-next,
.swiper-button-prev {
  color: #ef8944;
}
.section-title h2 {
    color: #ef8944 !important;
}
.swiper-button-next,
.swiper-button-prev {
    color: #ef8944 !important;
}
.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #ef8944 !important;
}
.how-work-section .section-title h2 {
    font-size: 30px;
}

@media (max-width: 768px) {
    .how-work-section .section-title h2 {
        font-size: 24px;
    }
}


h2 {
    color: #0f3c63;
}






























.team-section {
  padding: 120px 0;
  background: #f5f5f5;
}

/* Card */
.team-card {
  position: relative;
  text-align: center;
  overflow: hidden;
  transition: 0.4s ease;
}

.team-card img {
  width: 100%;
  transition: 0.4s ease;
}

/* Hover Zoom */
.team-card:hover img {
  transform: scale(1.05);
}

/* Info Overlay */
.team-info {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.8);
  color: #fff;
  width: 70%;
  padding: 15px;
  border-radius: 30px 30px 0 0;
}

.team-info h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-info span {
  font-size: 13px;
  color: #ccc;
}

/* Arrow Color */
.swiper-button-next,
.swiper-button-prev {
  color: #ef8944;
}

/* Pagination */
.swiper-pagination-bullet-active {
  background: #ef8944;
}
.team-section .section-title h2 {
    font-size: 28px;   /* pehle agar 40px tha to ab compact */
    font-weight: 700;
}
@media (max-width: 768px) {
    .team-section .section-title h2 {
        font-size: 22px;
    }
}
.team-section {
    padding: 110px 0;
    background: linear-gradient(to bottom, #ffffff, #f4f8fb);
}


































.testimonial-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f9fafc, #eef3f8);
}

.section-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0f3c63;
}

.section-title p {
  font-size: 14px;
  color: #777;
}

.center-divider {
  width: 2px;
  height: 40px;
  background: #ddd;
  margin: 15px auto;
  position: relative;
}

.center-divider::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #ef8944;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Wrapper */
.testimonial-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Client Image */
.client-image img {
  width: 320px;
  border-radius: 12px;
}

/* Card */
.testimonial-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  max-width: 500px;
}

.testimonial-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.testimonial-card h4 span {
  font-weight: 400;
  color: #888;
  font-size: 14px;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #555;
}

/* Pagination */
.swiper-pagination-bullet-active {
  background: #ef8944;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .client-image img {
    width: 250px;
  }
}








/* ============================
   Testimonial Section
============================= */
.testimonial-section {
    background: #1a2233; /* dark grey */
    padding: 80px 0;
}

/* Title */
.testimonial-section .section-title h2 {
    color: #ef8944;
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 10px;
}

.testimonial-section .section-title p {
    color: #dcdcdc;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Divider */
.center-divider {
    width: 80px;
    height: 4px;
    background: #ef8944;
    margin: 10px auto 40px;
    border-radius: 5px;
}



















.social-cta {
    position: relative;
    background: url('https://img.freepik.com/premium-photo/two-children-are-playing-with-laptop-video-game-screen_1206963-28932.jpg') center/cover no-repeat;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

/* Dark overlay */
.social-cta .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
}

/* Content */
.social-content {
    position: relative;
    z-index: 2;
}

.social-text {
    color: #fff;
    font-size: 20px;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icons a {
    width: 55px;
    height: 55px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.4s ease;
    position: relative;
}

/* Hover Effect */
.social-icons a:hover {
    background: #ef8944;
    border-color: #ef8944;
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 10px 25px rgba(239,137,68,0.6);
}
























/* Footer Headings */
.footer-section .widget-head h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Footer Links */
.footer-section .list-area li a,
.footer-section .footer-contect li p,
.footer-section .footer-contect li a {
    font-size: 13px;
    line-height: 1.7;
}

/* Newsletter Text */
.footer-section .footer-content p {
    font-size: 13px;
}

/* Footer Bottom Text */
.footer-bottom p,
.footer-bottom .footer-menu li a {
    font-size: 12px;
}
.footer-section .widget-head h3 {
    font-size: 14px;
}
.footer-section .widget-head h1,
.footer-section .widget-head h2,
.footer-section .widget-head h3,
.footer-section .widget-head h4 {
    font-size: 14px !important;
}





















.brand-card {
    transition: 0.4s ease;
}

.brand-card:hover {
    transform: translateY(-10px);
}
.brand-card {
    background: #D8D2C6;   /* Same beige color */
    padding: 30px;
    border-radius: 16px;
    transition: 0.4s ease;
    color: #222;           /* Dark text for contrast */
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.brand-card:hover {
    transform: translateY(-12px);
    background: #CFC8BB;   /* Slight darker on hover */
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}















.choose-box {
    background: #D8D2C6;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    transition: 0.4s ease;
    color: #222;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.choose-box:hover {
    transform: translateY(-12px);
    background: #CFC8BB;
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}

.icon-circle i {
    color: #fff;
    font-size: 24px;
}

.choose-box:hover .icon-circle {
    background: #000;
}










































































/* ABOUT SECTION START*/

/* Header */











.main-header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 0;
    z-index: 999;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
}

/* Menu */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu ul li a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: #ef8944;
}

/* Button */
.btn-main {
    padding: 10px 25px;
    background: #ef8944;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-main:hover {
    background: #d97330;
}


/* Hero */
.page-hero {
    position: relative;
    padding: 220px 0 180px;
    background: url('https://t3.ftcdn.net/jpg/05/79/55/06/360_F_579550696_SMUucrDyXhtzDctg8eKSWRvHrRoLJGY5.jpg') center/cover no-repeat;
    text-align: center;
    color: #fff;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb span {
    margin: 0 8px;
    opacity: 0.7;
}

/* Title */
.page-hero h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Subtitle */
.page-hero p {
    font-size: 18px;
    opacity: 0.85;
}


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

    .nav-menu {
        display: none;
    }

    .page-hero h1 {
        font-size: 34px;
    }

    .page-hero {
        padding: 150px 0 100px;
    }
}
.floating-header {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    z-index: 999;
}

.header-inner {
    background: #ffffff;
    padding: 18px 35px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo img {
    height: 55px;
}

/* Menu */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #0f3c63;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu ul li a:hover {
    color: #ef8944;
}

/* Right Side */
.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.support-text {
    font-size: 14px;
    color: #ef8944;
}

/* Button */
.btn-start {
    background: red;
    padding: 10px 22px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-start:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(90,62,232,0.4);
}
.page-hero h1 {
    color: #ef8944 !important;
}
.nav-menu ul {
    display: flex !important;
    list-style: none;
    gap: 30px !important;
}

.nav-menu ul li {
    display: inline-flex !important;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 40px !important;   /* Bigger clean gap */
    justify-content: flex-end;
}
/* ===========================
   RESPONSIVE BREAKPOINT
=========================== */
@media(max-width: 375px) {

    .nav-menu {
        display: none;
    }

    .header-right {
        display: none;   /* hide support & button */
    }

    .mobile-menu-btn {
        display: block;
    }
}





/* who we are section */
.about-who-section {
  padding: 100px 0;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0f3c63;
}

.about-img {
  width: 100%;
  border-radius: 15px;
}

/* Cards */
.about-card {
  background: #e8d7c2;
  padding: 35px;
  border-radius: 10px;
  text-align: left;
  height: 100%;
}

.about-card .icon {
  font-size: 30px;
  margin-bottom: 15px;
  color: #000;
}

.about-card h5 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about-card p {
  font-size: 14px;
  color: #333;
}



















/* Counter Section */
.counter-section {
    position: relative;
    padding: 120px 0;
    background: url('https://thumbs.dreamstime.com/b/teenagers-team-having-work-video-call-group-teens-using-laptop-headphones-working-online-office-three-young-employees-332843144.jpg') center/cover no-repeat;
}

.counter-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

.container {
    position: relative;
    z-index: 2;
}

.counter-wrapper {
    display: flex;
    justify-content: space-between;
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
}

.counter-box {
    flex: 1;
    min-width: 200px;
    color: #fff;
}

.counter-box h2 {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
}

.counter-box h6 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.counter-box p {
    font-size: 14px;
    opacity: 0.9;
}




/* Why Choose Us Section */
.choose-section {
  padding: 120px 0;
  background: #f9f9f9;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
}

.choose-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: linear-gradient(90deg, #ff5c5c, #ff7e7e);
  color: #fff;
  transition: 0.3s ease;
}

.choose-item:hover {
  transform: translateX(5px);
}

.choose-item .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  color: #ff4c4c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}




/* Stats Section */

.stats-modern {
    position: relative;
    padding: 80px 0; /* thoda chhota section */
    background: url('https://thumbs.dreamstime.com/b/teenagers-team-having-work-video-call-group-teens-using-laptop-headphones-working-online-office-three-young-employees-332843144.jpg') center/cover no-repeat;
}

.stats-modern::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10,20,40,0.88);
}

.stats-modern .container {
    position: relative;
    z-index: 2;
}

.stats-wrapper {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* SAME SIZE BOX */
.stat-card {
    width: 250px;
    height: 200px;
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(239,137,68,0.25);
}

.stat-icon {
    font-size: 22px;
    color: #ef8944;
    margin-bottom: 10px;
}

.stat-card h2 {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.stat-card h6 {
    font-size: 14px;
    color: #ef8944;
    margin-bottom: 6px;
}

.stat-card p {
    font-size: 12px;
    color: #ffffff;
    opacity: 0.85;
}





/* Core Values Section */
.core-values-section {
    padding: 100px 0;
    background: #f8f9fc;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0d2d4d;
}

.divider-dot {
    width: 10px;
    height: 10px;
    background: #ef8944;
    border-radius: 50%;
    margin: 12px auto 0;
    box-shadow: 0 0 12px rgba(239,137,68,0.5);
}

/* Card */
.core-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 18px;
    text-align: center;
    transition: 0.4s ease;
    border: 1px solid #eee;
    height: 100%;
}

.core-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Icon */
.core-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 16px;
    background: rgba(239,137,68,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ef8944;
    transition: 0.3s;
}

.core-card:hover .core-icon {
    background: #ef8944;
    color: #fff;
}

/* Text */
.core-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.core-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
.core-card {
    background: #e8d7c2;   /* Beige Premium Color */
    padding: 40px 25px;
    border-radius: 18px;
    text-align: center;
    transition: 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.core-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Icon background subtle match */
.core-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 16px;
    background: rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ef8944;
    transition: 0.3s;
}

.core-card:hover .core-icon {
    background: #ef8944;
    color: #fff;
}




/* Division Section */
.division-section {
    padding: 100px 0;
    background: #f9fafc;
}

.division-title {
    font-size: 32px;
    font-weight: 700;
    color: #ef8944;
}

.division-sub {
    font-size: 14px;
    color: #777;
    max-width: 600px;
    margin: 10px auto 0;
}

.division-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.orange-text {
    color: #ef8944;
    font-weight: 600;
    margin-bottom: 10px;
}

.division-heading {
    font-size: 24px;
    font-weight: 700;
    color: #0b2c5f;
    margin-bottom: 20px;
}

.division-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}
.division-section {
    padding: 100px 0;
    background: #f9fafc;
}

.division-title {
    font-size: 32px;
    font-weight: 700;
    color: #ef8944;
}

.division-sub {
    font-size: 14px;
    color: #777;
    max-width: 600px;
    margin: 10px auto 0;
}

.division-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.orange-text {
    color: #ef8944;
    font-weight: 600;
    margin-bottom: 10px;
}

.division-heading {
    font-size: 24px;
    font-weight: 700;
    color: #0b2c5f;
    margin-bottom: 20px;
}

.division-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}
.division-img img {
    width: 85%;
    max-width: 450px;
    border-radius: 20px;
    margin: 0 auto;
    display: block;
}





/* Division Section with Background */


/* Division Section */
.division-section {
    padding: 100px 0;
    background: #f9fafc;
}

.division-title {
    font-size: 32px;
    font-weight: 700;
    color: #ef8944;
}

.division-sub {
    font-size: 14px;
    color: #777;
    max-width: 600px;
    margin: 10px auto 0;
}

.division-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.orange-text {
    color: #ef8944;
    font-weight: 600;
    margin-bottom: 10px;
}

.division-heading {
    font-size: 24px;
    font-weight: 700;
    color: #0b2c5f;
    margin-bottom: 20px;
}

.division-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}
.division-section {
    padding: 100px 0;
    background: #f9fafc;
}

.division-title {
    font-size: 32px;
    font-weight: 700;
    color: #ef8944;
}

.division-sub {
    font-size: 14px;
    color: #777;
    max-width: 600px;
    margin: 10px auto 0;
}

.division-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.orange-text {
    color: #ef8944;
    font-weight: 600;
    margin-bottom: 10px;
}

.division-heading {
    font-size: 24px;
    font-weight: 700;
    color: #0b2c5f;
    margin-bottom: 20px;
}

.division-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}
.division-img img {
    width: 85%;
    max-width: 450px;
    border-radius: 20px;
    margin: 0 auto;
    display: block;
}





.division-timeline {
  padding: 120px 0;
  background: #0f2e33;
  color: #fff;
  position: relative;
}

.division-main-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 90px;
  color: #ef8944;
  letter-spacing: 1px;
}

/* Horizontal layout */
.timeline-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.timeline-item {
  width: 18%;
  text-align: center;
  position: relative;
}

/* Dotted vertical line */
.timeline-item::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 60px;
  border-left: 2px dotted rgba(255,255,255,0.3);
}

/* Icon Circle */
.timeline-icon {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 0 0 8px rgba(255,255,255,0.05);
  transition: 0.3s ease;
}

.timeline-icon:hover {
  transform: translateY(-8px);
}

/* Gradient Colors */
.grad-1 { background: linear-gradient(45deg,#8e2de2,#4a00e0); }
.grad-2 { background: linear-gradient(45deg,#ff8c00,#ff2e63); }
.grad-3 { background: linear-gradient(45deg,#a8ff78,#00c6ff); }
.grad-4 { background: linear-gradient(45deg,#6a11cb,#2575fc); }
.grad-5 { background: linear-gradient(45deg,#ff512f,#dd2476); }

/* Dot */
.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin: 15px auto;
}

.dot-1 { background:#8e2de2; }
.dot-2 { background:#ff8c00; }
.dot-3 { background:#a8ff78; }
.dot-4 { background:#6a11cb; }
.dot-5 { background:#ff512f; }

/* Title */
.timeline-item h5 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Description */
.timeline-item p {
  font-size: 13px;
  color: #b8c5c9;
  line-height: 1.6;
}

/* Responsive */
@media(max-width:992px){
  .timeline-item{
    width:45%;
    margin-bottom:50px;
  }
}

@media(max-width:576px){
  .timeline-item{
    width:100%;
  }
}
.timeline-item h5 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #ef8944;   /* Orange title */
}








































/*SERVICE SECTION START*/
.core-feature-section {
    padding: 100px 0;
    background: #f9fafc;
}

.section-title h2 {
    font-size: 30px;
    font-weight: 700;
    color: #ef8944;
}

.feature-img img {
    width: 100%;
    max-width: 480px;
    display: block;
}

.feature-heading {
    font-size: 24px;
    font-weight: 700;
    color: #0b2c5f;
    margin-bottom: 15px;
}

.core-feature-section p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.feature-list {
    padding-left: 0;
    margin-top: 20px;
}

.feature-list li {
    list-style: none;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}











.expertise-section {
    padding: 100px 0;
    background: whitesmoke;
}

.section-title h2 {
    font-size: 30px;
    font-weight: 700;
    color: #ef8944;
    margin-bottom: 40px;
}

/* Grid Layout 3/3/3/1 */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.last-card {
    grid-column: span 1;
}

/* Card */
.expertise-card {
    position: relative;
    height: 260px;
    border-radius: 18px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: 0.4s ease;
}

/* Dark Overlay */
.expertise-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.75)
    );
    z-index: 1;
}

/* Content */
.card-overlay {
    position: relative;
    z-index: 2;
    padding: 25px;
    color: #fff;
}

.card-overlay h5 {
    font-size: 18px;
    color: #ef8944;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.card-overlay button {
    background: red;
    border: none;
    padding: 8px 18px;
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
}

.card-overlay button:hover {
    background: #003566;
}

/* Hover Effect */
.expertise-card:hover {
    transform: translateY(-8px);
}

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

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













.why-work-section {
    padding: 120px 0;
    background: linear-gradient(rgba(10,20,40,0.85), rgba(10,20,40,0.9)),
    url('https://images.unsplash.com/photo-1492724441997-5dc865305da7');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.title-line {
    width: 80px;
    height: 3px;
    background: #ef8944;
    margin: 15px auto 40px;
}

/* Layout */
.why-wrapper {
    row-gap: 40px;
}

/* Box */
.why-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    transition: 0.4s ease;
    height: 100%;
}

.why-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(239,137,68,0.3);
}

/* Icon Circle */
.icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 2px solid #ef8944;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}

.icon-circle i {
    font-size: 24px;
    color: #ef8944;
}

.why-box:hover .icon-circle {
    background: #ef8944;
}

.why-box:hover .icon-circle i {
    color: #fff;
}

/* Text */
.why-box h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-box p {
    font-size: 14px;
    opacity: 0.85;
}

/* Responsive */
@media(max-width:768px){
    .why-work-section{
        padding: 80px 0;
    }
}
.why-box h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ef8944 !important;
}

































/*industry section*/
.industry-section {
    padding: 100px 0;
    background: #f8f9fb;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0b2c5f;
    margin-bottom: 50px;
}

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

.industry-card {
    background: #fff;
    padding: 35px 20px;
    text-align: center;
    border-radius: 14px;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(239,137,68,0.25);
}

.industry-card .icon {
    width: 70px;
    height: 70px;
    background: rgba(239,137,68,0.1);
    color: #ef8944;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: 0.4s ease;
}

.industry-card:hover .icon {
    background: #ef8944;
    color: #fff;
    transform: rotateY(180deg);
}

.industry-card h5 {
    font-size: 15px;
    font-weight: 600;
    color: #0b2c5f;
}

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

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












.expertise-modern-section {
    padding: 120px 0;
    background: linear-gradient(to right, #0b2c5f, #091f3c);
    color: #fff;
}

.section-title h2 {
    color: #ef8944;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    color: #ffffff;
    font-size: 16px;
    margin-top: 12px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.expertise-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.expertise-modern-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 35px 25px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #ef8944;
}

.expertise-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(239,137,68,0.3);
}

.expertise-modern-card .icon {
    width: 60px;
    height: 60px;
    background: #ef8944;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
    transition: 0.4s ease;
}

.expertise-modern-card:hover .icon {
    transform: rotate(10deg) scale(1.1);
}

.expertise-modern-card h4 {
    color: #fff;
    margin-bottom: 15px;
}

.expertise-modern-card ul {
    padding-left: 15px;
}

.expertise-modern-card ul li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #ddd;
}

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

@media(max-width: 576px){
  .expertise-modern-grid {
    grid-template-columns: 1fr;
  }
}















.combine-section {
  padding: 100px 0;
  background: #f8f9fc;
}

.combine-section .section-title h2 {
  color: #ef8944;
  font-weight: 700;
  margin-bottom: 60px;
}

.combine-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.combine-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.4s ease;
  position: relative;
}

.combine-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(239,137,68,0.15);
}

/* Orange side accent */
.combine-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: #ef8944;
  border-radius: 16px 0 0 16px;
}

/* Icon */
.combine-icon {
  min-width: 70px;
  height: 70px;
  background: rgba(239,137,68,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #ef8944;
}

/* Content */
.combine-content h5 {
  font-weight: 700;
  margin-bottom: 8px;
  color: #0b2c5f;
}

.combine-content span {
  display: block;
  color: #ef8944;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.combine-content p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* Responsive */
@media(max-width:768px){
  .combine-item {
    flex-direction: column;
    text-align: center;
  }

  .combine-item::before {
    display: none;
  }
}


















.cta-section {
  padding: 90px 0;
  background: linear-gradient(red);
}

.cta-section h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 28px;
}

.cta-buttons a {
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  margin: 0 10px;
  transition: 0.3s ease;
}

.btn-light {
  background: red;
  color: whitesmoke;
}

.btn-light:hover {
  background: #f1f1f1;
}

.btn-dark {
  background: #0b2c5f;
  color: #fff;
  border: 1px solid #fff;
}

.btn-dark:hover {
  background: #ef8944;
}














/*blog section start*/
/* ===== BLOG SECTION THEME UPDATE ===== */
/* SECTION BG */
.latest-news-section {
    background: #0A0A0A;
    padding: 70px 0;
}

/* HEADING */
.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #E10600;  /* ORANGE TITLE */
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* BLOG CARD WRAPPER */
.news-item {
    background: #111;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 35px;
    padding-bottom: 20px;
    transition: all 0.35s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

/* HOVER EFFECT */
.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.6);
    border-color: #E10600;
}

/* IMAGE */
.news-item .image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 2px solid #E10600;
}

/* BLOG TITLE */
.news-body h5 {
    color: #F2F2F2;     /* PREMIUM WHITE */
    font-size: 20px;
    font-weight: 700;
    margin: 18px 15px 10px;
    line-height: 1.4;
    transition: 0.3s;
}

/* TITLE ON HOVER */
.news-item:hover h5 {
    color: #E10600;   /* ORANGE HOVER */
}

/* DESCRIPTION */
.news-body p {
    color: #BDBDBD;
    font-size: 15px;
    line-height: 1.6;
    padding: 0 15px;
    margin-bottom: 15px;
}

/* CTA BUTTON */
.card-btn {
    padding: 0 15px 10px;
}

.card-btn .btn {
    width: 100%;
    background: #E10600;
    border: none;
    font-size: 15px;
    padding: 10px 0;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
}

.card-btn .btn:hover {
    background: transparent;
    border: 2px solid #E10600;
    color: #E10600;
}

/* GRID SPACING FIX */
.row {
    row-gap: 30px;
}




/* MAKE ALL BLOG CARDS SAME HEIGHT */
.row > div {
  display: flex;
}

.news-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Make text area flexible */
.news-body {
  padding: 22px 24px;
  flex-grow: 1;
}

/* DON’T TOUCH BELOW THIS — SAME PREMIUM DESIGN */
.latest-news-section {
  padding: 100px 0;
  background: #0f172a;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: #ff7a1a;
  text-align: center;
  text-transform: uppercase;
}

.design-arrow {
  width: 70px;
  height: 3px;
  background: #ff7a1a;
  margin: 10px auto 45px;
  border-radius: 10px;
}

.news-item {
  background: #1e293b;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.45);
  transition: 0.45s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.news-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 35px rgba(255,122,26,0.25);
  border-color: #ff7a1a;
}

.news-item .image {
  overflow: hidden;
}

.news-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: 0.5s;
  filter: brightness(0.92);
}

.news-item:hover img {
  transform: scale(1.1);
  filter: brightness(1);
}

.news-body h5 a {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: 0.3s;
}

.news-item:hover .news-body h5 a {
  color: #ff7a1a;
}

.news-body p {
  color: #cbd5e1;
  font-size: 14px;
  opacity: 0.92;
  margin-top: 10px;
  line-height: 1.55;
}

.card-btn {
  padding: 18px 24px;
  padding-top: 0;
}

.btn-primary {
  background: #E10600;
  border: 1px solid #E10600;
  padding: 10px 24px;
  font-size: 13px;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.4s;
  text-transform: uppercase;
}

.btn-primary:hover {
  background: transparent;
  color: #E10600;
  transform: translateX(6px);
  border-color: #E10600;
}

@media (max-width: 768px) {
  .news-item img {
    height: 180px;
  }
}








/*our usp section*/
/* ================= USP SECTION ================= */

.usp-section {
    padding: 100px 0;
    background: #f8f9fb;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0b3d91;
}

.section-title p {
    color: #666;
    font-size: 16px;
    margin-bottom: 50px;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.usp-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.usp-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ff6a00;
}

.usp-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.usp-btn {
    display: inline-block;
    padding: 8px 18px;
    background: red;
    color: #fff;
    font-size: 13px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.usp-btn:hover {
    background: #0b3d91;
}

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

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














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

.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f4f6f9, #ffffff);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Form */

.contact-form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ff6a00;
}

.sub-text {
    color: #777;
    margin-bottom: 40px;
    font-size: 14px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 15px;
    border: none;
    border-bottom: 2px solid #ddd;
    background: transparent;
    outline: none;
    transition: 0.3s;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff6a00;
}

.contact-form textarea {
    min-height: 120px;
    margin-bottom: 30px;
    resize: none;
}

/* Button */

.send-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    background: red;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s;
}

.send-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 60, 60, 0.3);
}

/* Right Info */

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #ff6a00;
}

.info-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    transition: 0.4s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.info-card h4 {
    margin-bottom: 10px;
    color: #ff6a00;
}

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

/* Responsive */

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}



.location-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff, #f4f6f9);
}

.location-header {
    text-align: center;
    margin-bottom: 60px;
}

.location-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ff6a00;
}

.location-header p {
    color: #777;
    margin-top: 10px;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.map-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.map-box iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.location-info {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.location-info h3 {
    margin-bottom: 15px;
    color: #ff6a00;
}

.location-info p {
    margin-bottom: 10px;
    color: #555;
}

.direction-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    border-radius: 30px;
    background: red;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.direction-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 60, 60, 0.3);
}

@media(max-width: 992px){
    .location-wrapper {
        grid-template-columns: 1fr;
    }
}





























/*AWARD SECTION START*/
.awards-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0b1f3a, #162f57);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.awards-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 106, 0, 0.15);
    border-radius: 50%;
    filter: blur(120px);
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title p {
    color: #ccc;
}

.awards-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.award-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    width: 300px;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.1);
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.award-card .icon {
    font-size: 50px;
    margin-bottom: 20px;
    animation: floatIcon 3s infinite ease-in-out;
}

@keyframes floatIcon {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.award-card h3 {
    font-size: 40px;
    color: #ff6a00;
    margin-bottom: 10px;
}

.award-card p {
    font-size: 16px;
    color: #ddd;
}


















.certificates-section {
    padding: 120px 0;
    background: #f7f9fc;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0b1f3a;
    margin-bottom: 10px;
}

.section-title p {
    color: #777;
    font-size: 16px;
}

.certificates-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.certificate-card {
    position: relative;
    width: 48%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.certificate-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: 0.5s;
}

.certificate-card:hover img {
    transform: scale(1.08);
}

.certificate-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #fff;
}

.certificate-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.certificate-content p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #ddd;
}

.cert-btn {
    display: inline-block;
    padding: 8px 18px;
    background: red;
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

.cert-btn:hover {
    background: #e55d00;
}
@media(max-width: 992px){
    .certificate-card {
        width: 100%;
    }
}
.certificate-content h3 {
    color: #ff6a00;
    font-weight: 700;
    letter-spacing: 0.5px;
}















.career-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa, #eef1f5);
}

.section-title h2 {
    font-weight: 700;
    letter-spacing: 1px;
    color: #1e293b;
}

.title-line {
    width: 60px;
    height: 3px;
    background: #ff6a00;
    margin: 12px auto 0;
}

.job-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.job-card {
    background: #fff;
    width: 380px;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.job-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.job-type {
    background: #ff6a00;
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 30px;
}

.job-date {
    font-size: 13px;
    color: #64748b;
}

.job-title {
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0;
    color: #0f172a;
}

.job-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.apply-btn {
    display: inline-block;
    padding: 10px 22px;
    background: red;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.apply-btn:hover {
    background: linear-gradient(45deg, #ff9900, #ff6a00);
}


























/* FAQ Section */
.blog-content-section {
    padding: 70px 0;
}

.faq {
    font-size: 40px;
    font-weight: 800;
    color: #ff6600 !important; /* Orange */
    text-align: center;        /* Center */
    margin-bottom: 30px;
}

/* Accordion Base */
.accordion-item {
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #e6e6e6;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.accordion-item button {
    width: 100%;
    padding: 20px;
    background: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 17px;
    color: #0a2c57;
    transition: 0.3s;
}

.accordion-item button:hover {
    background: #f9f9f9;
}

/* Icon */
.accordion-item .icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ff6600;
    position: relative;
    transition: 0.3s ease;
}

.accordion-item .icon::before,
.accordion-item .icon::after {
    content: "";
    position: absolute;
    background: #ff6600;
    transition: 0.3s ease;
}

.accordion-item .icon::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion-item .icon::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Remove vertical bar on active */
.accordion-item.active .icon::after {
    height: 0;
}

/* Accordion Content */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #ffffff;
    color: #4a4a4a;
    font-size: 15px;
    line-height: 1.6;
    transition: all 0.4s ease;
}

.accordion-content p {
    padding: 15px 0 20px 0;
    margin: 0;
}

/* On Open */
.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-item.active button {
    background: #fff7f0;
    border-left: 4px solid #ff6600;
}


































































/*EXTRA CODE*/











/* MAIN SECTION */
.service-details-section {
    padding: 100px 0;
    background: #0f172a;
    color: #cbd5e1;
    font-family: 'Poppins', sans-serif;
}

/* LEFT IMAGE */
.service-image img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    margin-bottom: 20px;
}

/* TITLE */
.service-title {
    font-size: 32px;
    font-weight: 800;
    color: #ff7a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* CONTENT TEXT */
.service-text {
    font-size: 16px;
    line-height: 1.9;
    color: #bcd0e0;
    margin-bottom: 15px;
}

/* ————————————
      REMOVE ALL FORCED COLUMNS
———————————— */
.service-details-section p,
.service-details-section div,
.service-details-section * {
    column-count: unset !important;
    column-gap: unset !important;
}

/* SIDEBAR BOX */
.sidebar-box {
    background: #1e293b;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
}

.sidebar-title {
    color: #ff7a1a;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* CATEGORY LIST */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 14px;
}

.category-list li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: block;
    padding: 10px 12px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    transition: 0.3s ease;
}

.category-list li a i {
    color: #ff7a1a;
    margin-right: 10px;
    font-size: 16px;
}

.category-list li a:hover {
    background: rgba(255,122,26,0.12);
    color: #ff7a1a;
    transform: translateX(4px);
}

/* RESPONSIVE */
@media(max-width: 768px){
    .service-title {
        font-size: 26px;
    }
    .sidebar-box {
        margin-top: 40px;
    }

/* Remove forced columns only from text */
.service-details-section p,
.service-text {
    column-count: unset !important;
    width: 100%;
}}
.service-details-section p,
.service-text {
    column-count: unset !important;
}
.service-details-section .row {
    display: flex !important;
    flex-wrap: wrap !important;
}

.service-details-section .col-md-8,
.service-details-section .col-md-4 {
    float: none !important;
    display: block;
}
















/* ============================
   WHY CHOOSE US SECTION
=============================*/

.choose-section {
    padding: 100px 0;
    background: #0f172a;              /* Dark Theme */
    color: #cbd5e1;
}

/* Section Heading */
.choose-section .section-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ff7a1a;
    letter-spacing: 1px;
}

/* SMALL TEXT */
.small-text {
    font-size: 14px;
    font-weight: 500;
    color: #ff7a1a;
    margin-bottom: 5px;
}

/* Title under Image */
.choose-section h5 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

/* Text */
.choose-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #bcd0e0;
}

/* ============================
   RIGHT SIDE ITEMS (CARDS)
=============================*/

.choose-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255,255,255,0.04);
    padding: 20px 22px;
    border-radius: 12px;
    margin-bottom: 18px;
    transition: 0.35s ease;
    border-left: 4px solid transparent;
}

.choose-item:hover {
    transform: translateX(6px);
    background: rgba(255,122,26,0.12);
    border-left: 4px solid #ff7a1a;
}

/* Icon Box */
.choose-item .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,122,26,0.15);
    color: #ff7a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: 0.35s ease;
}

.choose-item:hover .icon {
    background: #ff7a1a;
    color: #fff;
}

/* Item Title */
.choose-item h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

/* Item Description */
.choose-item p {
    font-size: 14px;
    margin: 0;
}

/* ============================
      IMAGE
=============================*/

.choose-section img {
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.35);
}

/* ============================
      RESPONSIVE
=============================*/

@media (max-width: 992px) {
    .choose-section {
        padding: 70px 25px;
    }

    .choose-item {
        padding: 18px;
    }
}

@media (max-width: 768px) {
    .choose-item {
        padding: 16px;
    }

    .choose-item .icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .choose-section h5 {
        font-size: 18px;
    }
}
/* FIX FORCED MULTI-COLUMN BREAKING ON ENTIRE WEBSITE */
* {
    column-count: unset !important;
    column-gap: unset !important;
}

/* FIX BOOTSTRAP GRID BROKEN */
.row {
    display: flex !important;
    flex-wrap: wrap !important;
}

.col-lg-6,
.col-md-6,
.col-lg-4,
.col-md-4,
.col-lg-8,
.col-md-8 {
    display: block !important;
    float: none !important;
}












/* ============================
      OUR JOURNEY SECTION
=============================*/

.journey-section {
    padding: 120px 0;
    background: #0f172a;       /* Dark theme */
    color: #fff;
}

/* Title */
.journey-section .section-title h2 {
    font-size: 34px;
    font-weight: 800;
    color: #ff7a1a;
    text-transform: uppercase;
}

.journey-sub {
    font-size: 16px;
    color: #cbd5e1;
    opacity: 0.85;
    margin-top: 8px;
}

/* ============================
      GRID LAYOUT
=============================*/

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* ============================
      CARD STYLING
=============================*/

.journey-card {
    position: relative;
    padding: 35px 25px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: 0.4s ease;
    min-height: 200px;
}

/* Hover effect */
.journey-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(255, 122, 26, 0.35);
}

/* Step Number */
.journey-card .step {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ff7a1a;
    color: #fff;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
}

.journey-card h4 {
    color: #ff7a1a;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
}

.journey-card p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Highlighted card */
.journey-card.highlight {
    background: linear-gradient(135deg, #ff7a1a, #ff5e00);
    border: none;
    box-shadow: 0 18px 45px rgba(255, 122, 26, 0.4);
}

.journey-card.highlight h4,
.journey-card.highlight p {
    color: #fff;
}

.journey-card.highlight .step {
    background: #fff;
    color: #ff6a00;
    font-weight: 700;
}

/* ============================
      RESPONSIVE
=============================*/

@media (max-width: 768px) {
    .journey-section {
        padding: 80px 20px;
    }

    .journey-section .section-title h2 {
        font-size: 28px;
    }

    .journey-card {
        padding: 28px 20px;
    }
}
/* GRID GAP INCREASED */
.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 60px;                /* Gap 30 → 40 (More spacing) */
    margin-top: 70px;
}

/* CARD SPACING IMPROVED */
.journey-card {
    position: relative;
    padding: 45px 30px;       /* Padding 35→45 for roomy look */
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: 0.4s ease;
    min-height: 220px;       /* Card height increase */
}

/* HOVER : more lift */
.journey-card:hover {
    transform: translateY(-10px);
}
/* FORCE GRID GAP */
.journey-grid {
    gap: 40px !important;         /* Forcefully increase spacing */
    row-gap: 40px !important;
    column-gap: 40px !important;
    margin-top: 70px !important;
}

/* FORCE CARD PADDING */
.journey-card {
    padding: 45px 30px !important;
    margin: 0 !important;         /* Remove hidden margins */
}

/* EXTRA GAP BETWEEN CARDS */
.journey-card {
    margin-bottom: 30px !important;
}






























/* ======================================
      SERVICE SECTION (PREMIUM DARK)
====================================== */

.service-section {
    background: #0f172a; /* Dark Background */
    padding: 100px 0 130px;
}

/* Section Title */
.service-section .section-title span {
    color: #ef8944;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.service-section .section-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 10px 0 15px;
}

.service-section .section-title p {
    max-width: 850px;
    margin: auto;
    font-size: 15px;
    color: #bcd0e0;
    line-height: 1.7;
}

/* ======================================
      SERVICE CARD (Dark Premium)
====================================== */

.service-card-items-1 {
    background: rgba(255,255,255,0.05);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 35px;
    transition: 0.4s ease;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.service-card-items-1:hover {
    transform: translateY(-12px);
    border-color: #ff0000 !important;
    box-shadow: 0 22px 55px rgba(255,0,0,0.28);
}

/* Left Red Hover Bar */
.service-card-items-1::before {
    content: "";
    position: absolute;
    height: 0%;
    width: 4px;
    left: 0;
    top: 0;
    background: #ff0000;
    transition: 0.35s ease;
}

.service-card-items-1:hover::before {
    height: 100%;
}

/* ======================================
      ICON AREA
====================================== */

/* Rotating outer ring */
.service-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    border: 2px dashed #ef8944;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: rotateCircle 12s linear infinite;
}

@keyframes rotateCircle { 100% { transform: rotate(360deg); } }

/* Inner ring */
.service-icon::before {
    content: "";
    position: absolute;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    border: 2px dashed #ef8944;
}

/* Icon itself */
.service-icon i {
    width: 65px;
    height: 65px;
    background: #1b2335;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ef8944;
    z-index: 2;
    transition: 0.3s ease;
}

/* Hover pulse */
.service-card-items-1:hover .service-icon i {
    background: #ef8944;
    color: #fff;
    animation: pulse 0.5s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* ======================================
      TEXT
====================================== */


.service-content p {
    font-size: 14px;
    color: #bcd0e0;
    margin-top: 12px;
    line-height: 1.6;
}

/* ======================================
      CTA BUTTON (RED BRAND)
====================================== */

.theme-btn {
    background: #ff0000 !important;
    padding: 12px 35px;
    border-radius: 6px;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
    margin-top: 15px;
}

.theme-btn:hover {
    background: #b40000 !important;
    color: #fff !important;
}

/* ======================================
      RESPONSIVE
====================================== */

@media (max-width: 992px) {
    .service-section .section-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .service-card-items-1 {
        padding: 30px 20px;
    }
}
.service-content h3 {
    color: #ef8944 !important;   /* ORANGE TITLE */
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}
















/* =====================================
      INDUSTRIES / DIVISIONS SECTION
===================================== */

.brand-section {
    padding: 100px 0;
    background: #0f172a; /* Dark background */
    color: #cbd5e1;
}

/* Section Titles */
.brand-section .industry-title {
    color: #ef8944;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.brand-section h2 {
    font-size: 32px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 18px;
}

.brand-section p {
    font-size: 15px;
    color: #bcd0e0;
    max-width: 850px;
    margin: auto;
    line-height: 1.8;
}

/* =====================================
      CARDS WRAPPER (GRID)
===================================== */

.division-wrapper {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

/* =====================================
      BRAND CARDS 
===================================== */

.brand-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px 28px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    transition: 0.35s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
    min-height: 210px;
}


/* Card Title */
.brand-card h5 {
    color: #ef8944;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Card Paragraph */
.brand-card p {
    color: #bcd0e0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.brand-card .theme-btn {
    background: #ff0000 !important;   /* RED BUTTON */
    padding: 10px 22px;
    border-radius: 6px;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
}

.brand-card .theme-btn:hover {
    background: #b40000 !important;    /* Darker Red Hover */
    color: #fff !important;
}

/* =====================================
      RESPONSIVE DESIGN
===================================== */

@media (max-width: 768px) {
    .brand-section h2 {
        font-size: 26px;
    }
    .brand-card {
        padding: 28px 22px;
    }
}
.division-wrapper {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px !important;
    row-gap: 50px !important;
}
.brand-card {
    background: #0f172a !important;
    padding: 35px 28px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    transition: 0.35s ease;
}

/* HOVER — NO WHITE BACKGROUND */
.brand-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: #ff0000 !important;
    box-shadow: 0 25px 60px rgba(255,0,0,0.28);
    background: #0f172a !important;  /* FIX: remove white hover */
}

/* Left Red Hover Bar */
.brand-card::before {
    content: "";
    position: absolute;
    height: 0%;
    width: 4px;
    left: 0;
    top: 0;
    background: #ff0000;
    transition: 0.35s ease;
}

.brand-card:hover::before {
    height: 100%;
}
.service-card-items-1 .service-content h3,
.service-card-items-1 .service-content h3 a {
    color: #ef8944 !important;
}
.service-section {
    padding: 70px 0 80px !important;
}











/* Section Background */
.how-work-section {
    background: #1a2233;
    padding: 80px 0;
}

/* Title */
.how-work-section .section-title h2 {
    color: #ef8944;        /* orange */
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 10px;
}

.how-work-section .section-title p {
    color: #dcdcdc;        /* light grey */
    font-size: 16px;
    margin-bottom: 20px;
}

/* Divider */
.center-divider {
    width: 80px;
    height: 4px;
    background: #ef8944;
    margin: 10px auto 40px;
    border-radius: 5px;
}

/* Swiper Slide Box */
.work-box {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    transition: 0.3s;
}

.work-box:hover {
    transform: translateY(-6px);
}

/* Slide Image */
.work-box img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Title */
.work-box h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Bullet Points */
.work-box ul {
    padding-left: 0;
    list-style: none;
}

.work-box ul li {
    color: #dcdcdc;
    font-size: 14px;
    margin-bottom: 6px;
}

/* Swiper Pagination (dots) */
.swiper-pagination-bullet {
    background: #ef8944 !important;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: #ffffff !important;
    opacity: 1;
    width: 14px;
    height: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .how-work-section {
        padding: 50px 0;
    }
}



















/* About Media Section */
.about-media-section {
   background: #1a2233;  /* Dark Grey Background */
    padding: 70px 0;
}

/* Heading */
.about-media-section h3 {
    font-size: 32px;
    font-weight: 800;
    color: #ef8944;   /* Same Orange Title */
    margin-bottom: 20px;
}

/* Paragraphs */
.about-media-section p {
    color: #e5e5e5;         /* Light Grey for readability */
    font-size: 16px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-media-section {
        padding: 50px 20px;
    }

    .about-media-section h3 {
        font-size: 26px;
    }
}


















/* =============================
     ABOUT SECTION (WHITE THEME)
============================= */
.about-section {
    background: #1a2233;
    padding: 70px 0 !important;
}

/* Image */
.about-img img {
    width: 100%;
    border-radius: 16px;
    background: #111;  /* dark background subtle */
}

/* Section Title */
.about-section .section-title span {
    color: #ef8944;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-section .section-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;   /* White for dark background */
    margin-bottom: 15px;
}

/* About Text */
.about-text {
    font-size: 15px;
    color: #cccccc;     /* Light grey for readability */
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Icon + Content Block */
.icon-items {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.icon-items .icon i {
    font-size: 36px;
    color: #ef8944;
}

.icon-items .content p {
    color: #bbbbbb;
    font-size: 14px;
    line-height: 1.7;
}

/* CTA Button */
.about-section .theme-btn {
    background: red !important;
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.about-section .theme-btn:hover {
    background: #c96d2f !important;
}

/* Responsive */
@media (max-width: 768px) {
    .about-section {
        padding: 50px 0 !important;
    }
    .icon-items {
        flex-direction: column;
    }
}























/* ===============================
   ABOUT WHO WE ARE (DARK THEME)
================================*/
.about-who-section {
    background: #1a2233;
    padding: 80px 0;
}

/* Title */
.about-who-section .section-title h2 {
    font-size: 34px;
    font-weight: 800;
    color: #ef8944; /* same orange */
    margin-bottom: 10px;
}

/* Left Text */
.about-who-section p {
    color: #dcdcdc;
    font-size: 16px;
    line-height: 1.8;
}

/* Right Image */
.about-who-section .about-img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Cards */
.about-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s ease;
    height: 100%;
}

.about-card:hover {
    transform: translateY(-6px);
    border-color: #ef8944;
    background: rgba(255,255,255,0.08);
}

/* Icon */
.about-card .icon i {
    font-size: 38px;
    color: #ef8944;
    margin-bottom: 12px;
}

/* Headings */
.about-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Paragraph inside cards */
.about-card p {
    font-size: 14px;
    color: #d0d0d0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .about-who-section {
        padding: 60px 0;
    }
}


























/* ======================================
   CORE VALUES – DARK THEME
====================================== */

.core-values-section {
    background: #1a2233;
    padding: 80px 0;
}

/* Title */
.core-values-section .section-title h2 {
    font-size: 34px;
    font-weight: 800;
    color: #ef8944;
    margin-bottom: 10px;
}

/* Grid Cards */
.core-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    transition: 0.4s ease;
    height: 100%;
}

/* Hover */
.core-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.08);
    border-color: red;
}

/* Icon Circle */
.core-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
}

.core-icon i {
    font-size: 30px;
    color: #ef8944;
}

/* Card Title */
.core-card h5 {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Card Text */
.core-card p {
    color: #d0d0d0;
    font-size: 14px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .core-values-section {
        padding: 60px 0;
    }
}
















/* ======================================
     WHY CHOOSE US – PREMIUM DARK THEME
====================================== */

.choose-us-section {
    background: #0f172a;
    padding: 90px 0;
    color: #cbd5e1;
}

/* Title */
.choose-us-section .section-title h2 {
    font-size: 25px;
    font-weight: 800;
    color: #ffffff;
}

.center-divider {
    width: 90px;
    height: 4px;
    background: #ef8944;
    margin: 15px auto 0;
    border-radius: 4px;
}

/* ======================================
      CARDS
====================================== */

.choose-box {
    background: rgba(255,255,255,0.05);
    padding: 35px 28px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    text-align: center;
    position: relative;
    transition: 0.35s ease;
    height: 100%;
    overflow: hidden;
}

/* Hover effect */
.choose-box:hover {
    transform: translateY(-12px);
    border-color: #ff0000 !important;
    box-shadow: 0 25px 60px rgba(255,0,0,0.28);
    background: rgba(255,255,255,0.08);
    color: red;
}

/* Red left border animation */
.choose-box::before {
    content: "";
    position: absolute;
    height: 0%;
    width: 4px;
    left: 0;
    top: 0;
    background: #ff0000;
    transition: 0.35s ease;
}

.choose-box:hover::before {
    height: 100%;
}

/* ======================================
      ICON STYLE
====================================== */

.icon-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    border: 2px dashed #ef8944;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: rotateCircle 12s linear infinite;
}

@keyframes rotateCircle {
    100% { transform: rotate(360deg); }
}

/* Inner ring */
.icon-circle::before {
    content: "";
    position: absolute;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    border: 2px dashed #ef8944;
}

/* Icon itself */
.icon-circle i {
    width: 65px;
    height: 65px;
    background: #1b2335;
    color: #ef8944;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 2;
    transition: 0.3s ease;
}

/* Icon hover effect */
.choose-box:hover .icon-circle i {
    background: #ef8944;
    color: #fff;
    animation: pulse 0.5s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* ======================================
     TEXT
====================================== */

.choose-box h5 {
    font-size: 18px;
    font-weight: 700;
    color: #ef8944;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.choose-box p {
    font-size: 14px;
    color: #bcd0e0;
    line-height: 1.7;
}

/* ======================================
     RESPONSIVE
====================================== */

@media (max-width: 768px) {
    .choose-us-section {
        padding: 60px 0;
    }
    .choose-box {
        padding: 28px 22px;
    }
}






























/* ============================================
   EXPERTISE SECTION – DARK PREMIUM THEME
============================================ */

.expertise-section {
    background: #1a2233;
    padding: 90px 0;
}

/* Section Title */
.expertise-section h2 {
    color: #ef8944;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 35px;            /* ⭐ Increased gap between boxes */
    padding: 10px 5px;    /* ⭐ Soft outer padding */
}

/* Expertise Cards */
.expertise-card {
    position: relative;
    height: 280px;        /* Slightly bigger for premium look */
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.10);
    transition: 0.3s ease;
}

/* Dark Overlay */
.expertise-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    transition: 0.3s ease-in-out;
}

.expertise-card:hover::after {
    background: rgba(0,0,0,0.65);
}

/* Overlay Content */
.card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    z-index: 2;
}

.card-overlay h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.card-overlay p {
    color: #d1d5db;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Button */
.card-overlay .theme-btn {
    background: #ef8944;
    color: #fff;
    padding: 10px 24px;
    display: inline-block;
    font-size: 14px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.card-overlay .theme-btn:hover {
    background: #bf6c2d;
}

/* Hover Lift */
.expertise-card:hover {
    transform: translateY(-8px);
}

/* Responsive */
@media (max-width: 768px) {
    .expertise-card {
        height: 230px;
    }
    .expertise-grid {
        gap: 25px; /* Slightly smaller for mobile */
    }
}
.expertise-card {
    margin: 20px;   /* ⭐ Ye line har box ke charo taraf gap de degi */
}






























/* SECTION BACKGROUND */
.industry-section {
    background: #1a2233;
    padding: 80px 0;
}

/* Title */
.industry-section .section-title h2 {
    color: #fff;
    font-weight: 800;
    font-size: 32px;
}

/* GRID WRAPPER */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;              /* ⭐⭐ Yeh sab box ke beech gap set karega */
    margin-top: 40px;
}

/* CARD */
.industry-card {
    background: rgba(255,255,255,0.05);  /* semi glass */
    padding: 35px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
    
}

/* ICON */
.industry-card .icon {
    font-size: 36px;
    color: #ef8944;       /* orange theme */
    margin-bottom: 12px;
}

/* TITLE */
.industry-card h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* HOVER */
.industry-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
}


/* ⭐ FORCE GAP FIX — WILL WORK EVEN IF OTHER CSS OVERRIDES ⭐ */
.industry-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap: 30px !important;           /* <-- YEHI GAP FORCE KAREGA */
    row-gap: 30px !important;
    column-gap: 30px !important;
    margin-top: 40px !important;
}

/* Industry card forcing spacing */
.industry-card {
    margin: 0 !important;
    padding: 30px 20px !important;
    background: rgba(255,255,255,0.05) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
}






























/* =============================
   EXPERTISE MODERN SECTION
   ============================= */

.expertise-modern-section {
    background:  #0f172a;
    padding: 80px 0;
}

/* Title */
.expertise-modern-section .section-title h2 {
    color: #ef8944;
    font-size: 32px;
    font-weight: 800;
}

.expertise-modern-section .section-title p {
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
}

/* GRID */
.expertise-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* CARD */
.expertise-modern-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 14px;
    transition: 0.3s ease;
}


/* ICON */
.expertise-modern-card .icon {
    font-size: 40px;
    color: #ef8944;
    margin-bottom: 15px;
}

/* Titles */
.expertise-modern-card h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* List */
.expertise-modern-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-modern-card ul li {
    color: #cccccc;
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}

/* Bullet */
.expertise-modern-card ul li::before {
    content: "•";
    color: #ef8944;
    position: absolute;
    left: 0;
    top: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .expertise-modern-section {
        padding: 60px 0;
    }
}


/* FORCE GAP FIX — EXPERTISE GRID */
.expertise-modern-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    grid-gap: 30px !important;
    gap: 30px !important;
    row-gap: 30px !important;
    column-gap: 30px !important;
}

/* Ensure Cards Have Space & No Collapse */
.expertise-modern-card {
    margin: 0 !important;
}





 /* FORCE GAP FIX — EXPERTISE GRID */
.expertise-modern-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    grid-gap: 30px !important;
    gap: 30px !important;
    row-gap: 30px !important;
    column-gap: 30px !important;
}

/* Ensure Cards Have Space & No Collapse */
.expertise-modern-card {
    margin: 0 !important;
}



.expertise-modern-card .icon i {
    font-size: 40px;
    color: #ef8944;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}



.expertise-modern-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}












































/* SECTION BACKGROUND */
.combine-section {
    background: #1a2233;
    padding: 80px 0;
}

/* Title */
.combine-section .section-title h2 {
    color: #ef8944;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
}

/* Wrapper - vertical spacing between items */
.combine-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px; /* 🔥 YEH GAP SAB BOX KE BEECH ME AA JAYEGA */
}

/* Individual Item */
.combine-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05); /* glass box */
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
    align-items: flex-start;
}

/* Hover */
.combine-item:hover {
    background: rgba(255,255,255,0.10);
    transform: translateY(-4px);
}

/* ICON */
.combine-icon i {
    font-size: 35px;
    color: #ef8944;
    min-width: 45px;
    text-align: center;
}

/* RIGHT CONTENT */
.combine-content h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.combine-content span {
    color: #ef8944;
    font-size: 14px;
    font-weight: 500;
}

.combine-content p {
    color: #bbb;
    margin-top: 6px;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .combine-item {
        flex-direction: column;
        text-align: center;
    }

    .combine-icon i {
        margin-bottom: 10px;
    }
}



































/* SECTION BACKGROUND */
.location-section {
    background: #1a2233;
    padding: 80px 0;
}

/* Title Center */
.location-header h2 {
    color: #ef8944;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
}

.location-header p {
    color: #ddd;
    text-align: center;
    margin-bottom: 40px;
    font-size: 15px;
}

/* FLEX WRAPPER */
.location-wrapper {
    display: flex;
    gap: 30px; /* 🔥 GAP YAHI SE CONTROL HOGA */
    align-items: stretch;
}

/* MAP BOX */
.map-box {
    flex: 1;
    background: rgba(255,255,255,0.05);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
}

.map-box iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 10px;
}

/* INFO BOX */
.location-info {
    flex: 1;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
}

.location-info h3 {
    color: #ef8944;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.location-info p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 15px;
}

/* BUTTON */
.direction-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background: red;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .location-wrapper {
        flex-direction: column;
    }

    .map-box iframe {
        height: 250px;
    }

    .location-info {
        text-align: center;
    }
}




/* ===========================================
   DIVISION SECTION – DARK PREMIUM THEME
=========================================== */

.division-section {
    background: #0f172a;          /* Dark background */
    padding: 80px 0;
}

/* Title Section */
.division-title {
    font-size: 34px;
    font-weight: 800;
    color: #ef8944;               /* Orange heading */
    margin-bottom: 15px;
}

.division-sub {
    max-width: 750px;
    margin: 0 auto;
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.8;
}

/* Left Image */
.division-img img {
    width: 100%;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Right Content */
.division-content {
    background: rgba(255,255,255,0.05);  /* Glass box */
    padding: 30px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
}

.orange-text {
    color: #ef8944;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 12px;
}

.division-heading {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 18px;
}

/* Paragraphs */
.division-content p {
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Hover Effect for Box */
.division-content:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-6px);
    transition: 0.35s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .division-heading {
        font-size: 22px;
    }
    .division-content {
        margin-top: 20px;
    }
}


















/* ==========================================
      NEWS SECTION (PREMIUM DARK THEME)
========================================== */

.news-section {
    background: #0f172a;
    padding: 90px 0;
}

/* Title */
.news-section .section-title span {
    color: #ef8944;
    font-weight: 600;
    font-size: 14px;
}

.news-section .section-title h2 {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    max-width: 850px;
    margin: 10px auto 0;
    line-height: 1.6;
}

/* ==========================================
      NEWS CARDS
========================================== */

.news-box-items {
    background: rgba(255,255,255,0.05);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    transition: 0.35s ease;
    margin-bottom: 35px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    position: relative;
}

/* Hover glow */
.news-box-items:hover {
    transform: translateY(-12px);
    border-color: #ff0000;
    box-shadow: 0 25px 55px rgba(255,0,0,0.28);
}

/* Red left border animation */
.news-box-items::before {
    content: "";
    position: absolute;
    height: 0%;
    width: 4px;
    left: 0;
    top: 0;
    background: #ff0000;
    transition: 0.35s ease;
}

.news-box-items:hover::before {
    height: 100%;
}

/* ==========================================
      IMAGE
========================================== */

.news-img img {
    width: 100%;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ==========================================
      CONTENT
========================================== */

.news-content {
    padding: 25px 22px;
}

.news-content h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.news-content h3 a {
    color: #ef8944 !important;
    text-decoration: none;
    line-height: 1.5;
    transition: 0.3s ease;
}

.news-content h3 a:hover {
    color: #ffffff !important;
}

.news-content p {
    font-size: 14px;
    color: #bcd0e0;
    line-height: 1.7;
}

/* ==========================================
      RESPONSIVE
========================================== */

@media (max-width: 768px) {
    .news-section {
        padding: 60px 0;
    }
}

































/* ======================================
      TEAM SECTION – PREMIUM DARK THEME
====================================== */

.team-section {
    background: #0f172a;
    padding: 90px 0;
    color: #cbd5e1;
}

/* Title */
.team-section .section-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
}

.center-divider {
    width: 90px;
    height: 4px;
    background: #ef8944;
    margin: 15px auto 0;
    border-radius: 4px;
}

/* ======================================
      TEAM CARD
====================================== */

.team-card {
    background: rgba(255,255,255,0.05);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    text-align: center;
    transition: 0.35s ease;
    padding-bottom: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    position: relative;
}

/* Hover effect */
.team-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: #ff0000;
    box-shadow: 0 25px 60px rgba(255,0,0,0.28);
    background: rgba(255,255,255,0.08);
}

/* Red left bar hover effect */
.team-card::before {
    content: "";
    position: absolute;
    height: 0%;
    width: 4px;
    left: 0;
    top: 0;
    background: #ff0000;
    transition: 0.35s ease;
}

.team-card:hover::before {
    height: 100%;
}

/* Image */
.team-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Info */
.team-info {
    padding: 18px 15px;
}

.team-info h5 {
    font-size: 18px;
    font-weight: 700;
    color: #ef8944;   /* ORANGE NAME */
    margin-bottom: 5px;
}

.team-info span {
    font-size: 14px;
    color: #cbd5e1;
}

/* ======================================
      RESPONSIVE
====================================== */

@media (max-width: 768px) {
    .team-section {
        padding: 60px 0;
    }
    .team-card img {
        height: 250px;
    }
}





























/* SECTION */
.core-feature-section {
    background: #0f172a;
    padding: 90px 0;
    color: #cbd5e1;
}

/* LEFT IMAGE */
.feature-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

/* RIGHT CONTENT WRAPPER */
.feature-content {
    max-width: 600px;
}

/* HEADING */
.feature-heading {
    font-size: 28px;
    font-weight: 800;
    color: #ef8944;
    margin-bottom: 18px;
}

/* PARAGRAPH */
.feature-para {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* LIST */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    padding: 15px 20px;
    margin-bottom: 12px;
    border-radius: 12px;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
    position: relative;
    transition: 0.3s ease;
}

/* HOVER */
.feature-list li:hover {
    transform: translateX(6px);
    border-color: #ff0000;
    background: rgba(255,255,255,0.10);
    box-shadow: 0 10px 30px rgba(255,0,0,0.3);
}

/* RED BAR */
.feature-list li::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 0%;
    left: 0;
    top: 0;
    background: #ff0000;
    transition: 0.35s ease;
}

.feature-list li:hover::before {
    height: 100%;
}

/* RESPONSIVE FIX */
@media(max-width: 768px) {
    .feature-content {
        max-width: 100%;
        text-align: center;
    }
    .feature-list li {
        text-align: center;
    }
}





































/* ==========================================
      WHY WORK WITH US – DARK PREMIUM THEME
========================================== */

.why-work-section {
    background: #0f172a;
    padding: 90px 0;
    color: #cbd5e1;
}

/* Title */
.why-work-section .section-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
}

.title-line {
    width: 90px;
    height: 4px;
    background: #ef8944;
    border-radius: 4px;
    margin: 10px auto 0;
}

/* ==========================================
      BOXES
========================================== */

.why-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.35s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    height: 100%;
}

/* Hover glow */
.why-box:hover {
    transform: translateY(-12px);
    background: rgba(255,255,255,0.08);
    border-color: #ff0000;
    box-shadow: 0 22px 55px rgba(255,0,0,0.28);
}

/* Red animated left line */
.why-box::before {
    content: "";
    width: 4px;
    height: 0%;
    background: #ff0000;
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.35s ease;
}

.why-box:hover::before {
    height: 100%;
}

/* ==========================================
      ICON CIRCLE (same as other sections)
========================================== */

.icon-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 2px dashed #ef8944;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: rotateCircle 12s linear infinite;
}

.icon-circle::before {
    content: "";
    width: 95px;
    height: 95px;
    position: absolute;
    border-radius: 50%;
    border: 2px dashed #ef8944;
}

.icon-circle i {
    width: 65px;
    height: 65px;
    background: #1b2335;
    color: #ef8944;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 2;
    transition: 0.3s ease;
}

/* Icon hover effect */
.why-box:hover .icon-circle i {
    background: #ef8944;
    color: #fff;
    animation: pulse 0.5s ease;
}

/* Animations */
@keyframes rotateCircle {
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* ==========================================
      TEXT
========================================== */

.why-box h5 {
    font-size: 18px;
    font-weight: 700;
    color: #ef8944;
    margin-bottom: 10px;
}

.why-box p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* ==========================================
      RESPONSIVE
========================================== */

@media (max-width: 768px) {
    .why-work-section {
        padding: 60px 0;
    }
    .why-box {
        padding: 28px 20px;
    }
}




























/* ==========================================
      USP SECTION – DARK PREMIUM THEME
========================================== */

.usp-section {
    background: #0f172a;
    padding: 90px 0;
    color: #cbd5e1;
}

/* Title */
.usp-section .section-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
}

.usp-section .section-title p {
    color: #bcd0e0;
    max-width: 700px;
    margin: 10px auto 0;
    line-height: 1.7;
}

/* ==========================================
      GRID
========================================== */

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* ==========================================
      CARD
========================================== */

.usp-card {
    background: rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 35px 28px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.35s ease;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Hover Glow */
.usp-card:hover {
    transform: translateY(-12px);
    border-color: #ff0000;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 25px 55px rgba(255,0,0,0.25);
}

/* Left Red Highlight Bar */
.usp-card::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 0%;
    left: 0;
    top: 0;
    background: #ff0000;
    transition: 0.35s ease;
}

.usp-card:hover::before {
    height: 100%;
}

/* ==========================================
      TEXT
========================================== */

.usp-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ef8944;
    margin-bottom: 12px;
}

.usp-card p {
    font-size: 14px;
    color: #bcd0e0;
    line-height: 1.7;
}

/* ==========================================
      BUTTON
========================================== */

.usp-btn {
    display: inline-block;
    margin-top: 15px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 8px;
    background: #e63939;
    transition: 0.3s ease;
}

.usp-btn:hover {
    background: #b90000;
    transform: translateX(6px);
}

/* ==========================================
      RESPONSIVE
========================================== */

@media (max-width: 768px) {
    .usp-section {
        padding: 60px 0;
    }
    .usp-card {
        padding: 28px 22px;
    }
}
.usp-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)) !important;
    gap: 40px !important;
    row-gap: 40px !important;
    column-gap: 40px !important;
}

.usp-card {
    margin: 5px !important;
}






































/* =======================================
      CONTACT SECTION – PREMIUM DARK THEME
======================================= */

.contact-section {
    background: #0f172a;
    padding: 90px 0;
    color: #cbd5e1;
}

/* Wrapper spacing fix */
.contact-wrapper {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* =======================================
      LEFT SIDE – FORM
======================================= */

.contact-form {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 35px 35px;
    border-radius: 18px;
    flex: 1 1 50%;
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    transition: 0.3s ease;
}

.contact-form h2 {
    font-size: 30px;
    font-weight: 800;
    color: #ef8944;
}

.sub-text {
    font-size: 14px;
    color: #bcd0e0;
    margin-bottom: 20px;
}

/* Input Rows */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row input {
    flex: 1;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff0000;
    box-shadow: 0 0 10px rgba(255,0,0,0.25);
}

textarea {
    height: 140px;
    resize: none;
}

/* Submit Button */
.send-btn {
    margin-top: 15px;
    width: 100%;
    background: red;
    color: #fff;
    padding: 14px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.send-btn:hover {
    background: #b40000;
    box-shadow: 0 10px 30px rgba(255,0,0,0.35);
}

/* =======================================
      RIGHT SIDE – INFO CARDS
======================================= */

.contact-info {
    flex: 1 1 40%;
}

.contact-info h2 {
    font-size: 30px;
    font-weight: 800;
    color: #ef8944;
    margin-bottom: 25px;
}

/* Info Cards */
.info-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 22px 25px;
    border-radius: 15px;
    margin-bottom: 18px;
    transition: 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.22);
    position: relative;
}

/* Hover Glow */
.info-card:hover {
    transform: translateX(6px);
    border-color: #ff0000;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 18px 40px rgba(255,0,0,0.28);
}

/* Left Red Line */
.info-card::before {
    content: "";
    position: absolute;
    height: 0%;
    width: 4px;
    left: 0;
    top: 0;
    background: #ff0000;
    transition: 0.35s ease;
}

.info-card:hover::before {
    height: 100%;
}

/* Text */
.info-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ef8944;
    margin-bottom: 6px;
}

.info-card p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* =======================================
      RESPONSIVE
======================================= */

@media(max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-form,
    .contact-info {
        flex: 1 1 100%;
    }
}

@media(max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .form-row {
        flex-direction: column;
    }
}
.contact-wrapper {
    display: flex !important;
    gap: 50px !important;     /* LEFT-RIGHT GAP FIX */
    justify-content: flex-start !important;
    align-items: flex-start;
    flex-wrap: nowrap;
}

.contact-form {
    flex: 1;
}

.contact-info {
    flex: 0.9;
}

.contact-section .container {
    max-width: 1200px !important;
}




















































/* ==========================
   CTA BOX (Center + Premium)
========================== */
.cta-box {
    background: #1e293b;         /* dark card background */
    padding: 40px 30px;
    border-radius: 14px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 35px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.05);
}

/* CTA BUTTON */
.btn-read-more {
    display: inline-block;
    background: red;
    padding: 14px 34px;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}



























































/* =============================
   BLOG CONTENT SECTION
============================= */
.blog-content-section {
    padding: 80px 0;
    background: #0f172a;   /* YOUR DARK COLOR */
}

/* MAIN BLOG CARD */
.wrap-blog-post {
    background: #1e293b;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* BLOG MAIN IMAGE */
.wrap-blog-post img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 25px;
}

/* META */
.meta {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

.meta-item {
    font-size: 14px;
    color: #94a3b8;
}

/* BLOG TITLE */
.post-body h2 {
    font-size: 30px;
    font-weight: 800;
    color: #ef8944;
    margin-bottom: 18px;
}

/* BLOG TEXT */
.post-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 18px;
}

/* INNER HEADINGS */
.post-body h2,
.post-body h3,
.post-body h4 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #ef8944 !important;
}

/* READ MORE BUTTON */
.read-more-wrapper {
    margin-top: 30px;
}

.read-more-btn {
    display: inline-block;
    background: red;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.read-more-btn:hover {
    background: #b40000;
    transform: translateX(6px);
    box-shadow: 0 8px 20px rgba(255,0,0,0.35);
}

/* =============================
   SIDEBAR
============================= */
.sidebar-box {
    background: #1e293b;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    margin-bottom: 30px;
}

.sidebar-box h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ef8944;
}

/* Sidebar Posts */
.post-item {
    margin-bottom: 25px;
}

.post-item .image img {
    width: 100%;
    border-radius: 10px;
}

.post-item h5 {
    margin: 10px 0 5px;
    font-size: 15px;
}

.post-item h5 a {
    color: #e2e8f0;
    text-decoration: none;
    transition: 0.3s;
}

.post-item h5 a:hover {
    color: #ef8944;
}

.post-item .meta-item {
    font-size: 13px;
    color: #94a3b8;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 992px) {
    .post-body h2 {
        font-size: 26px;
    }
}
.blog-content-section h1 {
    font-size: 32px;
    font-weight: 800;
    color: #ef8944; /* AdFusion Orange */
    margin: 35px 0 15px;
    position: relative;
    padding-bottom: 8px;
}


























/* HERO AREA */
.hero-area {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Background Slider */
.hero-bg-slider {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-bg-slider .slide {
    height: 100%;
    width: 100%;
    position: absolute;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroSlider 18s infinite ease-in-out;
}

/* Delay Each Slide */
.hero-bg-slider .slide:nth-child(1) { animation-delay: 0s; }
.hero-bg-slider .slide:nth-child(2) { animation-delay: 6s; }
.hero-bg-slider .slide:nth-child(3) { animation-delay: 12s; }

/* Smooth Fade Keyframes */
@keyframes heroSlider {
    0%   { opacity: 0; }
    8%   { opacity: 1; }
    33%  { opacity: 1; }
    41%  { opacity: 0; }
    100% { opacity: 0; }
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
}

/* CONTENT */
.hero-content {
    text-align: center;
    margin-top: 180px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
}

.hero-content p {
    font-size: 22px;
    color: #eee;
    margin-bottom: 45px;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.btn-primary, .btn-outline {
    padding: 16px 38px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: .3s;
}

/* Primary Button */
.btn-primary {
    background: #e41f28;
    color: #fff;
}
.btn-primary:hover {
    background: #ffffff;
    color: #e41f28;
}

/* Outline Button */
.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}
.btn-outline:hover {
    background: #fff;
    color: #000;
}


.hero-cta {
    display: flex;
    gap: 60px; /* ← yaha buttons ke beech ka gap set hoga */
}
@media(max-width: 768px){
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
}


.hero-cta a {
    display: inline-block !important;
    margin-right: 15px !important;
}

.hero-cta a:last-child {
    margin-right: 0 !important;
}



































/* =============================
   FOOTER MAIN WRAPPER
============================= */
.footer-section {
    background: #0f172a;
    color: #ffffff;
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

.footer-bg {
    background-size: cover;
    background-position: center;
}

/* =============================
   FOOTER GRID
============================= */
.single-footer-widget {
    margin-bottom: 40px;
}

.widget-head h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    text-transform: uppercase;
}

/* =============================
   LIST LINKS
============================= */
.list-area li {
    list-style: none;
    margin-bottom: 10px;
}

.list-area li a {
    color: #b9c4d0;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.list-area li a:hover {
    color: #ef8944;
    padding-left: 5px;
}

/* =============================
   CONTACT LIST
============================= */
.footer-contect li {
    display: flex;
    margin-bottom: 15px;
}

.footer-contect .icon {
    font-size: 20px;
    color: #ef8944;
    margin-right: 12px;
}

.footer-contect .content p,
.footer-contect a {
    color: #b9c4d0;
    margin: 0;
    transition: 0.3s;
}

.footer-contect a:hover {
    color: #ef8944;
}

/* =============================
   NEWSLETTER
============================= */
.footer-content p {
    color: #c3ccd6;
    font-size: 15px;
}

.form-clt input {
    width: 100%;
    padding: 12px 14px;
    border: none;
    border-radius: 6px;
    outline: none;
    margin-bottom: 12px;
}

.theme-btn {
    background: #ef8944;
    border: none;
    color: #fff;
    padding: 12px 20px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.theme-btn:hover {
    background: #d97633;
}

/* =============================
   FOOTER BOTTOM SECTION
============================= */
.footer-bottom {
    background: #0b1120;
    padding: 18px 0;
    margin-top: 40px;
}

.footer-wrapper p {
    margin: 0;
    font-size: 14px;
    color: #b9c4d0;
}

.footer-menu {
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    list-style: none;
}

.footer-menu li a {
    color: #b9c4d0;
    font-size: 14px;
    transition: 0.3s;
}

.footer-menu li a:hover {
    color: #ef8944;
}

/* =============================
   RESPONSIVE FOOTER
============================= */
@media (max-width: 767px) {
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}
.footer-menu {
    display: flex;
    gap: 25px !important; /* gap badha diya */
    padding: 0;
    margin: 0;
}

.footer-menu li {
    list-style: none;
}

.footer-menu li a {
    color: #b9c4d0;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-menu li a:hover {
    color: #ef8944;
}






.single-footer-widget {
    margin-bottom: 30px;
}

.list-area {
    margin-top: 5px;        /* Title & list ke beech perfect gap */
}
.list-area li {
    margin-bottom: 8px;   /* Thoda less for clean look */
}
.widget-head h3 {
    font-size: 18px;        /* ↓ Smaller, cleaner */
    font-weight: 700;
    margin-bottom: 18px;    /* ↓ Title ke niche spacing fix */
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}






























/* White text for this block */
[data-aos="fade-up"] h2,
[data-aos="fade-up"] ul,
[data-aos="fade-up"] ul li {
    color: #ffffff !important;
}

[data-aos="fade-up"] ul li strong {
    color: #ffffff !important;
}














/* Title Orange */
.tips-section h2,
.conclusion h2 {
    color: #ef8944;   /* Orange */
    font-weight: 700;
}

/* Description Black */
.tips-section ul li,
.tips-section ul li strong,
.conclusion p {
    color: whitesmoke;      /* Pure Black */
}























/* ===== GLOBAL HEADING SIZE FIX ===== */

h2, 
h2 *, 
.section-title h2 {
    font-size: 32px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: #ef8944 !important;
}

h3,
h3 *,
.section-title h3 {
    font-size: 32px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: #ef8944 !important;
}
.division-title {
    color: #ef8944 !important;
}
.section-title .division-title,
.division-title,
h2.division-title,
h2.division-title span {
    color: #ef8944 !important;
}

























/* REMOVE WHITE CARD ON SCROLL */
.floating-header.scrolled-header .header-inner {
    background: transparent !important;
    padding: 10px 20px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.floating-header.scrolled-header {
    position: fixed;
    top: 0 !important;
    left: 0;
    width: 100% !important;
    transform: none !important;
    padding: 0 !important;
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.floating-header {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 999;
    transition: 0.35s ease;
}

.header-inner {
    background: #ffffff;
    padding: 18px 35px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
/* Menu text always black */
.nav-menu ul li a {
    color: #000 !important;
}
.floating-header.scrolled-header .nav-menu ul li a {
    color: #000 !important;
}























































/* ================================
   SERVICE SECTION (DARK ELEGANT)
================================ */
.service-section {
    background: #0f172a;
    padding: 80px 0;
}

/* Title */
.service-section .section-title span {
    color: #ef8944;
    font-weight: 600;
    letter-spacing: 1px;
}

.service-section .section-title h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
}

.service-section .section-title p {
    color: #c3ccd6;
    max-width: 750px;
    margin: 0 auto;
}

/* ================================
   SERVICE BOXES
================================ */
.service-card-items-1 {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 30px 25px;
    margin-bottom: 30px;
    text-align: center;
    transition: 0.3s ease-in-out;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.06);
}

/* Hover Effect */
.service-card-items-1:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.09);
    border-color: #ef8944;
}

/* ICON */
.service-icon i {
    font-size: 38px;
    color: #ef8944;
    margin-bottom: 15px;
}

/* TITLE */
.service-content h3 a {
    color: #ef8944 !important;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
}

/* DESCRIPTION */
.service-content p {
    color: #dbe4f0;
    font-size: 15px;
    line-height: 1.6;
}

/* EXPLORE BUTTON */
.theme-btn {
    background: #ef8944;
    color: #fff;
    padding: 14px 36px;
    border-radius: 6px;
    font-weight: 700;
    transition: 0.3s;
    text-decoration: none;
}

.theme-btn:hover {
    background: #d97633;
}
/* ================================
   UPDATED SERVICE SECTION TITLES
================================ */

/* MAIN SECTION HEADING (OUR SERVICES) */
.service-section .section-title h2 {
    color: #ffffff;
    font-size: 25px !important;   /* Updated Size */
    font-weight: 800;
}

/* BOX INNER TITLE (service card headings) */
.service-content h3 a {
    color: #ef8944 !important;
    font-size: 18px !important;   /* Slightly Smaller */
    font-weight: 700;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}
 .section-title h1{
    font-size: 25px !important;
    font-weight: 800 !important;
    color: #ef8944 !important;
 }































 /* ====================================
   GLOBAL RESPONSIVE SYSTEM (FULL SITE)
==================================== */

/* DEFAULT RESET */
img, iframe {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

/* ====================================
   HEADER RESPONSIVE
==================================== */
@media (max-width: 992px) {

    .header-section {
        padding: 12px 0;
    }

    .main-menu {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #0f172a;
        padding: 20px 0;
        text-align: center;
    }

    .main-menu ul {
        flex-direction: column;
        gap: 15px;
    }

    .main-menu ul li a {
        font-size: 18px;
        padding: 10px 0;
        display: block;
    }

    .mobile-toggle {
        display: block;
        font-size: 26px;
        color: #fff;
        cursor: pointer;
    }
}

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

    .hero-content {
        margin-top: 130px;
    }

    .hero-content h1 {
        font-size: 28px !important;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* ====================================
   GRID LAYOUT (ALL SECTIONS)
==================================== */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .col-lg-6,
    .col-lg-4,
    .col-lg-3,
    .col-md-6 {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px;
    }
}

/* ====================================
   SERVICE, CARD, FEATURE BOXES
==================================== */
@media (max-width: 768px) {

    .service-card-items-1,
    .expertise-card,
    .core-card,
    .about-card,
    .industry-card,
    .combine-item {
        padding: 20px;
        text-align: center;
        height: auto;
    }

    .service-icon i {
        font-size: 32px;
    }
}

/* ====================================
   TIMELINE, STEPS, JOURNEY, WORKFLOW
==================================== */
@media (max-width: 768px) {

    .timeline-wrapper {
        display: block !important;
    }

    .timeline-item {
        width: 100%;
        margin-bottom: 25px;
    }

    .journey-grid {
        display: block !important;
    }

    .journey-card {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* ====================================
   IMAGE SECTIONS
==================================== */
@media (max-width: 768px) {
    .division-img img,
    .about-img {
        width: 100% !important;
    }
}

/* ====================================
   FOOTER RESPONSIVE
==================================== */
@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-menu {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* ====================================
   FORM RESPONSIVE
==================================== */
@media (max-width: 768px) {
    input, textarea, button {
        width: 100% !important;
    }
}

/* ====================================
   MAP + ADDRESS SECTION
==================================== */
@media(max-width: 768px){
    .location-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .map-box iframe {
        height: 250px !important;
    }
}




































:root {
    --primary-red: #E31E24; /* Professional Red */
    --deep-black: #0B0B0B;
    --text-light: #ffffff;
    --transition: all 0.3s ease-in-out;
}

body { margin: 0; font-family: 'Inter', sans-serif; }
body {
    overflow-x: hidden !important;
}







/* HEADER */
/* HEADER */
.header-section {
    width: 100%;
    padding: 10px 0; /* ↓ padding kam kiya */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo img {
    height: 60px; /* Thoda chota clean look */
    width: auto;
}

/* MENU */
.main-menu ul {
    list-style: none;
    display: flex;
    gap: 28px; /* ← Yaha gap add kiya */
    margin: 0;
    padding: 0;
}

.main-menu ul li a {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    transition: .3s;
}

.main-menu ul li a.active,
.main-menu ul li a:hover {
    color: #e41f28;
}

/* MOBILE MENU TOGGLE */
.mobile-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

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

    .main-menu {
        display: none; /* Mobile pe hide */
    }

    .mobile-toggle {
        display: block;
    }
}
.main-menu ul {
    display: flex !important;
    align-items: center;
    gap: 35px !important;        /* ← gap forcefully applied */
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu ul li {
    display: inline-block;       /* ← remove if added earlier */
}


















/* Default: Desktop me HIDE */
.mobile-menu-btn {
    display: none !important;
}

/* Mobile: <992px me SHOW */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block !important;
    }

    .main-menu {
        display: none !important;
    }
}





/*---------------- HEADER BUTTON CONTROL ----------------*/

/* Desktop (Default) */
.mobile-menu-btn {
    display: none;
    position: absolute;
    right: 20px;
    top: 25px;
    font-size: 30px;
    color: #111;
    cursor: pointer;
    z-index: 9999;
}

/* Mobile */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block !important; /* show */
    }

    .main-menu {
        display: none !important; /* hide desktop menu */
    }
}
/* MOBILE MENU BUTTON */
.mobile-menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    position: absolute;
    right: 20px;
    top: 25px;
    z-index: 9999;
}
/* RESPONSIVE */
@media(max-width: 992px) {

    .main-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}




















/* HEADER CLEAN FIX */
.header-section {
    width: 100%;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #fff;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo */
.logo img {
    height: 60px;
}

/* Desktop Menu */
.main-menu ul {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu ul li a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

.main-menu ul li a:hover,
.main-menu ul li a.active {
    color: #e41f28;
}

/* MOBILE BUTTON */
.mobile-menu-btn {
    display: none;
    font-size: 30px;
    color: #111;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 18px;
    z-index: 10000;
}

/* MOBILE MENU PANEL */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: #fff;
    padding: 25px;
    transition: 0.4s;
    z-index: 100000;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    font-size: 28px;
    text-align: right;
    margin-bottom: 20px;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    margin-bottom: 18px;
}

.mobile-menu ul li a {
    font-size: 18px;
    color: #111;
    text-decoration: none;
    font-weight: 600;
}

/* RESPONSIVE */
@media(max-width: 992px){
    .main-menu { display: none; }
    .mobile-menu-btn { display: block; }
}


/* MENU RESET */
.main-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-menu ul li {
    position: relative;
}

.main-menu ul li a {
    display: inline-block;
    padding: 8px 18px;    /* box size */
    font-size: 15px;
    font-weight: 600;
    color: #111;
    border-radius: 8px;   /* Rounded box */
    position: relative;
    z-index: 2;
    transition: color .3s ease;
    text-decoration: none;
}

/* BOX EFFECT */
.main-menu ul li a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #e41f28;      /* RED COLOR */
    border-radius: 8px;
    z-index: -1;
    transform: scale(0);      /* Hidden by default */
    opacity: 0;
    transition: 0.3s ease-in-out;
}

/* HOVER */
.main-menu ul li a:hover::before {
    transform: scale(1);
    opacity: 1;
}

/* ACTIVE MENU */
.main-menu ul li a.active::before {
    transform: scale(1);
    opacity: 1;
}

/* Make text white on hover + active */
.main-menu ul li a:hover,
.main-menu ul li a.active {
    color: #fff !important;
}






























/*INDEX PAGE SERVICE SECTION*/
.service-card-items-1 {
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
    z-index: 1;
}

.service-card-items-1::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #e41f28; /* RED COLOR */
    z-index: -1;
    transition: 0.4s ease;
}

/* Hover – text white */
.service-card-items-1:hover h3 a,
.service-card-items-1:hover p,
.service-card-items-1:hover i {
    color: #fff !important;
}
.box-left::before {
    left: -100%;
    top: 0;
}
.box-left:hover::before {
    left: 0;
}
.box-right::before {
    left: 100%;
    top: 0;
}
.box-right:hover::before {
    left: 0;
}
.box-top::before {
    top: -100%;
    left: 0;
}
.box-top:hover::before {
    top: 0;
}
.box-bottom::before {
    top: 100%;
    left: 0;
}
.box-bottom:hover::before {
    top: 0;
}
.box-left2::before {
    left: -100%;
}
.box-left2:hover::before {
    left: 0;
}
.box-right2::before {
    left: 100%;
    opacity: 0.7;
}
.box-right2:hover::before {
    left: 0;
    opacity: 1;
}
.box-diagonal::before {
    top: -100%;
    left: -100%;
}
.box-diagonal:hover::before {
    top: 0;
    left: 0;
}



/*INDUSTRIES SECTION*/
/* Base hover setup */
.brand-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s ease;
    z-index: 1;
}

.brand-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #e41f28; /* Red hover color */
    z-index: -1;
    transition: 0.4s ease;
}

/* Hover text white */
.brand-card:hover h5,
.brand-card:hover p,
.brand-card:hover a {
    color: #fff !important;
}

/* ===== Direction Effects ===== */

/* LEFT → RIGHT */
.box-left::before {
    left: -100%;
    top: 0;
}
.box-left:hover::before {
    left: 0;
}

/* RIGHT → LEFT */
.box-right::before {
    left: 100%;
    top: 0;
}
.box-right:hover::before {
    left: 0;
}

/* TOP → DOWN */
.box-top::before {
    top: -100%;
    left: 0;
}
.box-top:hover::before {
    top: 0;
}

/* BOTTOM → UP */
.box-bottom::before {
    top: 100%;
    left: 0;
}
.box-bottom:hover::before {
    top: 0;
}

/* DIAGONAL (TOP-LEFT → CENTER) */
.box-diagonal::before {
    top: -100%;
    left: -100%;
}
.box-diagonal:hover::before {
    top: 0;
    left: 0;
}






/*WHY CHOOSE US SECTION*/
/* BASE */


.choose-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #e41f28; /* RED COLOR */
    transition: .4s ease;
    z-index: -1;
}

/* TEXT WHITE ON HOVER */
.choose-box:hover h5,
.choose-box:hover p,
.choose-box:hover i {
    color: #fff !important;
}

/* ===== DIRECTIONS ===== */

/* LEFT → RIGHT */
.box-left::before {
    left: -100%;
    top: 0;
}
.box-left:hover::before {
    left: 0;
}

/* RIGHT → LEFT */
.box-right::before {
    left: 100%;
    top: 0;
}
.box-right:hover::before {
    left: 0;
}

/* TOP → DOWN */
.box-top::before {
    top: -100%;
    left: 0;
}
.box-top:hover::before {
    top: 0;
}

/* BOTTOM → UP */
.box-bottom::before {
    top: 100%;
    left: 0;
}
.box-bottom:hover::before {
    top: 0;
}

/* SMOOTH LEFT */
.box-left2::before {
    left: -100%;
}
.box-left2:hover::before {
    left: 0;
}

/* DIAGONAL */
.box-diagonal::before {
    top: -100%;
    left: -100%;
}
.box-diagonal:hover::before {
    top: 0;
    left: 0;
}








/*WORKFLOW SECTION*/
/* Tile Hover Base */
.tile-effect {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    padding: 0;
}

/* Image Styling */
.tile-effect .tile-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    transition: .4s ease;
}

/* Image Zoom On Hover */
.tile-effect:hover .tile-img img {
    transform: scale(1.15);
}

/* Overlay Details */
.tile-effect .tile-details {
    position: absolute;
    bottom: -100%; /* Hidden */
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(228, 31, 40, 0.92); /* Red overlay */
    color: #fff;
    border-radius: 12px;
    transition: .4s ease;
}

/* Slide Up On Hover */
.tile-effect:hover .tile-details {
    bottom: 0;
}

/* Text Style */
.tile-details h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #fff !important;
}

.tile-details ul li {
    font-size: 14px;
    margin-bottom: 4px;
    color: #fff !important;
}















/*NEWS SECTION*/
/* Tile Wrapper */
.tile-effect {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    height: 100%;
    display: block;
}

/* Image fully cover */
.tile-effect .tile-img {
    width: 100%;
    height: 260px; /* Adjust for your box */
    overflow: hidden;
    border-radius: 16px;
}

.tile-effect .tile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease;
    display: block;
}

/* Image zoom */
.tile-effect:hover .tile-img img {
    transform: scale(1.15);
}

/* Overlay full cover */
.tile-effect .tile-details {
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%; /* full cover */
    padding: 20px;
    background: rgba(228, 31, 40, 0.92);
    color: #fff;
    transition: .45s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* content bottom par smoothly */
    border-radius: 16px;
}

/* Slide Up */
.tile-effect:hover .tile-details {
    bottom: 0;
}

/* Text style */
.tile-details h3 {
    color: #fff !important;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tile-details p {
    color: #fff !important;
    font-size: 14px;
}











/*ABOUT PAGE HOVER EFFECTS*/
/* Base Hover Overlay */
.about-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: .3s ease;
    z-index: 1;
}

/* Red overlay hidden */
.about-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #e41f28;
    z-index: -1;
    transition: .4s ease;
}

/* Text white on hover */
.about-card:hover h5,
.about-card:hover p,
.about-card:hover .icon i {
    color: #fff !important;
}

/* ========== DIRECTIONS ========== */

/* LEFT → RIGHT */
.box-left::before {
    left: -100%;
    top: 0;
}
.box-left:hover::before {
    left: 0;
}

/* RIGHT → LEFT */
.box-right::before {
    left: 100%;
    top: 0;
}
.box-right:hover::before {
    left: 0;
}

/* TOP → DOWN */
.box-top::before {
    top: -100%;
    left: 0;
}
.box-top:hover::before {
    top: 0;
}

/* BOTTOM → UP (optional) */
.box-bottom::before {
    top: 100%;
    left: 0;
}
.box-bottom:hover::before {
    top: 0;
}










/*OUR JOURNEY SECTION*/


/* Red overlay base */
.journey-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.journey-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #e41f28;
    z-index: -1;
    transition: .4s ease;
}

/* Hover text white */
.journey-card:hover h4,
.journey-card:hover p,
.journey-card:hover .step {
    color: #fff !important;
}

/* ===== DIRECTIONS ONLY ===== */

/* LEFT → RIGHT */
.box-left::before {
    left: -100%;
    top: 0;
}
.box-left:hover::before {
    left: 0;
}

/* RIGHT → LEFT */
.box-right::before {
    left: 100%;
    top: 0;
}
.box-right:hover::before {
    left: 0;
}

/* TOP → DOWN */
.box-top::before {
    top: -100%;
    left: 0;
}
.box-top:hover::before {
    top: 0;
}

/* BOTTOM → UP */
.box-bottom::before {
    top: 100%;
    left: 0;
}
.box-bottom:hover::before {
    top: 0;
}

/* SMOOTH LEFT */
.box-left2::before {
    left: -100%;
}
.box-left2:hover::before {
    left: 0;
}

/* DIAGONAL */
.box-diagonal::before {
    top: -100%;
    left: -100%;
}
.box-diagonal:hover::before {
    top: 0;
    left: 0;
}

.journey-card .step {
    font-size: 18px;
    padding: 12px 22
    px;
}
.journey-card .step {
    margin-top: 15px;
    display: inline-block;
}




/*WHY CHOOSE US SECTION*/
/* Base for hover animation */
.choose-item {
    position: relative;
    padding: 18px 20px;
    border-radius: 12px;
    background: #1b1f2a;
    transition: 0.35s ease;
    overflow: hidden;
}

/* Red overlay on hover */
.choose-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #e41f28;
    opacity: 0;
    transition: 0.4s ease;
    z-index: 1;
}

/* Show red overlay smoothly */
.choose-item:hover::before {
    opacity: 1;
}

/* Border shine */
.choose-item::after {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    transition: .4s ease;
    z-index: 2;
}

.choose-item:hover::after {
    left: 100%;
}

/* Bring text & icon above overlay */
.choose-item * {
    position: relative;
    z-index: 3;
}

/* Text animation */
.choose-item:hover h6,
.choose-item:hover p {
    color: #fff !important;
    transform: translateY(-4px);
    transition: 0.3s ease;
}

/* Icon Glow */
.choose-item:hover .icon i {
    color: #fff !important;
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.7));
    transition: 0.3s ease;
}
.choose-item .icon {
    margin-right: 15px;
}







/*CORE VALUES SECTION*/
/* Base for overlay */
.core-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Overlay */
.core-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #e41f28;
    z-index: -1;
    transition: .4s ease;
}

/* Text & Icon white on hover */
.core-card:hover h5,
.core-card:hover p,
.core-card:hover .core-icon i {
    color: #fff !important;
}














/* Image Hover Effect (Red Tint + Zoom) */
.feature-img {
    position: relative;
    overflow: hidden;
}

.feature-img img {
    transition: 0.4s ease;
}

/* Zoom + Slight Rotate */
.feature-img:hover img {
    transform: scale(1.08) rotate(1deg);
    filter: brightness(0.8);
}

/* Red Overlay on Image Hover */
.feature-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(228, 31, 40, 0.4);
    opacity: 0;
    transition: 0.4s ease;
}

.feature-img:hover::before {
    opacity: 1;
}

/* Content Hover Effect (Red Border + Glow) */
.feature-content {
    transition: 0.35s ease;
    border-radius: 12px;
    padding: 10px;
}

.feature-content:hover {
    border: 2px solid #e41f28;
    box-shadow: 0 0 18px rgba(228, 31, 40, 0.4);
    transform: translateY(-4px);
}

/* Text Hover */
.feature-content:hover h4,
.feature-content:hover p,
.feature-content:hover li {
    color: #fff !important;
    transition: 0.3s ease;
}




















/* Base hover overlay setup */
.why-box {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: .3s ease;
}

.why-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #e41f28;
    z-index: -1;
    transition: .4s ease;
}

/* Text & icon hover */
.why-box:hover h5,
.why-box:hover p,
.why-box:hover .icon-circle i {
    color: #fff !important;
}

.icon-circle i {
    transition: .3s ease;
}

.why-box:hover .icon-circle i {
    transform: scale(1.2);
}

/* LEFT → RIGHT */
.box-left::before {
    left: -100%; top: 0;
}
.box-left:hover::before {
    left: 0;
}

/* RIGHT → LEFT */
.box-right::before {
    left: 100%; top: 0;
}
.box-right:hover::before {
    left: 0;
}

/* TOP → DOWN */
.box-top::before {
    top: -100%; left: 0;
}
.box-top:hover::before {
    top: 0;
}

/* BOTTOM → UP */
.box-bottom::before {
    top: 100%; left: 0;
}
.box-bottom:hover::before {
    top: 0;
}

/* DIAGONAL */
.box-diagonal::before {
    top: -100%; left: -100%;
}
.box-diagonal:hover::before {
    top: 0; left: 0;
}

/* SMOOTH LEFT SLIDE */
.box-left2::before {
    left: -100%;
}
.box-left2:hover::before {
    left: 0;
}




























/* Base */
.industry-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: .3s ease;
}

/* Red overlay */
.industry-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #e41f28;
    z-index: -1;
    transition: .4s ease;
}

/* Hover text/icon white */
.industry-card:hover h5,
.industry-card:hover .icon i {
    color: #fff !important;
}

.icon i {
    transition: .3s ease;
}

.industry-card:hover .icon i {
    transform: scale(1.2);
}

/* ---------- Directions ---------- */

/* LEFT → RIGHT */
.box-left::before {
    left: -100%; top: 0;
}
.box-left:hover::before {
    left: 0;
}

/* RIGHT → LEFT */
.box-right::before {
    left: 100%; top: 0;
}
.box-right:hover::before {
    left: 0;
}

/* TOP → DOWN */
.box-top::before {
    top: -100%; left: 0;
}
.box-top:hover::before {
    top: 0;
}

/* BOTTOM → UP */
.box-bottom::before {
    top: 100%; left: 0;
}
.box-bottom:hover::before {
    top: 0;
}

/* DIAGONAL */
.box-diagonal::before {
    top: -100%; left: -100%;
}
.box-diagonal:hover::before {
    top: 0; left: 0;
}

/* SMOOTH LEFT */
.box-left2::before {
    left: -100%;
}
.box-left2:hover::before {
    left: 0;
}




























/* Base hover overlay setup */
.expertise-modern-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: .3s ease;
}

/* Red overlay */
.expertise-modern-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #e41f28;
    z-index: -1;
    transition: .4s ease;
}

/* Text white on hover */
.expertise-modern-card:hover h4,
.expertise-modern-card:hover li {
    color: #fff !important;
}

/* ---------------- DIRECTIONS ---------------- */

/* LEFT → RIGHT */
.box-left::before {
    left: -100%; top: 0;
}
.box-left:hover::before {
    left: 0;
}

/* RIGHT → LEFT */
.box-right::before {
    left: 100%; top: 0;
}
.box-right:hover::before {
    left: 0;
}

/* TOP → DOWN */
.box-top::before {
    top: -100%; left: 0;
}
.box-top:hover::before {
    top: 0;
}

/* BOTTOM → UP */
.box-bottom::before {
    top: 100%; left: 0;
}
.box-bottom:hover::before {
    top: 0;
}

/* (Optional) DIAGONAL or LEFT2 can be added anytime */



















/* Base */
.combine-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: .3s ease;
}

/* Red Sliding Overlay */
.combine-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #e41f28;
    z-index: -1;
    transition: .4s ease;
}

/* Hover → Text & Icon White */
.combine-item:hover h5,
.combine-item:hover span,
.combine-item:hover p,
.combine-item:hover .combine-icon i {
    color: #fff !important;
}

/* Icon Hover Animation */
.combine-icon i {
    transition: .3s ease;
}
.combine-item:hover .combine-icon i {
    transform: scale(1.2);
}

/* ------------- DIRECTIONS ------------- */

/* LEFT → RIGHT */
.box-left::before {
    left: -100%; top: 0;
}
.box-left:hover::before {
    left: 0;
}

/* RIGHT → LEFT */
.box-right::before {
    left: 100%; top: 0;
}
.box-right:hover::before {
    left: 0;
}

/* TOP → DOWN */
.box-top::before {
    top: -100%; left: 0;
}
.box-top:hover::before {
    top: 0;
}

/* BOTTOM → UP */
.box-bottom::before {
    top: 100%; left: 0;
}
.box-bottom:hover::before {
    top: 0;
}

/* (Optional) DIAGONAL — if you add more items later */
.box-diagonal::before {
    top: -100%; left: -100%;
}
.box-diagonal:hover::before {
    top: 0; left: 0;
}

/* (Optional) LEFT Smooth */
.box-left2::before {
    left: -100%;
}
.box-left2:hover::before {
    left: 0;
}






































/* NAV MENU BASE */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu ul li {
    position: relative;
}

.nav-menu ul li a {
    display: inline-block;
    padding: 8px 18px;     /* box size */
    font-size: 15px;
    font-weight: 600;
    color: #111;
    border-radius: 8px;    /* rounded box */
    position: relative;
    z-index: 2;
    transition: color .3s ease;
    text-decoration: none;
}

/* BOX HOVER EFFECT */
.nav-menu ul li a::before {
    content: "";
    position: absolute;
    inset: 0;
    background:red; 
    color: white;     /* RED COLOR */
    border-radius: 8px;
    z-index: -1;
    transform: scale(0);       /* hidden by default */
    opacity: 0;
    transition: 0.3s ease-in-out;
}

/* HOVER */
.nav-menu ul li a:hover::before {
    transform: scale(1);
    opacity: 1;
}

.nav-menu ul li a:hover {
    color: #fff !important;
}

/* ACTIVE PAGE */
.nav-menu ul li a.active,
.nav-menu ul li a.active:hover {
    color: #fff !important;
}

.nav-menu ul li a.active::before {
    transform: scale(1);
    opacity: 1;
}
/* NAV MENU WRAPPER */
.nav-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;   /* gap reduce */
    margin: 0;
    padding: 0;
    white-space: nowrap;   /* SINGLE LINE FIX */
}

/* EACH MENU ITEM */
.nav-menu ul li {
    position: relative;
}

/* MENU TEXT */
.nav-menu ul li a {
    display: inline-block;
    padding: 10px 16px;      /* bigger click area */
    font-size: 14px;         /* smaller for fit */
    font-weight: 600;
    color: #111;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    transition: color .3s ease;
    text-decoration: none;
    line-height: 1;          /* fix menu height */
}

/* RED BOX */
.nav-menu ul li a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #e41f28;
    border-radius: 10px;
    transform: scale(0.1);
    opacity: 0;
    transition: .3s ease-in-out;
    z-index: -1;
}

/* HOVER */
.nav-menu ul li a:hover::before {
    transform: scale(1);
    opacity: 1;
}

.nav-menu ul li a:hover {
    color: white !important;
}

/* ACTIVE MENU */
.nav-menu ul li a.active::before {
    transform: scale(1);
    opacity: 1;
}
.nav-menu ul li a.active {
    color: #fff !important;
}



.nav-menu ul {
    gap: 8px !important;      /* FORCEFULLY gap reduce */
}

.nav-menu ul li {
    margin: 0 !important;     /* kisi ne margin diya ho to remove */
    padding: 0 !important;
}

.nav-menu ul li a {
    padding: 8px 12px !important;  /* box size compact */
}






















/* Wrapper */
.social-icons {
    display: flex;
    gap: 18px;
}

/* Base Circle */
.social-icons a {
    width: 60px;
    height: 60px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    color: #111;
    border: 2px solid transparent;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Background animation layer */
.social-icons a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    transform: scale(0);
    transition: 0.35s ease;
    z-index: -1;
}

/* Icon flip */
.social-icons a i {
    transition: 0.35s ease;
}
.social-icons a:hover i {
    transform: rotateY(360deg);
}

/* --------------------------
   BRAND COLORS ON HOVER
--------------------------- */

/* Twitter */
.social-icons a:nth-child(1)::before {
    background: #1DA1F2;  
}
.social-icons a:nth-child(1):hover {
    color: #fff;
    border-color: #1DA1F2;
}
.social-icons a:nth-child(1):hover::before {
    transform: scale(1);
}

/* Facebook */
.social-icons a:nth-child(2)::before {
    background: #1877F2;
}
.social-icons a:nth-child(2):hover {
    color: #fff;
    border-color: #1877F2;
}
.social-icons a:nth-child(2):hover::before {
    transform: scale(1);
}

/* Pinterest */
.social-icons a:nth-child(3)::before {
    background: #E60023;
}
.social-icons a:nth-child(3):hover {
    color: #fff;
    border-color: #E60023;
}
.social-icons a:nth-child(3):hover::before {
    transform: scale(1);
}

/* Instagram (gradient) */
.social-icons a:nth-child(4)::before {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}
.social-icons a:nth-child(4):hover {
    color: #fff;
    border-color: #d62976;
}
.social-icons a:nth-child(4):hover::before {
    transform: scale(1);
}

/* LinkedIn */
.social-icons a:nth-child(5)::before {
    background: #0077B5;
}
.social-icons a:nth-child(5):hover {
    color: #fff;
    border-color: #0077B5;
}
.social-icons a:nth-child(5):hover::before {
    transform: scale(1);
}
.social-icons a i {
    text-decoration: none !important;   /* underline hatao */
    display: inline-block;
    line-height: 1;
}
.social-icons a {
    text-decoration: none !important;
}
.social-icons {
    display: flex;
    gap: 20px !important;   /* 👈 Gap yaha control hota hai */
}




















































.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #f7f7f7;
    border-radius: 6px;
    color: #222;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

/* Left Red Bar */
.category-list li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #e41f28;
    transition: 0.3s ease;
    z-index: 0;
}

/* Hover Effect */
.category-list li a:hover::before {
    width: 5px;
}

.category-list li a:hover {
    background: #ffe9ea;
    transform: translateX(5px);
}

.category-list li a i {
    font-size: 16px;
    transition: 0.3s ease;
}

/* Icon hover */
.category-list li a:hover i {
    color: #e41f28;
    transform: translateX(3px);
}