/********** Template CSS **********/
:root {
    --primary: #FF5400;
    --light: #F1F8FF;
    --dark: #0F172B;
}

.ff-secondary {
    font-family: 'Montserrat', Sans-serif;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    font-size: 15px;
    color: var(--light) !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 40px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-dark .navbar-brand img {
    max-height: 95px;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-brand img {
    max-height: 95px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
    }

    .navbar-dark .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, .1)
    }

    .navbar-dark .navbar-nav .nav-link,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
    }

    .navbar-dark .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        background: transparent !important;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: var(--dark) !important;
    }
}


/*** Hero Header ***/
.hero-header {
    background:  url(../img/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-header img {
    animation: imgRotate 50s linear infinite;
}

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

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}



/*** Section Title ***/
/* .section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
} */





/*added line fix start */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    background: var(--primary);

    left: -55px;
    top: 50%;
    transform: translateY(-50%);
}

/*added line fix end */




.section-title::after {
    /* position: absolute; */
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Food Menu ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: calc(100% - 38px);
    transition: .5s;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item:hover {
    height: 100%;
}

.team-item .btn {
    border-radius: 38px 38px 0 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* .logo-gif {
  height: 60px;
  width: 190px;
} */

/* Know Us Better Section */
.know-us {
    background-color: #faf9f4;
}

.section-subtitle {
    display: flex;
    align-items: center;
    font-size: 13px;
    letter-spacing: 3px;
    color: #000;
    margin-bottom: 20px;
}

.section-subtitle span {
    width: 50px;
    height: 1px;
    background: #000;
    margin-right: 15px;
}

.know-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
}

.know-text {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
}

.know-more {
    display: inline-flex;
    align-items: center;
    margin-top: 25px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

.know-more span {
    width: 50px;
    height: 1px;
    background: #000;
    margin-right: 15px;
}

/* Business Process Section */
.business-process {
  background: #f7f6f1;
}

/* Heading */
.process-heading {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.process-heading .line {
  width: 60px;
  height: 1px;
  background: #000;
  margin-right: 15px;
}

.small-title {
  font-size: 13px;
  letter-spacing: 3px;
  color: #000;
}

.process-title {
  font-size: 48px;
  font-weight: 700;
  color: #000;
}

/* Video */
.video-wrapper {
  background: #000;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Right Text Panel */
.process-text {
  background: #000;
  padding: 60px;
}

.process-text p {
  color: #fff;
  font-size: 26px;
  line-height: 1.5;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
  .process-title {
    font-size: 36px;
  }

  .process-text {
    padding: 40px 25px;
  }

  .process-text p {
    font-size: 20px;
  }
}




.clients-section {
  background: #fbf8ef;
  padding: clamp(40px, 6vw, 80px) 0;
}

.section-subtitle {
  letter-spacing: 3px;
  font-size: 14px;
  color: #333;
}

.section-title {
  font-size: clamp(26px, 4vw, 28px);
  font-weight: 700;
  margin: 12px 0 35px;
}

.logo-slider {
  overflow: hidden;
  background: #fff;
  padding: clamp(20px, 3vw, 40px) 0;
}

.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.logo-track img {
   height: clamp(80px, 10vw, 140px);   /* increased size */
  margin: 0 clamp(10px,2vw, 50px);  /* more spacing */
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-track img:hover {
  transform: scale(1.05);
}


.logo-track img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

@media (min-width: 1024px) {
  .logo-track img {
    height: 160px;
  }
}


/* Pause animation on hover (desktop) */
.logo-slider:hover .logo-track {
  animation-play-state: paused;
}



/* Infinite scroll animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }
}

@media (max-width: 768px) {
  .logo-track {
    animation-duration: 20s;
  }
}




/* Auto slider */
.services-section {
  padding: 80px 0;
  background: #fbfaf4;
}

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

.section-title span {
  font-size: 13px;
  letter-spacing: 3px;
  color: #777;
}

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

/* Card */
.service-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  text-decoration: none;
}

.service-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.25)
  );
  display: flex;
  align-items: center;
  padding: 30px;
}

.overlay h3 {
  color: #fff;
  font-size: 22px;
  margin: 0;
}

/* Swiper Arrows */
.servicesSwiper .swiper-button-prev,
.servicesSwiper .swiper-button-next {
  color: #FF5400;
}

.servicesSwiper .swiper-button-prev::after,
.servicesSwiper .swiper-button-next::after {
  font-size: 22px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .service-card img {
    height: 300px;
  }
}

/* Blogs Section */

.blogs-section {
  background: #fbf8ef;
  padding: 80px 20px;
}

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

.section-title span {
  letter-spacing: 2px;
  font-size: 12px;
  color: #777;
}

.section-title h2 {
  font-size: 42px;
  margin-top: 10px;
}

.blog-card {
  display: flex;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  min-height: 350px;
}

/* Image */
.blog-image {
  width: 50%;
}

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

/* Content */
.blog-content {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-tag {
  color: #ff5722;
  font-weight: 600;
  font-size: 14px;
}

.blog-meta {
  font-size: 13px;
  color: #888;
  margin: 10px 0;
}

.blog-content h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.read-more {
  text-decoration: none;
  font-weight: 600;
  color: #000;
  border-bottom: 1px solid #000;
  width: fit-content;
}

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #000;
}

/* 🔥 Responsive */
@media (max-width: 992px) {
  .blog-card {
    flex-direction: column;
  }

  .blog-image,
  .blog-content {
    width: 100%;
  }

  .blog-content {
    padding: 25px;
  }

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


/* Footer Customization */
/* 🔥 FORCE RESET */
.cta-clean {
  background: none;
  padding: 70px 20px;
}

.cta-clean h2,
.cta-clean a,
.cta-clean p {
  color: #fff !important;
}


/* Remove any pseudo elements */
.cta-clean::before,
.cta-clean::after {
  content: none !important;
  display: none !important;
}

/* Layout */
.cta-wrap {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* Left */
.cta-left {
  color: #000;
  max-width: 600px;
}

.cta-logo {
  width: 200px;
  margin-bottom: 25px;
}

.cta-left h2 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.cta-phone {
  color: #ff6a00;
  font-size: 18px;
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
}

/* Social */
.cta-socials img {
  width: 30px;
  margin-right: 12px;
}

/* Button */
.cta-btn {
  background: #fff;
  color: #000;
  padding: 15px 36px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
}

section {
  background-image: none !important;
}


/* Responsive */
@media (max-width: 991px) {
  .cta-wrap {
    flex-direction: column;
    text-align: center;
  }

  .cta-left h2 {
    font-size: 32px;
  }
}

/* ABOUT US CSS EDITS */

.definition-section {
  background: #000;
  padding: clamp(60px, 8vw, 120px) 20px;
  color: #fff;
}

/* Main layout */
.definition-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* TEXT */
.definition-text {
  z-index: 2;
}

.subtitle {
  letter-spacing: 3px;
  font-size: 14px;
  opacity: 0.7;
}

.title {
  margin: 15px 0 25px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
}

.outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px #ff5400;
}

.brand {
  color: #ff5400;
  font-weight: 700;
}

.description {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.8;
  opacity: 0.9;
}

/* ANIMATION AREA */
.definition-visual {
  position: relative;
  width: 320px;
  height: 320px;
  margin: auto;
}

.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

/* Rings */
.ring-1 {
  border: 4px solid transparent;
  border-top: 4px solid #ff5400;
  animation: spin 14s linear infinite;
}

.ring-2 {
  inset: 20px;
  border: 3px dashed #ff5400;
  opacity: 0.6;
  animation: spinReverse 18s linear infinite;
}

.ring-3 {
  inset: 45px;
  border: 3px solid rgba(255,84,0,0.4);
  animation: pulse 3s ease-in-out infinite;
}

/* Logo */
.center-logo {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 110px;
  filter: drop-shadow(0 0 18px rgba(255,84,0,0.6));
}

/* Animations */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  to { transform: rotate(-360deg); }
}

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

/* 📱 MOBILE & TABLET FIX */
@media (max-width: 768px) {
  .definition-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .definition-visual {
    margin-top: 40px;
    width: 260px;
    height: 260px;
  }
}

/* CONNECT WITH US SECTION */

.about-modern {
  background: #fbf8ef;
  padding: clamp(60px, 8vw, 120px) 20px;
}

.about-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

/* LEFT */
.about-tag {
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #ff5400;
}

.about-left h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin: 15px 0 25px;
}

.about-left h2 span {
  color: #ff5400;
}

.accent-line {
  width: 70px;
  height: 4px;
  background: #ff5400;
  border-radius: 4px;
}

/* RIGHT */
.about-right p {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.9;
  color: #222;
  margin-bottom: 26px;
}

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

  .about-left {
    text-align: center;
  }

  .accent-line {
    margin: 0 auto;
  }
}


/* COACT IMPACT CSS */

.coact-impact {
  background: #fbf8ef;
  padding: clamp(60px, 8vw, 120px) 20px;
  font-family: system-ui, sans-serif;
}

/* MISSION / VISION */
.mv-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 40px 20px;
}

.mv-card {
  background: linear-gradient(180deg, #0b0b0b, #000);
  border-radius: 28px;
  padding: 45px 35px;
  text-align: center;
  color: #fff;
  position: relative;
  transition: all 0.45s ease;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  overflow: hidden;
}

/* gradient border glow */
.mv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 28px;
  background: linear-gradient(120deg, #ff5400, #7b5cff, #00c6ff);
  -webkit-mask: linear-gradient(#000 0 0) content-box,
                linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.25;
}

.mv-card:hover::before {
  opacity: 1;
}

.mv-card:hover {
  transform: translateY(-14px) scale(1.03);
}


.mv-card .icon {
  font-size: 40px;
  color: #ff5400;
}

.mv-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
  font-weight: 700;
  color: #ffffff;
}

.mv-card p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #d6d6d6;
}

/* ICON */
.icon-wrap {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 32px;
  margin-bottom: 20px;
  box-shadow: 0 0 25px currentColor;
}

.icon-wrap.orange { color: #ff5400; background: #ff540020; }
.icon-wrap.purple { color: #9b6bff; background: #9b6bff20; }
.icon-wrap.blue   { color: #00c6ff; background: #00c6ff20; }

/* IMPACT */
.impact-header {
  text-align: center;
  margin: 90px 0 50px;
}

.impact-header span {
  letter-spacing: 4px;
  font-size: 13px;
  color: #555;
}

.impact-header h2 {
  font-size: clamp(32px, 5vw, 52px);
  margin-top: 10px;
}

.impact-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.impact-box {
  text-align: center;
}

.impact-box h3 {
  font-size: clamp(42px, 6vw, 72px);
  color: #ff5400;
  font-weight: 800;
  transition: transform 0.3s;
}

.impact-box:hover h3 {
  transform: scale(1.1);
}

.impact-box p {
  font-size: 15px;
  margin-top: 8px;
}

/* RESPONSIVE */

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


  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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




/* ABOUT VIDEO IFRAME CSS */
/* SECTION */
/* SECTION */
.journey-section {
  background: linear-gradient(180deg, #ffffff, #f8f9fb);
  padding: clamp(60px, 8vw, 120px) 16px;
}

/* LAYOUT */
.journey-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
}

/* VIDEO FRAME */
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

/* VIDEO */
.journey-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.journey-tag {
  color: #ff5400;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 700;
}

.journey-content h2 {
  font-size: clamp(28px, 4vw, 48px);
  color: #0b1320;
  font-weight: 800;
  margin: 12px 0 22px;
}

.journey-content p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.9;
  color: #4a5568;
  margin-bottom: 18px;
}

.journey-content span {
  color: #ff5400;
  font-weight: 600;
}

.sub-text {
  opacity: 0.85;
}

/* BUTTON */
.journey-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff5400, #ff7a00);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(255,84,0,0.35);
}

/* TABLET */
@media (max-width: 1024px) {
  .journey-container {
    grid-template-columns: 1fr;
  }

  .journey-content {
    text-align: center;
  }

  .journey-btn {
    margin-inline: auto;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .journey-content h2 {
    font-size: 26px;
  }

  .journey-btn {
    width: 100%;
    text-align: center;
  }
}



/* ABOUTUS CO_PARTNER SECTION */

.partners-section {
  background: linear-gradient(180deg, #fffaf2, #fff1e6);
  padding: clamp(60px, 8vw, 120px) 16px;
}

.partners-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.partners-tag {
  font-size: 12px;
  letter-spacing: 4px;
  color: #ff5400;
  font-weight: 700;
}

.partners-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin: 14px 0 50px;
  color: #0b1320;
}

/* GRID */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 3vw, 28px);
}

/* CARD */
.partner-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Glow Accent */
.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top,
    rgba(255,84,0,0.18),
    transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.partner-card:hover::before {
  opacity: 1;
}

/* Hover motion */
.partner-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 30px 60px rgba(255,84,0,0.25);
}

/* LOGO */
.partner-card img {
  width: clamp(180px, 20vw, 260px);
  height: clamp(110px, 10vw, 160px);
  object-fit: contain;
  
}



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

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

/* Physcal Events Slider Image Css */

/* SECTION */
/* ===============================
   EVENT HERO IMAGE SECTION
================================ */

.event-hero {
  width: 100%;
  background: #000; /* fallback */
  overflow: hidden;
}

/* Image container */
.image-wrapper {
  position: relative;
  width: 100%;
  height: clamp(280px, 45vw, 720px); /* responsive height */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image styling */
.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* keeps aspect ratio */
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

/* Subtle premium zoom effect */
.image-wrapper:hover .event-image {
  transform: scale(1.04);
}

/* Gradient overlay for premium look */
.image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.55) 100%
  );
  pointer-events: none;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 576px) {
  .image-wrapper {
    height: 260px;
  }
}

/* ===============================
   TABLET OPTIMIZATION
================================ */

@media (min-width: 577px) and (max-width: 991px) {
  .image-wrapper {
    height: 420px;
  }
}

/* ===============================
   LARGE SCREENS / TV
================================ */

@media (min-width: 1400px) {
  .image-wrapper {
    height: 800px;
  }
}



/* Home Bussiness Process Video Css Fixes */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Montserrat, sans-serif;
}

.business-process {
  width: 100%;
}

/* Header */
.process-header {
  background: #f4f4f4 url("pattern.png") repeat;
  padding: 60px 80px;
}

.small-title {
  font-size: 14px;
  letter-spacing: 2px;
}

.process-header h2 {
  font-size: 32px;
  margin-top: 10px;
}

/* Layout */
.process-wrapper {
  display: flex;
  height: 420px; /* FIXED HEIGHT – NO GROW */
  overflow: hidden;
}

/* Video Box */
.video-box {
  flex: 65%;
  background: linear-gradient(90deg, #020b1d, #1a0f2c);
  position: relative;
  overflow: hidden; /* CRITICAL */
}

/* Video + Poster FIX */
.video-box video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;  /* NO STRETCH */
  object-position: center;
  display: block;
}

/* Controls */
.controls {
  position: absolute;
  bottom: 20px;
  left: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.controls button {
  background: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}

.controls input[type="range"] {
  flex: 1;
}

/* Text */
.text-box {
  flex: 35%;
  background: #000;
  color: #fff;
  padding: 60px;
  display: flex;
  align-items: center;
}

.text-box p {
  font-size: 22px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .process-wrapper {
    flex-direction: column;
    height: auto;
  }

  .video-box {
    height: 300px;
  }

  .text-box {
    padding: 40px;
  }
}


/* MOBILE FIX – VIDEO NOT SHOWING */
@media (max-width: 992px) {

  .process-wrapper {
    flex-direction: column;
    height: auto; /* allow stacking */
  }

  .video-box {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
  }

  .video-box video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .text-box {
    padding: 40px 20px;
  }
}

/* PHYSICAL EVENT PAGE TITLE CSS FIXES */

/* SECTION */
.section-heading {
  background: #ffffff;
  padding: clamp(50px, 8vw, 50px) 16px;
}

/* WRAPPER */
.heading-wrap {
  max-width: 1300px;
  margin: auto;
}

/* SMALL TAG */
.heading-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 600;
  color: #111;
  margin-bottom: 18px;
}

/* LINE BEFORE COACT */
.heading-tag .line {
  width: 50px;
  height: 2px;
  background: #111;
}

/* MAIN HEADING */
.heading-wrap h1 {
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.15;
  color: #000;
  margin: 0;
  max-width: 1100px;
}

/* HIGHLIGHT PART */
.heading-wrap h1 span {
  display: inline-block;
}

/* TABLET */
@media (max-width: 1024px) {
  .heading-wrap h1 {
    font-size: clamp(26px, 6vw, 44px);
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .heading-tag {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .heading-tag .line {
    width: 32px;
  }

  .heading-wrap h1 {
    font-size: 26px;
    line-height: 1.25;
  }
}

/* PHYSICAL EVENT SUB CONTENT CSS FIXES */
/* RESET */
/* SECTION */
.physical-event-section {
  background: none !important;
  padding: clamp(50px, 8vw, 50px) 15px;
}

/* CARD */
.event-card {
  background: #f2f2f2;
  border-radius: 16px;
  padding: clamp(30px, 5vw, 60px);
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.event-header {
  max-width: 600px;
  margin-bottom: 40px;
}

.event-icon {
  display: inline-block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ff5400;
  position: relative;
  margin-bottom: 20px;
}

.event-icon::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.event-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #000;
  margin-bottom: 15px;
}

.event-header p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* CONTENT */
.event-content {
  row-gap: 30px;
}

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

.event-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 22px;
  line-height: 1.7;
  color: #333;
  animation: fadeUp 0.8s ease both;
}

.event-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: #ff5400;
  border-radius: 50%;
}

.event-list strong {
  font-weight: 700;
  color: #000;
}

/* SUBTLE ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .event-header {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .event-card {
    padding: 25px 20px;
  }

  .event-header h2 {
    font-size: 26px;
  }

  .event-header p {
    font-size: 15px;
  }

  .event-list li {
    font-size: 15px;
  }
}


/* PHYSICAL EVENTS APPLICATION LIST CSS FIXES */
* {
  box-sizing: border-box;
}

.applications-section {
  padding: 80px 20px;
  background: #fff;
  font-family: "Inter", system-ui, sans-serif;
}

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

/* Heading */
.section-head {
  margin-bottom: 60px;
}

.brand-line {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  color: #555;
  position: relative;
  padding-left: 60px;
}

.brand-line::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  top: 50%;
}

.section-head h2 {
  font-size: 40px;
  margin-top: 16px;
  font-weight: 800;
}

/* Grid */
.applications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 40px;
}

/* Card */
.app-card {
  position: relative;
  padding-left: 22px;
}

.app-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

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

/* Custom Marker (NO ICONS) */
.app-marker {
  position: absolute;
  left: 0;
  top: 6px;

  width: 0;
  height: 0;

  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #ff5400;
}

/* Hover animation */
.app-card:hover .app-marker {
  transform: translateX(4px);
  transition: 0.3s ease;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .section-head h2 {
    font-size: 32px;
  }
}


/* Physical Events COACT APPLICATIONS SECTION CSS FIXES */

.applications {
  padding: 80px 0;
  background: #fff;
}

.section-head .line {
  width: 50px;
  height: 2px;
  background: #000;
  display: inline-block;
  margin-right: 10px;
}

.section-head .small-title {
  letter-spacing: 2px;
  font-size: 12px;
  color: #777;
}

.section-head h2 {
  font-size: 42px;
  margin-top: 10px;
}

/* GRID */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 40px;
  margin-top: 60px;
}

/* CARD */
.app-card {
  text-align: left;
}

.app-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;   /* center horizontally */
  display: block;
}

.app-card {
  text-align: center;
}


/* TEXT */
.app-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.app-card p {
  font-size: 14px;
  color: #000;
  margin: 0;
}

/* HOVER (SUBTLE) */
.app-card:hover img {
  transform: translateY(-4px);
  transition: 0.3s ease;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .apps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .app-card img {
    width: 52px;
    height: 52px;
  }
}

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

  .app-card img {
    width: 48px;
    height: 48px;
  }
}


/* EXHIBITIONS SECTION CSS FIXES */

/* Base Reset */
/* ===== EXHIBITIONS SECTION ===== */
.exhibitions {
  width: 100%;
  padding: 60px 5%;
  background: #fff;
  box-sizing: border-box;
}

/* Header line + text */
.exh-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.exh-header .line {
  width: 40px;
  height: 1px;
  background: #000;
}

.exh-header .label {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Main title */
.exh-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 40px;
}

/* Grey box */
.exh-box {
  background: #f3f3f1;
  padding: 50px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Orange circle icon */
.exh-icon {
  min-width: 48px;
  height: 48px;
  background: #ff4d1c;
  border-radius: 50%;
  position: relative;
}

.exh-icon::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Content */
.exh-content h3 {
  font-size: clamp(22px, 4vw, 32px);
  margin-bottom: 12px;
}

.exh-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* List */
.exh-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.exh-content li {
  display: flex;
  gap: 10px;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Check icon */
.exh-content .check {
  min-width: 16px;
  height: 16px;
  background: #ff4d1c;
  border-radius: 50%;
  position: relative;
  margin-top: 6px;
}

.exh-content .check::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 4px;
  height: 7px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.exh-content strong {
  color: #000;
  font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .exh-box {
    flex-direction: column;
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .exhibitions {
    padding: 40px 20px;
  }

  .exh-box {
    padding: 25px;
  }
}

/* Event Page slider css fixes */
/* ===============================
   HERO SLIDER
================================= */
.hero-slider {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}


/* Slides wrapper */
.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual slide */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1.2s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-slider .content {
  position: absolute;
  top: 62%;                 /* 🔥 VERY NOTICEABLE DOWN */
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
}

.hero-slider .content h1 {
  white-space: nowrap;   /* 🔥 KEY FIX */
}


/* Dark overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* Content Center */
.content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff !important;
  z-index: 2;
}

/* COACT text */
.top-text {
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: 6px;
  font-weight: 300;
  margin-bottom: 18px;
  opacity: 0.85;
}

/* Main Title */
.main-text {
  font-size: clamp(32px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 28px;
  color: #fff;
}

/* Explore Button */
.explore {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #fff;
  font-size: 30px;
  letter-spacing: 3px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.explore:hover {
  opacity: 1;
}

/* Explore Line */
.explore .line {
  width: 50px;
  height: 1px;
  background: #fff;
}

/* ===============================
   NAVIGATION ARROWS
================================= */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.6);

  display: flex;               /* ✅ KEY FIX */
  align-items: center;         /* ✅ vertical center */
  justify-content: center;     /* ✅ horizontal center */

  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 3;
  padding: 0;                  /* ✅ remove default padding */
  line-height: 1;              /* ✅ prevents glyph shift */
  transition: all 0.3s ease;
}
.nav:hover {
  background: rgba(255, 255, 255, 0.35);
}
.nav.prev {
  left: 30px;
}

.nav.next {
  right: 30px;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
  .main-text {
    letter-spacing: 2px;
  }

  .nav {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .explore .line {
    width: 36px;
  }
}

@media (max-width: 480px) {
  .top-text {
    letter-spacing: 4px;
  }

  .main-text {
    font-size: 32px;
  }

  .explore {
    font-size: 11px;
    letter-spacing: 2px;
  }
}

/* Home Slider */
.home .hero-header {
    height: 620px !important;
}


/* Screen Width */

.container-xxl {
    max-width: 100%;
}

/* CONTACT FORM CSS FIXES */

* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fffdf8;
}

.contact-section {
  max-width: 720px;
  margin: auto;
  padding: 80px 20px;
}

.contact-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #000;
}

.contact-form .field {
  position: relative;
  margin-bottom: 30px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 18px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: transparent;
  font-size: 16px;
  outline: none;
  transition: .3s;
}

.field textarea {
  height: 120px;
  resize: none;
}

.field label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 14px;
  pointer-events: none;
  transition: .3s;
  background: #fffdf8;
  padding: 0 6px;
}

.field input:focus,
.field textarea:focus {
  border-color: #ff5400;
}

.field input:focus + label,
.field input:valid + label,
.field textarea:focus + label,
.field textarea:valid + label {
  top: -8px;
  font-size: 12px;
  color: #ff5400;
}

/* SEND BUTTON */
.send-btn {
  background: #ff5400;
  color: #fff;
  padding: 16px 42px;
  border: none;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  position: relative;
  transition: .3s;
}

.send-btn:hover {
  background: #e94c00;
}

/* LOADER */
.btn-loader {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.5);
  border-top-color: #fff;
  border-radius: 50%;
  display: none;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* STATUS */
#formStatus {
  margin-top: 25px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: .4s ease;
}

#formStatus.success {
  color: #28a745;
  opacity: 1;
  transform: translateY(0);
}

#formStatus.error {
  color: red;
  opacity: 1;
  transform: translateY(0);
  animation: shake .4s;
}

@keyframes shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  50% { transform: translateX(6px); }
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .contact-title {
    font-size: 28px;
  }
}

/*CONTACT USE LOCATION CSS FIXES*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #fafafa;
  color: #222;
}

/* SECTION */
.locations-section {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

/* COUNTRY TITLE */
.country-title {
  font-size: 22px;
  margin: 40px 0 20px;
  position: relative;
}

.country-title::after {
  content: '';
  width: 50px;
  height: 3px;
  background: #ff5400;
  position: absolute;
  bottom: -8px;
  left: 0;
}

/* GRID */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 320px));
  gap: 30px;
  justify-content: flex-start;
}

/* CARD */
.location-card {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  border-top: 5px solid #ff5400;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.12);
}

/* CARD TEXT */
.location-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

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

.location-card span {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}


/* Prjects Section CSS Fixes */
.blog-card {
  background: #fff;
  padding: 40px 20px;
}

.blog-inner {
  max-width: 1200px;
  margin: auto;
  background: #fbf8ee;
  border-radius: 28px;
  display: flex;
  gap: 40px; /* ✔ one-line space between image & text */
  padding: 40px;
}

/* IMAGE */
.blog-image {
  flex: 1;
  border-radius: 22px;
  overflow: hidden;
}

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

/* CONTENT */
.blog-content {
  flex: 1;
  position: relative;
}

.blog-tag {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.blog-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 28px;
}

/* READ MORE */
.read-more {
  font-size: 14px;
  letter-spacing: 2px;
  color: #ff5400; /* ✔ company color */
  text-decoration: none;
  border-bottom: 1px solid #ff5400;
  padding-bottom: 4px;
}

/* DATE */
.blog-date {
  position: absolute;
  right: -10px; /* ✔ moved LEFT slightly */
  bottom: 0;
  background: #fff;
  width: 80px;
  height: 90px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-date strong {
  font-size: 26px;
  color: #111;
}

.blog-date span {
  font-size: 13px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .blog-inner {
    flex-direction: column;
  }

  .blog-date {
    right: 20px;
    bottom: 20px;
  }
}

/* COACT OT DEFINATIONS SECTION CSS FIXES */

.coact-ot-white {
  background: #ffffff;
  padding: 80px 20px;
  overflow: hidden;
}

.coact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* LEFT */
.coact-left {
  flex: 1;
  animation: fadeLeft 0.9s ease forwards;
}

.coact-label {
  font-size: 13px;
  letter-spacing: 3px;
  color: #777;
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
}

.coact-label::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #ff5400;
  margin-right: 12px;
}

.coact-title {
  font-size: 48px;
  font-weight: 800;
  color: #111;
  margin-bottom: 18px;
}

.coact-title span {
  color: #ff5400;
}

.coact-subtitle {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 24px;
  color: #222;
}

.coact-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 520px;
}

/* RIGHT */
.coact-right {
  flex: 1;
  animation: fadeRight 0.9s ease forwards;
}

.features-title {
  font-size: 20px;
  margin-bottom: 22px;
  color: #111;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  font-size: 16px;
  margin-bottom: 18px;
  padding-left: 30px;
  position: relative;
  color: #333;
}

/* ✔ TICK ICON — SAME STYLE */
.features-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #ff5400;
  font-size: 14px;
}

/* ANIMATIONS */
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .coact-container {
    flex-direction: column;
    gap: 50px;
  }

  .coact-title {
    font-size: 36px;
  }

  .coact-subtitle {
    font-size: 18px;
  }
}

/* PRODUCTS OT PAGE CSS FIXES */

./* Base */
body {
  font-family: "Inter", Arial, sans-serif;
  background: #ffffff;
  color: #111;
}

.products-section {
  padding: 70px 0;
}

/* Section Header */
.section-header {
  margin-bottom: 40px;
}

.section-header .small-line {
  width: 50px;
  height: 1px;
  background: #000;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.section-header .small-text {
  font-size: 13px;
  letter-spacing: 2px;
  color: #000;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-top: 10px;
}

/* Product Card */
.product-card {
  background: #f1f1f1;
  padding: 50px;
}

.product-left h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  margin: 20px 0 10px;
}

.product-left h6 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.product-left p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Icon */
.icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ff5a00;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Lists */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff5a00;
  font-weight: bold;
}

/* Right Content */
.product-right h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 991px) {
  .product-card {
    padding: 30px;
  }

  .product-left h3 {
    font-size: 30px;
  }

  .section-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .products-section {
    padding: 50px 0;
  }

  .product-left h3 {
    font-size: 26px;
  }

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

/* Additional footer css fixes */

/* Reduce space ABOVE Company */
.footer .container.py-5 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

/* Company heading spacing */
.footer h4.section-title {
  margin-bottom: 12px !important;
}

/* Company links spacing */
.footer .btn-link {
  padding: 2px 0 !important;
  margin: 0 !important;
  line-height: 1.4;
}

/* Remove extra bottom gap under Company column */
.footer .col-lg-3 {
  margin-bottom: 0 !important;
}

.cta-clean {
  margin-bottom: 10px !important;
}



/*EXTRA FOOTER CSS FIXES*/

/* Remove space above & below Company */
.footer-company-container {
  padding-top: 8px;
  padding-bottom: 8px;
}

/* Company heading spacing */
.footer-company-container h4 {
  margin-top: 0;
  margin-bottom: 12px;
}

/* Company links spacing */
.footer-company-container .btn-link {
  padding: 2px 0;
  margin: 0;
  line-height: 1.4;
}


@media (max-width: 768px) {
  .footer-company-container {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}






