/* Import fonts from Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400..700;1,400..700&family=Playfair+Display:ital,wght@0,400..700;1,400..700&family=Cinzel:wght@400;500;600;700&display=swap");

/* Apply DM Sans as default */
* {
    font-family: "DM Sans", sans-serif;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

/* Specific override for stats and offerings elements - FORCE NO SCROLLBAR */
.stats-section,
.stats-section *,
.stats-container,
.stats-container *,
.stats-card,
.stats-card *,
.offerings-block,
.offerings-block *,
.offerings-container,
.offerings-container *,
.offering-card,
.offering-card *,
.insight-services,
.insight-services *,
.insight-cards,
.insight-cards *,
.insight-card,
.insight-card * {
    overflow: hidden !important;
    position: relative !important;
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE/Edge */
}

/* Hide scrollbars for WebKit browsers */
.stats-section::-webkit-scrollbar,
.stats-container::-webkit-scrollbar,
.stats-card::-webkit-scrollbar,
.offerings-block::-webkit-scrollbar,
.offerings-container::-webkit-scrollbar,
.offering-card::-webkit-scrollbar,
.insight-services::-webkit-scrollbar,
.insight-services *::-webkit-scrollbar,
.insight-cards::-webkit-scrollbar,
.insight-cards *::-webkit-scrollbar,
.insight-card::-webkit-scrollbar,
.insight-card *::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* AOS animation compatibility fixes - Override for stats and offerings sections */
.stats-section [data-aos],
.offerings-block [data-aos],
.insight-services [data-aos],
.insight-cards [data-aos] {
    overflow: hidden !important;
    position: relative;
}

.stats-section .stats-card[data-aos],
.offerings-block .offering-card[data-aos],
.insight-services .insight-card[data-aos],
.insight-cards .insight-card[data-aos] {
    overflow: hidden !important;
    position: relative;
}

.stats-section .stats-card[data-aos] *,
.offerings-block .offering-card[data-aos] *,
.insight-services .insight-card[data-aos] *,
.insight-cards .insight-card[data-aos] * {
    overflow: hidden !important;
    position: relative;
}

body {
    font-family: "DM Sans", sans-serif;
    /* background: #f5f5f5; */
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
}

/* Example: Use Playfair Display for headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    overflow: visible;
}

a {
    text-decoration: none;
}

/*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

/*---------------------------------------
       SCROLL-TO-TOP BUTTON              
  -----------------------------------------*/

/* Animation keyframes for mobile menu navItems */
@keyframes slideInFade {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes jump {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: none;
    place-items: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: none;
  background-color: #a8113e;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn.show {
    display: grid;
}

.scroll-top-btn:hover {
    background-color: #8a0e32;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.scroll-top-btn i {
    font-size: 20px;
}

@media screen and (max-width: 576px) {
    .scroll-top-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }

    .scroll-top-btn i {
        font-size: 18px;
    }
}

/*---------------------------------------
       SECTION-TITLE          
  -----------------------------------------*/
.section-title {
    font-weight: 400;
    font-size: 16px;
  color: #a8113e;
    width: fit-content;
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 18px;
    }
}

@media screen and (max-width: 576px) {
    .section-title {
        font-size: 16px;
    }
}

/*---------------------------------------
       SECTION-BTN          
  -----------------------------------------*/

.section-btn {
    display: inline-block;
    margin-top: 10px;
    color: #000000;
    font-weight: 500;
    font-size: 14px;
  background-color: #ffffff;
    border-radius: 30px;
    padding: 10px 32px;
    transition: all 0.3s ease-in;
}

.section-btn:hover {
  color: #a8113e;
    background-color: #000000;
}

@media screen and (max-width: 992px) {
    .section-btn {
        margin-top: 7px;
        font-size: 14px;
        border-radius: 8px;
        padding: 10px 30px;
    }
}

@media screen and (max-width: 768px) {
    .section-btn {
        margin-top: 4px;
        font-size: 13px;
        padding: 8px 26px;
    }
}

@media screen and (max-width: 576px) {
    .section-btn {
        margin-top: 3px;
        font-size: 12px;
    }
}

/*---------------------------------------
       ANIMATE-SENTENCE          
  -----------------------------------------*/
.animate-sentence {
    color: #727272;
    font-size: 16px;
    font-weight: 400;
}

.word {
    color: #4b4b4b;
    display: inline-block;
    opacity: 0.8;
    transition: color 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.word.visible {
    color: #ffffff;
    opacity: 1;
}

/*---------------------------------------
       HEADER          
  -----------------------------------------*/
.custom-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
  z-index: 10000;
    background-color: #fff;
    overflow: visible !important;
}

.custom-header .logo {
    width: 180px;
}

.custom-header .navItems {
    position: static !important;
    overflow: visible !important;
}

/* Override navItems overflow for mobile menu */
@media (max-width: 767.98px) {
  .custom-header #mobile-menu.mobile-menu.navItems {
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }
}

.custom-header .container {
  overflow: visible !important;
  position: relative;
}

.custom-header .navItems a {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease-in;
}

.custom-header .navItems a.active {
  color: #a8113e !important;
}

.custom-header .navItems a:hover {
  color: #a8113e;
}

/* White navigation text for all pages except index.html */
.non-home-page .custom-header .navItems a {
    color: #ffffff !important;
    transition: all 0.3s ease-in;
}

/* Default: White arrow (for non-white backgrounds) */
.custom-header .dropdown-arrow {
  filter: brightness(0) invert(1); /* White arrow by default */
}

/* White header background - make arrow black */
.custom-header[style*="background: #fff"] .dropdown-arrow,
.custom-header[style*="background-color: #fff"] .dropdown-arrow,
.custom-header[style*="background: #ffffff"] .dropdown-arrow,
.custom-header[style*="background-color: #ffffff"] .dropdown-arrow,
.custom-header.scrolled .dropdown-arrow {
  filter: brightness(0) !important; /* Black arrow for white background */
}

/* Ensure white arrow for non-home pages with transparent/colored header */
.non-home-page .custom-header:not(.scrolled) .navItems a .dropdown-arrow {
  filter: brightness(0) invert(1) !important; /* White arrow for non-white backgrounds */
}

/* When non-home page header is scrolled (white background), make arrow black */
.non-home-page .custom-header.scrolled .navItems a .dropdown-arrow {
  filter: brightness(0) !important; /* Black arrow when scrolled (white background) */
}

.non-home-page .custom-header .navItems a.active {
    color: #de2428 !important;
}

.non-home-page .custom-header .navItems a:hover {
    color: #ffffff !important;
    opacity: 0.7;
}

/* Scrolled header background for non-home pages */
.non-home-page .custom-header.scrolled {
    background-color: #ffffff !important;
    transition: background-color 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.non-home-page .custom-header.scrolled .navItems a {
    color: #000000 !important;
}

.non-home-page .custom-header.scrolled .navItems a .dropdown-arrow {
  filter: none;
}

.non-home-page .custom-header.scrolled .navItems a.active {
    color: #de2428 !important;
}

.non-home-page .custom-header.scrolled .navItems a:hover {
    color: #de2428 !important;
    opacity: 1;
}

/* Logo switching on scroll for non-home pages */
.non-home-page .scrolled-logo {
    display: none;
}

.non-home-page .custom-header.scrolled .default-logo {
    display: none;
}

.non-home-page .custom-header.scrolled .scrolled-logo {
    display: block;
}

.custom-header .get-touch-btn {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease-in;
  background-color: #a8113e;
    padding: 10px 15px 10px 15px;
    border-radius: 10px;
}

.custom-header .get-touch-btn:hover {
    color: #de2428;
}

.custom-header .circle-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #de2428 0%, #de2428 44.76%, #de2428 100%);
}

.nav-item {
    position: relative !important;
    overflow: visible !important;
}

.nav-item.dropdown .dropdown-menu {
    display: none !important;
    position: absolute !important;
  top: calc(100% + 2px) !important;
    left: 0 !important;
    min-width: 200px;
  z-index: 10001 !important;
    color: white;
    background-color: #000000;
    border: none;
    outline: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    margin-top: 0 !important;
    padding: 8px 0 !important;
    opacity: 0;
    visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  transition-delay: 0s;
    list-style: none !important;
    margin: 0 !important;
}

.nav-item.dropdown .dropdown-menu li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown:hover > .dropdown-menu,
.nav-item:hover .dropdown-menu,
.nav-item.dropdown .dropdown-menu:hover {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  transition-delay: 0s;
}

/* Additional hover triggers */
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  transition-delay: 0s;
}

/* Delay hiding when mouse leaves */
.nav-item.dropdown:not(:hover) .dropdown-menu:not(:hover) {
  transition-delay: 0.2s;
}

.dropdown-item {
    padding: 10px 15px;
    display: block;
  color: #fff !important;
    text-decoration: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
  transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-item:hover {
    color: #de2428;
    background-color: #222222;
    cursor: pointer;
}

/* Dropdown arrow styling */
.services-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-arrow {
  width: 9px;
  height: 20px;
  transition: transform 0.3s ease, filter 0.3s ease;
  display: inline-block;
  filter: brightness(0) invert(1); /* Make arrow white by default (for non-white backgrounds) */
  cursor: pointer;
}

.nav-item.dropdown.active .dropdown-arrow,
.nav-item.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Active state for clicked dropdown */
.nav-item.dropdown.active .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  transition-delay: 0s;
}

.custom-header .menu-btn {
    background: transparent;
    border: none;
    padding: 0 2px;
    border-radius: 3px;
  cursor: pointer;
  z-index: 10001;
  position: relative;
}

.custom-header .menu-btn .menu-icon {
    width: 26px;
}

/* Mobile menu - full screen shutter animation from top to bottom */
@media (max-width: 767.98px) {
  .custom-header {
    height: 70px; /* Reduced height for mobile */
  }

  /* Override Bootstrap d-md-none on mobile */
  .custom-header #mobile-menu.mobile-menu.d-md-none {
    display: flex !important;
  }

  /* Ensure mobile menu covers full screen without any gaps */
  .custom-header #mobile-menu.mobile-menu {
    background-color: #111318cc;
    color: #ffffff;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    min-width: 100vw !important;
    min-height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    margin: 0 !important;
    padding: 70px 1rem 1.5rem 2rem;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease-in-out, visibility 0s 0.3s;
    z-index: 10000;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    display: flex !important; /* Override Bootstrap classes */
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.65rem;
    box-sizing: border-box;
    pointer-events: none; /* Don't block content when closed */
    visibility: hidden; /* Hide when closed */
    opacity: 0; /* Fully transparent when closed */
  }

  /* Prevent navItems from causing overflow in mobile menu */
  .custom-header #mobile-menu.mobile-menu.navItems {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    max-height: 100vh !important;
    height: 100vh !important;
    text-align: start !important;
    align-items: flex-start !important;
  }

  /* Ensure all content inside mobile menu doesn't overflow */
  .custom-header #mobile-menu.mobile-menu.navItems * {
    max-width: 100%;
    word-wrap: break-word;
    box-sizing: border-box;
  }

  /* Ensure nav links don't overflow */
  .custom-header #mobile-menu.mobile-menu .nav-link {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-align: start !important;
    align-self: flex-start;
    opacity: 0; /* Initially hidden for animation */
    transform: translateX(-20px);
  }

  /* Ensure body/html don't create white space when menu is open */
  body.menu-open,
  html.menu-open {
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  /* Ensure mobile menu has no offset from viewport edges */
  .custom-header #mobile-menu.mobile-menu {
    inset: 0 !important; /* Shorthand for top:0, right:0, bottom:0, left:0 */
  }

  .custom-header #mobile-menu.mobile-menu.show {
    transform: scaleY(1);
    pointer-events: auto; /* Allow interaction when open */
    visibility: visible; /* Show when open */
    opacity: 1; /* Fully visible when open */
    display: flex !important; /* Ensure it's displayed when shown */
    transition: transform 0.3s ease-in-out, visibility 0s 0s, opacity 0.3s ease-in-out;
  }

  /* Animation for navItems when menu opens */
  .custom-header #mobile-menu.mobile-menu.show .nav-link,
  .custom-header #mobile-menu.mobile-menu.show .mobile-dropdown,
  .custom-header #mobile-menu.mobile-menu.show .get-touch-btn {
    animation: slideInFade 0.4s ease-out forwards;
    opacity: 0;
  }

  /* Staggered animation delays for each nav item */
  .custom-header #mobile-menu.mobile-menu.show .nav-link:nth-child(1),
  .custom-header #mobile-menu.mobile-menu.show .mobile-dropdown:nth-child(1) {
    animation-delay: 0.1s;
  }

  .custom-header #mobile-menu.mobile-menu.show .nav-link:nth-child(2),
  .custom-header #mobile-menu.mobile-menu.show .mobile-dropdown:nth-child(2) {
    animation-delay: 0.15s;
  }

  .custom-header #mobile-menu.mobile-menu.show .nav-link:nth-child(3),
  .custom-header #mobile-menu.mobile-menu.show .mobile-dropdown:nth-child(3) {
    animation-delay: 0.2s;
  }

  .custom-header #mobile-menu.mobile-menu.show .nav-link:nth-child(4),
  .custom-header #mobile-menu.mobile-menu.show .mobile-dropdown:nth-child(4) {
    animation-delay: 0.25s;
  }

  .custom-header #mobile-menu.mobile-menu.show .nav-link:nth-child(5),
  .custom-header #mobile-menu.mobile-menu.show .mobile-dropdown:nth-child(5) {
    animation-delay: 0.3s;
  }

  .custom-header #mobile-menu.mobile-menu.show .nav-link:nth-child(6),
  .custom-header #mobile-menu.mobile-menu.show .mobile-dropdown:nth-child(6) {
    animation-delay: 0.35s;
  }

  .custom-header #mobile-menu.mobile-menu.show .nav-link:nth-child(7),
  .custom-header #mobile-menu.mobile-menu.show .mobile-dropdown:nth-child(7) {
    animation-delay: 0.4s;
  }

  .custom-header #mobile-menu.mobile-menu .get-touch-btn {
    opacity: 0; /* Initially hidden for animation */
    transform: translateX(-20px);
  }

  .custom-header #mobile-menu.mobile-menu.show .get-touch-btn {
    animation-delay: 0.45s;
    opacity: 1;
    transform: translateX(0);
  }
}

/* Ensure menu is hidden on medium screens and up */
@media (min-width: 768px) {
  .custom-header #mobile-menu.mobile-menu {
    display: none !important;
  }
}

/* Mobile menu styles - only on mobile screens */
@media (max-width: 767.98px) {
  /* Mobile menu close button - positioned at top right of screen */
  #mobile-menu.mobile-menu.show .mobile-menu-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #mobile-menu.mobile-menu:not(.show) .mobile-menu-close {
    display: none;
  }

  #mobile-menu.mobile-menu .mobile-menu-close svg {
    width: 24px;
    height: 24px;
  }

  /* Mobile menu navigation items - only within mobile menu */
  .custom-header #mobile-menu.mobile-menu .nav-link {
    color: #ffffff;
    font-size: 14px;
    text-align: start !important;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease-in;
    text-transform: uppercase;
  }

  /* Reset animation when menu is shown */
  .custom-header #mobile-menu.mobile-menu.show .nav-link {
    opacity: 1;
    transform: translateX(0);
  }

  .custom-header #mobile-menu.mobile-menu .nav-link:hover {
    color: #de2428;
  }

  /* Mobile dropdown - only within mobile menu */
  #mobile-menu.mobile-menu .mobile-dropdown {
    width: 100%;
    text-align: start;
    opacity: 0; /* Initially hidden for animation */
    transform: translateX(-20px);
  }

  /* Reset animation when menu is shown */
  .custom-header #mobile-menu.mobile-menu.show .mobile-dropdown {
    opacity: 1;
    transform: translateX(0);
  }

  #mobile-menu.mobile-menu .mobile-dropdown-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    text-align: start;
  }

  #mobile-menu.mobile-menu .mobile-chevron {
    transition: transform 0.3s ease;
  }

  #mobile-menu.mobile-menu .mobile-dropdown.active .mobile-chevron {
    transform: rotate(180deg);
  }

  #mobile-menu.mobile-menu .mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(0, 0, 0, 0.2);
    margin-top: 0.5rem;
    border-radius: 4px;
  }

  #mobile-menu.mobile-menu .mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
  }

  #mobile-menu.mobile-menu .mobile-dropdown-item {
    display: block;
    color: #ffffff;
    font-size: 12px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-in;
  }

  #mobile-menu.mobile-menu .mobile-dropdown-item:hover {
    color: #de2428;
  }
}

/* Tablet view: 768px to 991px - Show nav items, adjust padding */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .custom-header {
        height: auto;
    }
  
  .custom-header .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .custom-header .navItems {
    gap: 1rem !important;
  }
  
  .custom-header .navItems a {
    font-size: 14px;
  }
  
  .custom-header .get-touch-btn {
    font-size: 14px;
    padding: 8px 12px;
  }
}

/* Mobile view: Below 768px - Hide nav items, show hamburger */
@media screen and (max-width: 767px) {
  .custom-header {
    height: 70px; /* Reduced height for mobile */
  }
  
  .custom-header .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media screen and (max-width: 576px) {
    .custom-header .logo {
        width: 140px;
    }

    .custom-header .navItems a {
        font-size: 13px;
    }

    /* White navigation text for responsive on non-home pages */
    .non-home-page .custom-header .navItems a {
        color: #ffffff !important;
        font-size: 13px;
    }
  
  .custom-header .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/*---------------------------------------
       PAGE-HERO-SECTION            
  -----------------------------------------*/

.page-hero {
    height: 350px;
    background: url("/assets/png/page-hero-1.png") center center no-repeat;
    background-size: cover;
    background-color: #111;
    padding: 2rem 1rem;
    overflow-x: hidden;
}

/* .hero-page {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
} */

/* Base styling */
.about-us-hero-page {
    position: relative;
    width: 100%;
    min-height: 60vh;
    /* responsive height */
    padding-top: 90px;
    background: url(/assets/jpg/about-banner.jpg) center center no-repeat;
    background-size: cover;
  background-color: #a8113e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.services-hero-page {
    position: relative;
    width: 100%;
    min-height: 60vh;
    /* responsive height */
    padding-top: 90px;
    background: url(/assets/jpg/about-banner.jpg) center center no-repeat;
    background-size: cover;
  background-color: #a8113e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.services-hero-page h1 {
    font-size: 4vw;

    font-weight: 600;
  color: #ffffff;
    margin: 0;
}

.about-us-hero-page h1 {
    font-size: 4vw;
    font-weight: 600;
  color: #ffffff;
    margin: 0;
}

.services-hero-page p {
    font-size: 1.2vw;
    /* responsive font */
    font-weight: 400;
  color: #ffffff;
    margin-top: 10px;
}

.about-us-hero-page p {
    font-size: 1.2vw;
    /* responsive font */
    font-weight: 400;
  color: #ffffff;
    margin-top: 10px;
}

/* 📱 Mobile screens */
@media (max-width: 768px) {
    .about-us-hero-page {
        min-height: 50vh;
        padding-top: 60px;
    }

    .about-us-hero-page h1 {
        font-size: 8vw;
    }

    .about-us-hero-page p {
        font-size: 3.5vw;
    }
}

/* 📱 Small mobile screens */
@media (max-width: 480px) {
    .about-us-hero-page {
        min-height: 40vh;
        padding-top: 40px;
    }

    .about-us-hero-page h1 {
        font-size: 10vw;
    }

    .about-us-hero-page p {
        font-size: 4vw;
    }
}

.page-hero.contact {
    background: url("/assets/png/page-hero-2.png") center center no-repeat;
}

.page-hero.contact {
    background: url("/assets/png/page-hero-2.png") center center no-repeat;
}

.page-hero.service-details-inner {
    background: none;
    background-color: #111318;
}

.page-hero .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
}

.page-hero .title {
    font-weight: 600;
    font-size: 50px;
    text-align: center;
    color: #ffffff;
}

.subtitle {
    color: aqua;
}

.page-hero .arrow {
    margin-top: 3rem;
    margin-bottom: 2rem;
    width: 15px;
}

@media screen and (max-width: 992px) {
    .page-hero .title {
        font-size: 44px;
    }
}

@media screen and (max-width: 576px) {
    .page-hero .title {
        font-size: 40px;
    }
}

/*---------------------------------------
       HERO         
  -----------------------------------------*/

.hero-page {
    width: 100%;
    overflow: hidden;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    padding: 10rem 8rem 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    background: url(/assets/jpg/home-banner.png) center center / cover no-repeat;
    color: #fff;
    overflow: hidden;
    box-sizing: border-box;
    max-width: 100%;
    overflow-y: hidden;
    /* background-color: #000; */
}

.hero h1 {
    overflow: hidden;
  
}

/* text + icon row */
.hero-text {
    width: 59%;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    overflow: hidden;
}

@media (max-width: 1360px) {
    .hero {
        padding: 8rem 3rem 4rem 3rem;
        /* reduce left/right padding */
    }

    .hero-text {
        width: 100%;
    }
}

.hero-text img {
    transform: translateY(-65px);
    animation: floatIcon 3s ease-in-out infinite;
    /* opacity: 0; */
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Keyframes for floating + fade-in */
@keyframes floatIcon {
    0% {
        transform: translateY(-65px);
        opacity: 0;
    }

    20% {
        /* opacity: 1; */
    }

    50% {
        transform: translateY(-14px);
        /* opacity: 1; */
    }

    100% {
        transform: translateY(-65px);
        /* opacity: 1; */
    }
}

/* Headline */
.hero h1 {
    color: #ffffff;
    font-weight: 400;
    font-size: clamp(2rem, 5vw, 50px);
    max-width: 800px;
    line-height: 1.2;
  font-family: "Playfair Display", serif;
    overflow-x: hidden;
}

/* Paragraph */
.hero-text span {
    color: #fff;
    font-weight: 400;
    /* font-size: clamp(1rem, 2vw, 16px); */
    line-height: 1.6;
    display: block;
}

/* Button */
.section-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #fff;
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.section-btn:hover {
    background: #f0f0f0;
}

/* Background switching animation */
/* .hero::before,
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    animation: bounceY 3s ease-in-out infinite;
} */

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: -10px; 
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}


.hero::before {
    background-image: url(/assets/jpg/home-banner.jpg);
    /* opacity: 1; */
}

.hero::after {
    background-image: url(/assets/jpg/home-banner.jpg);
    opacity: 0;
}

.hero.bg-switch::before {
    opacity: 0;
}

.hero.bg-switch::after {
    opacity: 1;
}

@keyframes bounceY {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* 📱 Responsive adjustments */
@media (max-width: 1200px) {
    .hero {
        height: 650px;
        padding: 8rem 4rem 4rem 4rem;
    }
}

@media (max-width: 992px) {
    .hero {
        height: auto;
        padding: 6rem 3rem 3rem 3rem;
        overflow-x: hidden;
    }

    .hero h1 {
        font-size: 42px;
    text-align: start;
    }

    .hero-text span {
        font-size: 12px;
    text-align: start;
    }
}

@media (max-width: 1360px) {
    .hero {
        height: auto;
        padding: 6rem 3rem 3rem 3rem;
        overflow-x: hidden;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-text span {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
    padding: 6rem 1.5rem 3rem 3rem;
    align-items: start;
        text-align: center;
        overflow-x: hidden;
    
    }

    .hero-text {
        flex-direction: column;
    align-items: start;
        width: 100%;
    }

    .hero-text img {
        margin-top: 1rem;
        transform: none;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 5rem 1rem 2rem 1rem;
    }

    .hero h1 {
        font-size: 30px;
        max-width: 400px;
    }
}

@media (max-width: 416px) {
    .hero {
        padding: 4rem 1rem 2rem 1rem;
    }
}

/*---------------------------------------
       WHO-WE-ARE         
  -----------------------------------------*/
.who-we-are {
    margin-top: -70px;
    overflow-x: hidden;
}

.who-we-are p {
    margin-top: 5px;
    font-weight: 500;
    font-size: 38px;
    max-width: 800px;
}

@media screen and (max-width: 992px) {
    .who-we-are p {
        font-size: 34px;
    }
}

@media screen and (max-width: 768px) {
    .who-we-are h4 {
        font-size: 18px;
    }

    .who-we-are p {
        font-size: 30px;
    }
}

@media screen and (max-width: 576px) {
    .who-we-are {
        padding: 0 1rem;
    }

    .who-we-are h4 {
        font-size: 16px;
    }

    .who-we-are p {
        font-size: 25px;
    }
}

/*---------------------------------------
       Home: OUR-SERVICES         
  -----------------------------------------*/

.home-our-services {
    background: #0f0f0f;
    overflow-x: hidden;
    padding: 4rem 0;
}

.home-our-services .top-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
    align-items: end;
}

.home-our-services .top-section h2 {
    font-weight: 700;
    font-size: 40px;
    color: #ffffff;
}

.home-our-services .top-section p {
    font-weight: 300;
    font-size: 18px;
    margin: 0;
}

.home-our-services .bottom-section {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.home-our-services .bottom-section .item-card {
    border-right: 1px solid rgba(255, 255, 255, 0.157);
    padding: 1rem;
    padding-left: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.home-our-services .bottom-section .item-card img {
    width: 10px;
    height: 40px;
}

.home-our-services .bottom-section .item-card:last-child {
    border-right: none;
}

.home-our-services .bottom-section .item-card h1 {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    font-family: '"DM Sans", sans-serif';
}

.home-our-services .bottom-section .item-card p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    font-family: '"DM Sans, sans-serif';
}

@media screen and (max-width: 992px) {
    .home-our-services .top-section {
        gap: 0;
        grid-template-columns: 1fr;
    }

    .home-our-services .top-section h2 {
        font-size: 36px;
    }

    .home-our-services .top-section p {
        font-size: 16px;
        margin-top: 12px;
    }

    .home-our-services .bottom-section {
        margin-top: 2rem;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 1rem;
    }

    .home-our-services .bottom-section .item-card:nth-child(2) {
        border-right: none;
    }

    .home-our-services .bottom-section .item-card h1 {
        font-size: 40px;
    }

    .home-our-services .bottom-section .item-card p {
        font-size: 17px;
    }
}

@media screen and (max-width: 576px) {
    .home-our-services {
        padding: 0 1rem;
    }

    .home-our-services .top-section h2 {
        font-size: 30px;
    }

    .home-our-services .top-section p {
        font-size: 13px;
        margin-top: 10px;
    }

    .home-our-services .bottom-section {
        margin-top: 1.5rem;
        grid-template-columns: 1fr;
    }

    .home-our-services .bottom-section .item-card {
        border-bottom: 1px solid #4b4b4b;
        border-right: none;
    }

    .home-our-services .bottom-section .item-card h1 {
        font-size: 36px;
    }

    .home-our-services .bottom-section .item-card p {
        font-size: 14px;
    }
}

/*---------------------------------------
      HOME: ABOUT-US          
  -----------------------------------------*/
.home-about-us {
    padding: 6rem 0;
    overflow-x: hidden;
  background-color: #ffffff;
}

.home-about-us .items-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
}

.home-about-us .items-wrapper .image-container {
    position: relative;
    left: 10%;
    width: fit-content;
}

.home-about-us .items-wrapper .image-container img {
    height: 500px;
    animation: floatImage 3s ease-in-out infinite;
    width: 100%;
}

.home-about-us .items-wrapper .image-container .text-card {
    position: absolute;
    right: 0;
    /* bottom: -2rem; */
    font-weight: 400;
    font-size: 32px;
    color: #ffffff;
    line-height: 38px;
    background-color: #de2427be;
    border-radius: 20px;
    padding: 5rem 1.5rem;
    animation: slideTextCard 4s ease-in-out infinite;
}

.home-about-us .items-wrapper .image-container .text-card span {
    font-weight: 700;
}

.home-about-us .items-wrapper .texts-wrapper {
    display: flex;
    flex-direction: column;
}

.home-about-us .items-wrapper h1 {
    font-weight: 700;
    font-size: 46px;
  color: #03221b;
}

.home-about-us .items-wrapper p {
    margin-top: 1rem;
    font-size: 15px;
    max-width: 500px;
    color: #727272;
}

.home-about-us .items-wrapper .cards-wrapper {
    display: flex;
    justify-content: start !important;
    align-items: start !important;
    flex-wrap: wrap;
    gap: 5px;
    overflow: hidden;
    width: 70%;
}

.home-about-us .items-wrapper .cards-wrapper .item-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    overflow: hidden;
}

.home-about-us .items-wrapper .cards-wrapper .item-card .icon-box {
    padding: 40px 40px 40px 10px;
    display: flex !important;
    align-items: center !important;
    justify-content: start !important;
    background-color: #fff;
    width: 250px;
    border-radius: 10px;
    border: 1px solid rgba(3, 34, 27, 0.1);
    overflow: hidden;
}

.home-about-us .items-wrapper .cards-wrapper .item-card .icon-box img {
    height: 60px;
    width: 60px;
}

.home-about-us .items-wrapper .cards-wrapper .item-card p {
    font-weight: 400;
    font-size: 14px;
    color: #000;
    text-align: center;
    margin: 0;
    padding: 0;
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slideTextCard {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-20px);
    }

    100% {
        transform: translateX(0);
    }
}

@media screen and (max-width: 992px) {
    .home-about-us .items-wrapper {
        grid-template-columns: 1fr;
    }

    .home-about-us .items-wrapper .image-container .text-card {
        font-size: 26px;
        line-height: 30px;
        border-radius: 14px;
        padding: 0.875rem 1rem;
    }

    .home-about-us .items-wrapper h1 {
        font-size: 36px;
    }

    .home-about-us .items-wrapper p {
        font-size: 14px;
    }

    .home-about-us .items-wrapper .cards-wrapper {
        margin-top: 2rem;
    }

    .home-about-us .items-wrapper .cards-wrapper .item-card .icon-box {
        /* width: 86px;
        height: 76px; */
        border-radius: 8px;
    }

    .home-about-us .items-wrapper .cards-wrapper .item-card .icon-box img {
        height: 45px;
        width: 45px;
    }

    .home-about-us .items-wrapper .cards-wrapper .item-card p {
        font-size: 16px;
        margin-top: 6px;
    }
}

@media screen and (max-width: 576px) {
    .home-about-us {
        padding: 5rem 1rem;
    }

    .home-about-us .items-wrapper .image-container img {
        height: auto;
        width: 100%;
        max-width: 350px;
    }

    .home-about-us .items-wrapper .image-container .text-card {
        font-size: 22px;
        line-height: 26px;
    }

    .home-about-us .items-wrapper h1 {
        font-size: 30px;
    }

    .home-about-us .items-wrapper p {
        margin-top: 0.5rem;
        font-size: 13px;
    }

    .home-about-us .items-wrapper .cards-wrapper {
        padding: 0px;
        margin-top: 1.5rem;
        display: flex;
        align-items: start;
        justify-content: start;
        gap: 10px;
    }

    .home-about-us .items-wrapper .cards-wrapper .item-card .icon-box {
        /* width: 80px;
        height: 70px; */
        min-height: 70px;
    }

    .home-about-us .items-wrapper .cards-wrapper .item-card .icon-box img {
        height: 40px;
        width: 40px;
    }

    .home-about-us .items-wrapper .cards-wrapper .item-card p {
        font-size: 15px;
    }
}

/*---------------------------------------
       COUNTS-SECTION          
  -----------------------------------------*/
.counts-section {
    overflow-x: hidden;
    overflow-y: hidden;
}

.counts-section .count-items-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.counts-section .count-item {
    position: relative;
    width: fit-content;
}

.counts-section .count-item h1 {
    font-weight: 700;
    font-size: 100px;
    color: #ffffff1a;
}

.counts-section .count-item p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    white-space: nowrap;
}

@media screen and (max-width: 992px) {
    .counts-section .count-items-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .counts-section .count-item {
        text-align: center;
        width: 100%;
    }

    .counts-section .count-item h1 {
        font-size: 85px;
    }

    .counts-section .count-item p {
        font-size: 16px;
    }
}

@media screen and (max-width: 576px) {
    .counts-section {
        padding: 0 1rem;
    }

    .counts-section .count-items-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .counts-section .count-item h1 {
        font-size: 75px;
    }

    .counts-section .count-item p {
        font-size: 14px;
    }
}

/*---------------------------------------
       Home: SERVICE-WE-PROVIDE       
  -----------------------------------------*/
.about-us-mission {
    padding-top: 4rem;
    padding-bottom: 5rem;
    overflow-x: hidden !important;
  background-color: #fcf7f9;
  /* padding-left: 8rem;
  padding-right: 8rem; */
}

.about-us-mission h1 {
    font-weight: 700;
    font-size: 50px;
  color: #a8113e;
}

.service-headings {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.about-us-mission .cards-wrapper {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;

    /* display: grid;
    grid-template-columns: repeat(3, 1fr); */
    gap: 2.5rem;
}

.about-us-mission .cards-wrapper .item-card {
  max-width: 370px;
  width: 100%;
    background-color: #ffff;
    border-radius: 24px;
  border-bottom: 6px solid #a8113e;
    display: flex;
    flex-wrap: wrap;
}

.item-card-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order-image {
    margin-left: 10px;
}

.service-heading {
    padding: 30px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.about-us-mission .cards-wrapper .item-card h1 {
    left: 1rem;
    bottom: 1rem;
    padding: 0;
    margin: 0;
    font-weight: 300;
    font-size: 22px;
    line-height: 24px;
  color: #a8113e;
    transition: all 0.2s ease;
    z-index: 1;
}

.about-us-mission .cards-wrapper .item-card span {
    color: #868686;
    font-size: 12px;
    font-weight: 400;
}

.about-us-mission .cards-wrapper .item-card p {
    bottom: 15px;
    padding: 0;
    margin: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    transition: all 0.2s ease;
    z-index: 1;
  color: #a8113e;
}

.about-us-mission .cards-wrapper .item-card:hover p {
    color: #161616;
}

.about-us-mission .view-service-btn .gif {
    width: 28px;
}

@media screen and (max-width: 991px) {
  .hisotry_cards_wrapper {
    flex-direction: column;
    padding: 0 0.5rem;
  }
}

@media screen and (max-width: 992px) {
    .service-we-provide h1 {
        font-size: 36px;
    }

    .service-we-provide .cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .service-we-provide .cards-wrapper .item-card p {
        font-size: 18px;
        line-height: 22px;
    }

    .service-we-provide .view-service-btn {
        font-size: 14px;
        padding: 7px 1.5rem;
    }

    .service-we-provide .view-service-btn .gif {
        width: 24px;
    }
}

@media screen and (max-width: 576px) {
    .service-we-provide {
        padding: 4rem 1rem;
    }

    .service-we-provide h1 {
        font-size: 30px;
    }

    .service-we-provide .cards-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-we-provide .cards-wrapper .item-card p {
        font-size: 16px;
        line-height: 20px;
    }

    .service-we-provide .view-service-btn {
        font-size: 12px;
        margin-top: 2rem;
        padding: 7px 1.25rem;
    }

    .service-we-provide .view-service-btn .gif {
        width: 22px;
    }
}

.insight-services {
    padding-top: 4rem;
    padding-bottom: 5rem;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
  background-color: #fcf7f9;
    padding-left: 8rem;
    padding-right: 8rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.insight-services .container {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* .insight-services h1 {
    font-weight: 700;
    font-size: 50px;
    color: #A8113E;
} */

.insight-headings {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.section-heads {
    font-weight: 600;
    font-size: 48px;
    color: #171921;
    width: fit-content;
    font-family: "DM Sans", sans-serif;
}

.section-desc {
    font-weight: 400;
    font-size: 16px;
    color: #727272;
    font-family: "DM Sans", sans-serif;
    text-align: center;
}

.insight-cards {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
  justify-items: stretch;
    padding: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

/* Hide scrollbars for WebKit browsers in insight-cards */
.insight-cards::-webkit-scrollbar,
.insight-services::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.insight-card {
    width: 100%;
  max-width: 100%;
    display: flex;
  align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    border-radius: 24px;
    gap: 10px;
    box-sizing: border-box;
  height: 100%;
  min-height: 100%;
    overflow: hidden;
}

.insight-card-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.insight-icon {
    border-radius: 24px;
    width: 100%;
    max-width: 100%;
  height: 250px;
  min-height: 250px;
    max-height: 250px;
    object-fit: cover;
    box-sizing: border-box;
  flex-shrink: 0;
}

.insight-card-body {
    padding: 10px;
    padding-left: 0px;
    display: flex;
    align-items: start;
  justify-content: flex-start;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  flex: 1;
}

.insight-card > div {
    overflow: hidden;
}

.insight-cards a {
    overflow: hidden;
  display: flex;
  height: 100%;
  width: 100%;
}

.insight-card h1 {
    left: 0;
    bottom: 0;
    padding: 0;
    margin: 0;
    font-weight: 300;
    font-size: 22px;
    line-height: 24px;
  color: #a8113e;
    transition: all 0.2s ease;
    z-index: 1;
    width: 100%;
    word-wrap: break-word;
  height: 30px;
}

.insight-card span {
    color: #868686;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.insight-card p {
    bottom: 15px;
    padding: 0;
    margin: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    transition: all 0.2s ease;
    z-index: 1;
  color: #a8113e;
}

.insight-card:hover p {
    color: #161616;
}

.insight-view-btn .gif {
    width: 28px;
}

@media screen and (max-width: 992px) {
    .insight-services {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 3rem;
        padding-bottom: 4rem;
    }

    .insight-headings {
        gap: 15px;
    }

    .section-heads {
        font-size: 36px;
    }

    .section-desc {
        font-size: 15px;
    }

    .insight-services h1 {
        font-size: 36px;
    }

    .insight-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0.5rem;
    }

    .insight-card {
        max-width: 100%;
    height: 100%;
    }

    .insight-icon {
    height: 220px;
    min-height: 220px;
        max-height: 220px;
    }

    .insight-card h1 {
        font-size: 20px;
        line-height: 22px;
    }

    .insight-card span {
        font-size: 11px;
    }

    .insight-card p {
        font-size: 18px;
        line-height: 22px;
    }

    .insight-view-btn {
        font-size: 14px;
        padding: 7px 1.5rem;
    }

    .insight-view-btn .gif {
        width: 24px;
    }
}

@media screen and (max-width: 768px) {
    .insight-services {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-top: 2.5rem;
        padding-bottom: 3rem;
    }

    .insight-headings {
        gap: 12px;
    }

    .section-heads {
        font-size: 28px;
        text-align: center;
    }

    .section-desc {
        font-size: 14px;
    }

    .insight-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
        padding: 0;
    }

    .insight-icon {
    height: 180px;
    min-height: 180px;
        max-height: 180px;
    }
}

@media screen and (max-width: 576px) {
    .insight-services {
        padding: 2rem 1rem;
        padding-top: 2.5rem;
        padding-bottom: 3rem;
    }

    .insight-headings {
        gap: 10px;
    }

    .section-heads {
        font-size: 24px;
    }

    .section-desc {
        font-size: 13px;
    }

    .insight-services h1 {
        font-size: 30px;
    }

    .insight-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
        padding: 0;
    }

    .insight-card {
        max-width: 100%;
    height: 100%;
    }

    .insight-icon {
    height: 200px;
    min-height: 200px;
        max-height: 200px;
    }

    .insight-card h1 {
        font-size: 18px;
        line-height: 20px;
    }

    .insight-card span {
        font-size: 12px;
        line-height: 1.4;
    }

    .insight-card p {
        font-size: 16px;
        line-height: 20px;
    }

    .insight-view-btn {
        font-size: 12px;
        margin-top: 2rem;
        padding: 7px 1.25rem;
    }

    .insight-view-btn .gif {
        width: 22px;
    }
}

@media screen and (max-width: 480px) {
    .insight-services {
        padding: 1.5rem 0.75rem;
    }

    .section-heads {
        font-size: 20px;
    }

    .section-desc {
        font-size: 12px;
    }

    .insight-cards {
        gap: 1.25rem;
    }

    .insight-icon {
    height: 180px;
    min-height: 180px;
        max-height: 180px;
    }
}

.people-at-jsr {
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
}

.people-container {
    padding: 40px 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.people-header {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.people-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.people-title .subtitle {
  color: #a8113e;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 500;
    margin: 0;
    overflow: hidden;
}

.people-title .title {
  color: #a8113e;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    margin-top: 10px;
    overflow: hidden;
}

.view-all {
    flex-shrink: 0;
}

.view-all-btn {
    padding: 10px 24px;
  background-color: #a8113e;
    color: #fff;
    border-radius: 30px;
    font-size: clamp(12px, 1.8vw, 14px);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.team-members {
    display: flex;
    justify-content: start;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
}

.team-member {
    text-align: center;
    max-width: 280px;
    flex: 1 1 250px;
}

.team-member .image-box {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.team-member .image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.team-member .info-box {
    background: #fff;
    padding: 15px;
    margin-top: -30px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    width: 90%;
    margin: -30px auto 0;
    overflow: hidden;
}

.team-member .info-box h3 {
    margin: 0;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 600;
  color: #a8113e;
    overflow: hidden;
}

.team-member .info-box p {
    margin: 5px 0 0;
    font-size: clamp(12px, 1.5vw, 14px);
    color: #555;
}

.team-member .info-box p.uppercase {
    text-transform: uppercase;
}

/*---------------------------------------
       Home: Testimonials       
  -----------------------------------------*/

/* Section base */
.testimonial-section {
  background-color: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background decorative images */
.bg-scale {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    max-width: 15vw;
}

.bg-court {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    max-width: 20vw;
}

/* Heading */
.testimonial-heading {
    margin-bottom: 40px;
    padding: 0 10px;
}

.testimonial-heading p {
    color: #c2185b;
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 500;
    margin: 0;
}

.testimonial-heading h2 {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 700;
    margin: 10px 0;
    color: #1a1a1a;
}

/* Avatars */
/* Base Layout */
.testimonial-section {
    padding: 50px 15px;
}

.testimonial-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    height: auto;
    height: 100px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.avatar.active {
    width: 65px;
    height: 65px; /* fixed from 6px bug */
    transform: scale(1.2);
    border: 3px solid #c2185b !important;
}

.avatar:hover {
    transform: scale(1.1);
}

/* Content */
.testimonial-content {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

.testimonial-content h3 {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 600;
    margin: 10px 0;
    color: #1a1a1a;
}

.testimonial-content p#testimonial-role {
    font-size: clamp(12px, 2vw, 14px);
    color: #666;
    margin: 0 0 15px;
}

/* Navigation + text */
.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
    width: 100%;
    margin: 20px 0;
}

.testimonial-nav button {
    background: #c2185b;
    border: none;
    color: #fff;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    flex-shrink: 0;
}

.testimonial-nav p {
    flex: 1;
    min-width: 250px;
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.6;
    color: #333;
    margin: 0 0 20px;
    text-align: justify;
}

/* Stars */
.testimonial-stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.testimonial-stars div {
    color: #ffb400;
    font-size: clamp(16px, 3vw, 20px);
}

/* Fade text animation */
.fade {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.fade.show {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE CHANGES --- */
@media (max-width: 560px) {
    .testimonial-nav {
        flex-direction: column;
        gap: 15px;
    }

    /* Move arrows below text and above stars */
    .testimonial-nav p {
        order: 1;
        text-align: center;
        margin: 0 0 15px;
        font-size: clamp(13px, 4vw, 15px);
    }

    .testimonial-nav button {
        order: 2;
        display: inline-flex;
        margin: 0 10px;
        font-size: 14px;
    }

    .testimonial-stars {
        margin-top: 15px;
    }

    .testimonial-content h3 {
        font-size: clamp(16px, 5vw, 20px);
    }

    .testimonial-content p#testimonial-role {
        font-size: clamp(12px, 3.5vw, 14px);
    }
}

.newsletter-section {
    width: 100%;
  background: url("/assets/jpg/newletter-banner.jpg") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    box-sizing: border-box;
}

.newsletter-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
    height: auto;
    align-items: stretch;
}

.newsletter-form {
    flex: 1;
    background: rgba(0, 0, 0, 0.35);
    padding: 20px;
    border-radius: 15px;
    color: #fff;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

.newsletter-form h5 {
    font-size: 18px;
    text-align: center;
}

.newsletter-form h2 {
    margin: 10px 0 20px;
    font-size: 28px;
    text-align: center;
}

.input-box {
    position: relative;
    margin-bottom: 15px;
}

.input-box input,
.input-box textarea {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: none;
    outline: none;
    background: rgba(0, 0, 0, 0);
  border: 1px solid #f5f5f5;
    border-radius: 27px;
  color: #f5f5f5;
}

.input-box input::placeholder,
.input-box textarea::placeholder {
  color: #ffffff;
    opacity: 1;
}

.input-box textarea {
    height: 100px;
    resize: none;
}

.input-box .icon,
.input-box .icons {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.input-box .icons-pen {
    position: absolute;
    right: 15px;
    top: 20%;
    transform: translateY(-50%);
}
.send-btn {
    width: 100%;
    padding: 15px;
    background: #f21b52;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
}

.newsletter-video {
    flex: 1;
    max-width: 800px;
    display: flex;
}

/* Desktop: make video wider than form */
@media (min-width: 991px) {
    .newsletter-form {
        flex: 0 1 44%;
    }

    .newsletter-video {
        flex: 0 1 56%;
    }
}

.video-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.video-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
    display: block;
}

/* ========================= */
/* Responsive Adjustments    */
/* ========================= */
@media (max-width: 990px) {
    .newsletter-container {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 30px;
    }

    .newsletter-form,
    .newsletter-video {
        width: 100%;
        max-width: 600px;
    }

    .newsletter-form h2 {
        font-size: 24px;
    }

    .newsletter-form h5 {
        font-size: 16px;
    }

    /* When stacked, use intrinsic 16:9 height for the video */
    .video-box {
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

/* ========================= */
/* Global Preloader           */
/* ========================= */
#preloader {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #0f0f0f !important;
    transition: opacity 0.5s ease !important;
    margin: 0 !important;
    padding: 0 !important;
}

#preloader.hide {
    opacity: 0 !important;
    pointer-events: none !important;
}

.loader {
    font-size: 48px;
    display: inline-block;
    font-family: "Cinzel", serif;
    font-weight: 500;
  color: #a5002f;
    letter-spacing: 3px;
    position: relative;
    box-sizing: border-box;
}

.loader::after {
  content: "J S R";
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
  text-shadow: 0 0 2px #fff, 0 0 1px #fff, 0 0 1px #fff;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
    animation: animloader 3s linear infinite;
}

@keyframes animloader {
    0% {
        height: 100%;
    }
    100% {
        height: 0%;
    }
}

/* Responsive loader */
@media (max-width: 768px) {
    .loader {
        font-size: 36px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .loader {
        font-size: 28px;
        letter-spacing: 1px;
    }
}

@media (max-width: 560px) {
    .newsletter-container {
        padding: 10px;
    }

    .newsletter-form h2 {
        font-size: 20px;
    }

    .newsletter-form h5 {
        font-size: 14px;
    }

    .send-btn {
        font-size: 14px;
        padding: 12px;
    }
}

/*---------------------------------------
       OUR-CLIENTS          
  -----------------------------------------*/
.clients {
    position: relative;
    color: black;
    z-index: 1;
}

.clients::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  background: url("/assets/jpg/abstract.png") center/contain no-repeat;
    opacity: 0.1;
    /* only background opacity */
    z-index: -1;
}

.clients-heading {
    color: black;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.client-slider {
  width: 90%;
    overflow: hidden;
    position: relative;
}

.client-track {
    display: flex;
    width: calc(200%);
    /* since we duplicate logos */
    animation: scroll 20s linear infinite;
}

.client-track img {
    height: 80px;
    margin: 0 40px;
    flex-shrink: 0;
  width: auto;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.our-clients {
    background-color: #0f0f0f;
    padding: 4rem 0;
    overflow-x: hidden;
}

.our-clients h1 {
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 2rem;
    color: #ffffff;
}

.our-clients .slider {
    overflow: hidden;
    position: relative;
}

.our-clients .slider .list {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll 20s linear infinite;
    width: fit-content;
}

.client-logo {
    width: 120px;
    height: 80px;
}

.client-logo.small {
    width: 100px;
    height: 80px;
}

.penta-logo {
    margin-bottom: 2px;
}

.client-logo.x-small {
    width: 80px;
    height: 80px;
}

.client-logos {
    width: 150px;
    height: 80px;
}

.our-clients .slider .item {
    flex: 0 0 auto;
    height: 90px;
}

/* Hover pause */
.our-clients .slider:hover .list {
    animation-play-state: paused;
}

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

    100% {
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 576px) {
    .our-clients {
        padding: 4rem 1rem;
    }

    .our-clients h1 {
        font-size: 26px;
    }

    .our-clients .slider .list {
        gap: 60px;
    }

    .our-clients .slider .item {
        height: 80px;
    }
}

/*---------------------------------------
       STAY-CONNECTED          
  -----------------------------------------*/
.stay-connected {
    background-color: #1b1b1b;
    background: url("/assets/png/stay-connected-bg.png") no-repeat center center;
    background-size: cover;
    border-bottom: 1px solid #252525;
    overflow-x: hidden;
}

.stay-connected .items-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.stay-connected .items-wrapper h1 {
    font-size: 42px;
    color: #ffffff;
    font-weight: 400;
}

.stay-connected .items-wrapper p {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    margin: 0;
    padding: 0;
    margin-top: 10rem;
}

.stay-connected .inputs-container {
    margin-top: auto;
    margin-left: auto;
    width: 100%;
    max-width: 500px;
}

.stay-connected .input {
    width: 100%;
    padding: 10px 0;
    background-color: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid #ffffff;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    -webkit-text-fill-color: #fff !important;
    background-color: transparent !important;
    color: #fff !important;
    transition: background-color 9999s ease-out !important;
}

.stay-connected .input::placeholder {
    color: #ffffff80;
}

.stay-connected .email-input-wrapper {
    position: relative;
    margin-top: 1.3rem;
}

.stay-connected .email-input-wrapper .arrow {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    right: 0;
    cursor: pointer;
}

.stay-connected .input.email {
    padding-right: 2rem;
}

@media screen and (max-width: 768px) {
    .stay-connected .items-wrapper {
        grid-template-columns: 1fr;
    }

    .stay-connected .items-wrapper h1 {
        font-size: 36px;
    }

    .stay-connected .items-wrapper p {
        font-size: 14px;
        margin-top: 1rem;
    }

    .stay-connected .inputs-container {
        margin-top: 2rem;
        margin-left: 0;
    }

    .stay-connected .input {
        font-size: 14px;
    }
}

@media screen and (max-width: 576px) {
    .stay-connected {
        padding: 0 1rem;
    }

    .stay-connected .items-wrapper h1 {
        font-size: 30px;
    }

    .stay-connected .items-wrapper p {
        font-size: 12px;
        margin-top: 0.5rem;
    }

    .stay-connected .input {
        font-size: 12px;
    }
}

.owl-carousel .owl-stage {
    transition-timing-function: linear !important;
}

/*---------------------------------------
       FOOTER         
  -----------------------------------------*/

/* Footer Base */
.footer {
    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0px 0px;
    gap: 60px;
    isolation: isolate;
    
    /* Responsive width instead of fixed 1920px */
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    min-height: 689px;
    
    /* Background */
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    color: #fff;
    
    /* Inside auto layout */
    flex: none;
    order: 9;
    flex-grow: 0;
}

/* Footer Logo Section */
.footer-logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.footer-brand {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 15px;
    transform: translateY(-20px);
}
.footer-newsletter {
    display: flex;
    align-items: center;
}
.footer-brand img {
    width: 220px;
    height: 100px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.brand-name {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}

.brand-subtitle {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 1;
}

/* Contact Info Row */
.footer-contact-row {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 60px;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
    margin: 0;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 280px;
    text-align: left;
}

.contact-icon {
  background-color: #dd1853;
    border-radius: 50%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    min-height: 50px;
}

.contact-icon img {
    width: 40px;
    height: 40px;
}

.contact-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #fff;
}

.contact-content span {
    font-size: 14px;
    color: #ccc;
    line-height: 1.4;
    display: block;
}
.contact-content span.address_text {
  max-width: 200px;
}

/* Footer Main Content */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: 40px;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 1200px;
    padding-left: 40px;
    padding-right: 40px;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

.footer-column p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #de2428;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
  background-color: #dd1853;
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: background-color 0.3s ease;
}

.footer-social a:hover {
    background-color: #b81e21;
}

.footer-social img {
    width: 40px;
    height: 40px;
    /* filter: brightness(0) invert(1); */
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 0;
}

.email-input {
    flex: 1;
  width: 100%;
    padding: 12px 15px;
    background-color: #010101;
    color: #fff;
    font-size: 14px;
    border-radius: 10px 0 0 10px;
    outline: none;
  border: 1px solid #ffffff25;
}

.email-input::placeholder {
    color: #727272;
}

.subscribe-btn {
  background-color: #dd1853;
    color: #fff;
    border: none;
    padding: 12px 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
  min-width: fit-content;
}

.subscribe-btn:hover {
    background-color: #b81e21;
}

.subscribe-container input {
  border-left: 1px solid #ffffff25;
  border-top: 1px solid #ffffff25;
  border-bottom: 1px solid #ffffff25;
    background-color: #010101;
    padding: 10px;
    border-start-start-radius: 10px;
    border-end-start-radius: 10px;
    border-inline-end-width: 0px;
}

.subscribe-container button {
    padding: 10px;
    border: none;
    outline: none;
  background-color: #dd1853;
    border-end-end-radius: 10px;
    border-start-end-radius: 10px;
}

/* Footer Copyright */
.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0;
}

.footer-copyright span {
    font-size: 14px;
    color: #999;
}
.footer-sponsor {
    width: 400px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}
.footer-sponsor img {
    width: 100px;
    height: 50px;
    margin-bottom: 3px;
}

.footer-links-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links-bottom a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-links-bottom span {
    color: #666;
}

/* Enhanced Responsive Styles */
@media (max-width: 1200px) {
    .footer {
        padding: 80px 0px 0px;
        gap: 50px;
        min-height: 600px;
    }

    .footer-contact-row {
        gap: 40px;
        padding-bottom: 30px;
    }

    .footer-main {
        padding-left: 30px;
        padding-right: 30px;
        gap: 40px;
    }

    .contact-item {
        max-width: 250px;
    }
}

@media (max-width: 1024px) {
    .footer {
        padding: 60px 0px 0px;
        gap: 40px;
        min-height: 500px;
    }

    .footer-contact-row {
        gap: 30px;
        padding-bottom: 25px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-copyright {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-sponsor {
        flex-direction: row;
    }

    .footer-links-bottom {
        flex-direction: row;
    }

    .contact-item {
        max-width: 280px;
    }

    .footer-column h4 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0px 0px;
        gap: 35px;
        min-height: 450px;
    }

    .footer-logo-section {
        padding: 0 20px;
    }

    .footer-brand {
        gap: 12px;
        padding-left: 20px;
    }

    .brand-name {
        font-size: 28px;
    }

    .footer-contact-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        padding: 0 0 20px 20px;
    }

    .contact-item {
        max-width: 320px;
        text-align: start;
        padding-left: 20px;
    }

    .contact-content {
        text-align: start;
    }

  .contact-icon {
    display: none;
  }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-column {
        text-align: start;
    }

    .footer-column ul {
        text-align: start;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .footer-sponsor {
        flex-direction: row;
    }

    .footer-links-bottom {
        flex-direction: row;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 40px 0px 0px;
        gap: 30px;
        min-height: 400px;
    }

    .footer-logo-section {
        padding: 0 15px;
    }

    .footer-brand {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        transform: none;
        padding-left: 20px;

    }

    .brand-text {
        align-items: center;
        text-align: center;
    }

    .brand-name {
        font-size: 26px;
    }

    .brand-subtitle {
        font-size: 14px;
    }

    .footer-contact-row {
        gap: 20px;
        padding-bottom: 15px;
    }

    .contact-icon {
        min-width: 45px;
        min-height: 45px;
        padding: 10px;
    }

    .contact-content h4 {
        font-size: 16px;
    }

    .contact-content span {
        font-size: 13px;
    }

    .footer-main {
        padding-left: 20px;
        padding-right: 20px;
        gap: 25px;
    }

    .footer-column h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }

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

    .footer-copyright {
        padding: 15px;
    }

    .footer-sponsor {
        flex-direction: row;
    }

    .footer-links-bottom {
        flex-direction: row;
    }

    .footer-copyright span,
    .footer-links-bottom a {
        font-size: 12px;
    }
}

    .newsletter-video-service {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .video-box-service {
        /* position: relative; */
        width: 100%;
        /* max-width: 1200px;        */
        /* aspect-ratio: 2 / 1;      */
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .video-box-service video {
        /* position: absolute; */
        /* top: 0; */
        /* left: 0; */
        width: 100%;
        height: 100%;
        object-fit: cover;
        border: none;
        display: block;
    }

/* Tablet */
@media (max-width: 1024px) {
    .newsletter-container {
        padding: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .newsletter-container {
        padding: 20px;
    }

    .video-box-service {
        aspect-ratio: 16 / 9;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .newsletter-section-service {
        padding: 20px 0;
    }
}

/*---------------------------------------
       Services              
  -----------------------------------------*/
.service-we-provide {
    padding-top: 4rem;
    padding-bottom: 5rem;
    overflow-x: hidden !important;
  background-color: #fcf7f9;
    padding-left: 8rem;
    padding-right: 8rem;
}

.services {
    padding-top: 5rem;
    padding-bottom: 7rem;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.service-cards-wrapper {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.services .service-card {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 2rem;
  border-bottom: 1px solid #ededed;
    padding: 2rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.services .service-card:last-child {
    border-bottom: none;
}

.services .service-card .first-section {
    width: 100%;
    max-width: 350px;
    height: auto;
    min-height: auto;
    max-height: none;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.services .service-card .first-section img {
    width: 100%;
    height: auto;
    min-height: 250px;
    max-height: 350px;
    object-fit: cover;
    border-start-start-radius: 20px;
    border-start-end-radius: 20px;
    box-sizing: border-box;
}

.services .service-card .second-section {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.services .service-card .second-section h2 {
    font-weight: 700;
    font-size: 40px;
  color: #03221b;
    margin: 0;
    padding: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
}

.services .service-card .second-section p {
    font-weight: 400;
    font-size: 14px;
    color: #727272;
    margin: 0;
    padding: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
}

.services .service-card .second-section .explore-service-btn {
    margin-top: 8px;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    background-color: #000000;
    border-radius: 10px;
    padding: 10px 20px;
}

@media screen and (max-width: 992px) {
    .services {
        padding: 4rem 2rem;
        padding-bottom: 5rem;
    }

    .team-members-heading {
        padding-bottom: 25px;
    }

    .team-members-heading h3 {
        font-size: 36px;
    }

    .team-members-heading p {
        font-size: 18px;
    }

    .services .service-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .services .service-card.even {
        display: flex;
        flex-direction: column-reverse;
    }

    .services .service-card .first-section {
        max-width: 100%;
        width: 100%;
    }

    .services .service-card .first-section img {
        max-height: 300px;
        min-height: 250px;
    }

    .services .service-card .second-section {
        padding: 15px;
        width: 100%;
    }

    .services .service-card .second-section h2 {
        font-size: 28px;
    }

    .services .service-card .second-section p {
        font-size: 13px;
        line-height: 1.5;
    }

    .first-section .info-box {
        width: 85%;
    }

    .first-section .info-box h3 {
        font-size: 18px;
    }

    .first-section .info-box p {
        font-size: 13px;
    }

    .services .service-card .second-section .explore-service-btn {
        margin-top: 6px;
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .services {
        padding: 3rem 1.5rem;
        padding-bottom: 4rem;
    }

    .team-members-heading {
        padding-bottom: 20px;
    }

    .team-members-heading h3 {
        font-size: 32px;
    }

    .team-members-heading p {
        font-size: 16px;
    }

    .services .service-card {
        gap: 1.25rem;
        padding: 1.25rem 0;
    }

    .services .service-card .first-section img {
        max-height: 280px;
        min-height: 220px;
    }

    .services .service-card .second-section {
        padding: 12px;
    }

    .services .service-card .second-section h2 {
        font-size: 24px;
    }

    .services .service-card .second-section p {
        font-size: 12px;
    }

    .first-section .info-box {
        width: 80%;
        padding: 8px;
    }

    .first-section .info-box h3 {
        font-size: 16px;
    }

    .first-section .info-box p {
        font-size: 12px;
    }
}

@media screen and (max-width: 576px) {
    .services {
        padding: 2.5rem 1rem;
        padding-bottom: 3rem;
    }

    .team-members-heading {
        padding-bottom: 15px;
    }

    .team-members-heading h3 {
        font-size: 28px;
    }

    .team-members-heading p {
        font-size: 14px;
    }

    .services .service-card {
        gap: 1rem;
        padding: 1rem 0;
    }

    .services .service-card .first-section {
        max-width: 100%;
    }

    .services .service-card .first-section img {
        max-height: 250px;
        min-height: 200px;
    }

    .services .service-card .second-section {
        padding: 10px;
    }

    .services .service-card .second-section h2 {
        font-size: 20px;
        line-height: 1.3;
    }

    .services .service-card .second-section p {
        font-size: 12px;
        line-height: 1.5;
    }

    .first-section .info-box {
        width: 85%;
        padding: 8px;
        margin-top: -25px;
        margin: -25px auto 0;
    }

    .first-section .info-box h3 {
        font-size: 15px;
    }

    .first-section .info-box p {
        font-size: 11px;
    }

    .services .service-card .second-section .explore-service-btn {
        margin-top: 4px;
        font-size: 12px;
        padding: 8px 16px;
    }
}

@media screen and (max-width: 480px) {
    .services {
        padding: 2rem 0.75rem;
        padding-bottom: 2.5rem;
    }

    .team-members-heading h3 {
        font-size: 24px;
    }

    .team-members-heading p {
        font-size: 13px;
    }

    .services .service-card .second-section h2 {
        font-size: 18px;
    }

    .services .service-card .second-section p {
        font-size: 11px;
    }

    .services .service-card .first-section img {
        max-height: 220px;
        min-height: 180px;
    }
}

/*---------------------------------------
       Services Details             
  -----------------------------------------*/
.services-details {
    padding-top: 5rem;
    padding-bottom: 1rem;
    overflow-x: hidden;
}

.services-details .service-detils-wrapper .image-container {
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 450px;
}

.services-details .service-detils-wrapper .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-details .service-detils-wrapper h2 {
    margin-top: 2rem;
    font-weight: 700;
    font-size: 34px;
    color: #ffffff;
}

.services-details .service-detils-wrapper p {
    margin-top: 1.25rem;
    font-weight: 400;
    font-size: 15px;
    color: #a19d9d;
    transition: all 0.3s ease;
}

.services-details .service-detils-wrapper span {
    margin-top: 1.25rem;
    font-weight: 400;
    font-size: 15px;
    color: #a19d9d;
    transition: all 0.3s ease;
}

.contact-span {
    margin-top: 1.25rem;
    font-weight: 400;
    font-size: 15px;
    color: #a19d9d;
    transition: all 0.3s ease;
}

@media screen and (max-width: 992px) {
    .services-details .service-detils-wrapper h2 {
        font-size: 30px;
    }

    .services-details .service-detils-wrapper p {
        font-size: 14px;
    }

    .services-details .service-detils-wrapper span {
        font-size: 14px;
    }

    .contact-span {
        font-size: 14px;
    }
}

@media screen and (max-width: 576px) {
    .services-details {
        padding-top: 5rem;
        padding: 1rem;
    }

    .services-details .service-detils-wrapper h2 {
        font-size: 27px;
    }

    .services-details .service-detils-wrapper p {
        font-size: 12px;
    }

    .services-details .service-detils-wrapper span {
        font-size: 14px;
    }

    .contact-span {
        font-size: 14px;
    }
}

/*---------------------------------------
       About us             
  -----------------------------------------*/

.about-us {
    padding-top: 5rem;
    overflow-x: hidden;
}

.about-us .detils-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2rem;
}

.about-us .detils-container h1 {
    font-weight: 700;
    font-size: 50px;
    color: #ffffff;
}

.about-us .detils-container p {
    font-weight: 500;
    font-size: 17px;
    color: #4b4b4b;
    max-width: 400px;
}

.about-us .detils-container .image-container {
    width: 100%;
    height: auto;
}

.about-us .detils-container .image-container img {
    width: 100%;
}

@media screen and (max-width: 992px) {
    .about-us .detils-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-us .detils-container h1 {
        font-size: 42px;
    }

    .about-us .detils-container p {
        font-size: 16px;
        max-width: 500px;
    }
}

@media screen and (max-width: 576px) {
    .about-us {
        padding: 1rem;
        padding-top: 4rem;
    }

    .about-us .detils-container h1 {
        font-size: 32px;
    }

    .about-us .detils-container p {
        font-size: 14px;
    }
}

/*---------------------------------------
       CONTACTS         
  -----------------------------------------*/
.contact-details {
    overflow-x: hidden;
}

.contact-details .details-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-details .details-container .detail-card {
    flex: 1;
    min-width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-details .details-container .detail-card img {
    width: 40px;
    height: 40px;
}

.contact-details .details-container .detail-card h2 {
    margin-top: 12px;
    font-weight: 700;
    font-size: 28px;
    color: #ffffff;
}

.contact-details .details-container .detail-card p {
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    margin: 0;
    margin-top: 8px;
}

.contact-details .details-container .detail-card p a {
    color: inherit;
    text-decoration: underline;
}

.map-section {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    overflow: hidden;
}

/* Hide scrollbars for map-section */
.map-section,
.map-section * {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.map-section::-webkit-scrollbar,
.map-section *::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.contact-us {
    padding-top: 5rem;
    padding-bottom: 8rem;
}

.contact-us .container {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 4rem;
}

.contact-us .left h1 {
    font-weight: 700;
    font-size: 48px;
    color: #ffffff;
}

.contact-us .left p {
    font-weight: 500;
    font-size: 17px;
    color: #4b4b4b;
    max-width: 400px;
}

.contact-us .left .address-text {
    margin-top: 12px;
    font-weight: 500;
    font-size: 18px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-us .left .address-text img {
    width: 20px;
}

.contact-us .left .address-text a {
    color: inherit;
    text-decoration: underline;
}

.contact-us .left .address-text.phone {
    font-size: 20px;
}

.contact-us .right form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-us .right .inputs-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-us .right .input-wrapper {
    width: 100%;
    position: relative;
}

.contact-us .right .input-wrapper .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 2px;
    width: 25px;
    height: 25px;
}

.contact-us .right .input-wrapper .text-area-icon {
    position: absolute;
    top: 8px;
    left: 2px;
    width: 25px;
    height: 25px;
}

.contact-us .right .input-wrapper .input {
    width: 100%;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    border: none;
    outline: none;
    border-bottom: 1px solid #a9a9a9;
    background-color: transparent;
    padding: 10px 0;
    padding-left: 2.5rem;
    resize: none;
}

.contact-us .right .input-wrapper .input::placeholder {
    color: #a9a9a9;
}

.contact-us .right .input-wrapper .input:focus {
    border-color: #ffffff;
}

.contact-us .right .submit-btn {
    font-weight: 400;
    font-size: 18px;
    color: #ffffff;
    background-color: #000000;
    border-radius: 14px;
    width: fit-content;
    padding: 10px 2.5rem;
    border: none;
    transition: all 0.3s ease-in;
}

.contact-us .right .submit-btn:hover {
    color: #de2428;
}

@media screen and (max-width: 992px) {
    .contact-details .details-container {
        justify-content: center;
    }

    .contact-details .details-container .detail-card img {
        width: 35px;
        height: 35px;
    }

    .contact-details .details-container .detail-card h2 {
        margin-top: 12px;
        font-size: 24px;
    }

    .contact-details .details-container .detail-card p {
        font-size: 14px;
    }

    .map-section {
        height: 450px;
    }

    .contact-us .container {
        grid-template-columns: 1fr;
    }

    .contact-us .left h1 {
        font-size: 42px;
    }

    .contact-us .left p {
        font-size: 15px;
    }

    .contact-us .left .address-text {
        font-size: 16px;
    }

    .contact-us .left .address-text img {
        width: 17px;
    }

    .contact-us .left .address-text.phone {
        font-size: 18px;
    }

    .contact-us .right .input-wrapper .icon {
        width: 20px;
        height: 20px;
    }

    .contact-us .right .input-wrapper .text-area-icon {
        width: 22px;
        height: 22px;
    }

    .contact-us .right .input-wrapper .input {
        font-size: 14px;
    }

    .contact-us .right .submit-btn {
        font-size: 17px;
        border-radius: 12px;
    }
}

@media screen and (max-width: 576px) {
    .contact-details {
        padding: 0 1rem;
    }

    .contact-details .details-container .detail-card img {
        width: 30px;
        height: 30px;
    }

    .contact-details .details-container .detail-card h2 {
        margin-top: 10px;
        font-size: 22px;
    }

    .contact-details .details-container .detail-card p {
        font-size: 13px;
        margin-top: 5px;
    }

    .map-section {
        height: 400px;
    }

    .contact-us {
        padding: 3rem 1rem 6rem 1rem;
    }

    .contact-us .left h1 {
        font-size: 30px;
    }

    .contact-us .left p {
        font-size: 14px;
    }

    .contact-us .left .address-text {
        font-size: 14px;
    }

    .contact-us .left .address-text img {
        width: 15px;
    }

    .contact-us .left .address-text.phone {
        font-size: 16px;
    }

    .contact-us .right .inputs-container {
        grid-template-columns: 1fr;
    }

    .contact-us .right .submit-btn {
        font-size: 16px;
    }
}

/* ///////////extra */

.services-section {
    padding: 3rem 6rem;
    background: #fff;
    font-family: Arial, sans-serif;
  overflow: visible;
}

/* ----- Main layout: Sidebar + Content ----- */
.services-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
  overflow: visible;
  align-items: start;
}

.services-content {
  overflow: hidden !important;
  max-height: none !important;
  height: auto !important;
  min-height: auto !important;
}

.services-sidebar h3 {
    color: #a3003b;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.service-list li {
    padding: 12px 15px;
    border: 1px solid #ddd;
    margin-bottom: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-list li .arrow {
  margin-left: auto;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.service-list li.active {
    background: #a3003b;
    color: #fff;
}

.service-image {
    width: 100%;
    margin: 20px 0;
  height: 500px;
    object-fit: cover;
    border-radius: 6px;
}

/* ----- Content Typography ----- */
.services-content h5.subtitle {
    color: #a3003b;
    font-size: 1rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.services-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.services-content p {
    line-height: 1.6;
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
}

.services-content h3 {
    margin-top: 30px;
    font-size: 1.3rem;
    color: #222;
}

/* ----- Benefits ----- */
.benefit-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
    background: #fff;
    font-size: 0.95rem;
}

/* ----- Company Presentation Layout ----- */
.presentation-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    background: #f8f8f8;
}

.presentation-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.presentation-box h2 {
    margin-bottom: 10px;
    color: #a3003b;
    font-size: 1.8rem;
}

.download-btn {
    background: #a3003b;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    margin-top: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1rem;
}

.download-btn:hover {
    background: #85002f;
}

.help-box {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 6px;
    margin-top: 40px;
    border: 1px solid #ddd;
    text-align: center;
}

.help-box h4 {
    margin-bottom: 10px;
    color: #a3003b;
    font-size: 1.2rem;
}

.help-box .contact-link {
    display: inline-block;
    margin-top: 15px;
    color: #a3003b;
    text-decoration: none;
    font-weight: bold;
}

.help-box .contact-link:hover {
    text-decoration: underline;
}

/* -------------------
     ✅ Responsive Breakpoints
  ------------------- */

/* Tablet */
@media (max-width: 992px) {
    .services-section {
        padding: 3rem 3rem;
    }

    .services-container {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }

    .services-content h2 {
        font-size: 1.7rem;
    }

    .services-content p {
        font-size: 0.95rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .services-sidebar h3 {
        text-align: center;
    }

    .service-list li {
        text-align: center;
    }

    .services-content h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .services-content p {
        font-size: 0.9rem;
        text-align: center;
    }

    .benefit-list {
        grid-template-columns: 1fr;
    }

    .presentation-box {
        padding: 30px 20px;
    }

    .presentation-box h2 {
        font-size: 1.5rem;
    }

    .download-btn {
        width: 100%;
    }
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10rem 0;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #a3003b;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
    margin-bottom: 10px;
}

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

/* ////extra// */

.portfolio-section {
    padding: 4rem 6rem;
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: #fff;
}

.portfolio-header .subtitle {
    color: #b50028;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.portfolio-header .title {
    font-size: 32px;
    margin: 10px 0 30px;
    color: #112211;
}

.portfolio-tabs {
    display: inline-flex;
    padding: 2rem 0rem 0rem 0rem;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;
}

.portfolio-tabs .tab {
    background: none;
    border: none;
    padding: 10px 8rem;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    color: #333;
}

.portfolio-tabs .tab.active {
    color: #000;
    font-weight: 600;
  border-bottom: 1px solid #1a202c;
}

.portfolio-tabs .tab.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.portfolio-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.portfolio-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.portfolio-card h4 {
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

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

.first-section .info-box {
    background: #fff;
    padding: 10px;
    margin-top: -30px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 100%;
    margin: -30px auto 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

.first-section .info-box h3 {
    font-size: 20px;
    font-weight: 600;
  color: #a8113e;
    margin: 0;
    padding: 0;
    word-wrap: break-word;
}

.first-section .info-box p {
    font-size: 14px;
    font-weight: 400;
    color: #868686;
    margin: 5px 0 0 0;
    padding: 0;
    word-wrap: break-word;
}

.team-members-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.team-members-heading p {
    font-size: 20px;
    font-weight: 500;
  color: #a8113e;
    margin: 0;
    padding: 0;
}

.team-members-heading h3 {
    font-size: 50px;
    font-weight: 700;
  color: #a8113e;
    margin: 0;
    padding: 0;
    word-wrap: break-word;
    line-height: 1.2;
}

/* ////////contact us//// */

.contact-us-form {
    padding: 6rem 0;
    overflow-x: hidden;
    overflow-y: hidden;
  background-color: #ffffff;
}

.contact-us-form .items-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10rem;
    width: 100%;
    overflow: hidden;
}

.contact-us-form .container {
    overflow: hidden;
}

.contact-us-form .items-wrapper .image-container {
    position: relative;
    left: 10%;
    width: fit-content;
    overflow: hidden;
}

.contact-us-form .input-box input {
    width: 100% !important;
}

.contact-us-form .input-box input,
.contact-us-form .input-box textarea {
    color: #868686 !important;
}

.contact-us-form .input-box input::placeholder,
.contact-us-form .input-box textarea::placeholder {
    color: #868686 !important;
    opacity: 1;
    font-size: 14px;
    font-weight: 400;
}

.contact-us-form .items-wrapper .image-container img {
    height: 500px;
    animation: floatImage 3s ease-in-out infinite;
    overflow: hidden;
    width: 100% !important;
}

.contact-us-form .items-wrapper .texts-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-us-form .items-wrapper .texts-wrapper form {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-us-form .items-wrapper .image-container .text-card {
    position: absolute;
    right: 0;
    /* bottom: -2rem; */
    font-weight: 400;
    font-size: 32px;
    color: #ffffff;
    line-height: 38px;
    background-color: #de2427be;
    border-radius: 20px;
    padding: 5rem 1.5rem;
    animation: slideTextCard 4s ease-in-out infinite;
    overflow: hidden;
}

/* Hide scrollbars for contact-us-form section */
.contact-us-form,
.contact-us-form * {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.contact-us-form::-webkit-scrollbar,
.contact-us-form *::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slideTextCard {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-20px);
    }

    100% {
        transform: translateX(0);
    }
}

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

    .contact-us-form .items-wrapper .image-container .text-card {
        font-size: 26px;
        line-height: 30px;
        border-radius: 14px;
        padding: 0.875rem 1rem;
    }

    .contact-us-form .items-wrapper h1 {
        font-size: 36px;
    }

    .contact-us-form .items-wrapper p {
        font-size: 14px;
    }

    .contact-us-form .items-wrapper .cards-wrapper {
        margin-top: 2rem;
    }

    .contact-us-form .items-wrapper .cards-wrapper .item-card .icon-box {
        width: 86px;
        height: 76px;
        border-radius: 8px;
    }

    .contact-us-form .items-wrapper .cards-wrapper .item-card .icon-box img {
        height: 45px;
        width: 45px;
    }

    .contact-us-form .items-wrapper .cards-wrapper .item-card p {
        font-size: 16px;
        margin-top: 6px;
    }
}

@media screen and (max-width: 576px) {
    .contact-us-form {
        padding: 5rem 1rem;
    }

    .contact-us-form .items-wrapper .image-container img {
        height: auto;
        width: 100%;
        max-width: 350px;
    }

    .contact-us-form .items-wrapper .image-container .text-card {
        font-size: 22px;
        line-height: 26px;
    }

    .contact-us-form .items-wrapper h1 {
        font-size: 30px;
    }

    .contact-us-form .items-wrapper p {
        margin-top: 0.5rem;
        font-size: 13px;
    }

    .contact-us-form .items-wrapper .cards-wrapper {
        margin-top: 1.5rem;
    }

    .contact-us-form .items-wrapper .cards-wrapper .item-card .icon-box {
        width: 80px;
        height: 70px;
    }

    .contact-us-form .items-wrapper .cards-wrapper .item-card .icon-box img {
        height: 40px;
        width: 40px;
    }

    .contact-us-form .items-wrapper .cards-wrapper .item-card p {
        font-size: 15px;
    }
}

/* /////extra/// */
.contact-details {
    background-color: #fff;
    width: 100%;
    padding: 0 2rem 3rem;
    display: flex;
    justify-content: center;
}

.contact-details .cards-wrapper {
    display: flex;
    justify-content: space-around;
    gap: 4rem;
    flex-wrap: wrap;
    /* makes it responsive on small screens */
    width: 100%;
    max-width: 1200px;
}

.item-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1 1 250px;
    /* responsive width */
    min-width: 220px;
}

.icon-box {
  background-color: #e5e9ed;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    flex-shrink: 0;
}

.icon-box img {
    width: 30px;
    height: 30px;
}

.details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.details p {
  color: #161c2d;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.details-list span {
  color: #161c2d;
    font-size: 12px;
    font-weight: 400;
}

/* ////////extra// */

.stats-section {
    background: #0f0f0f;
    overflow: hidden !important;
    width: 100%;
    box-sizing: border-box;
    padding: 3rem 0 !important;
    position: relative;
    contain: layout style paint;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden !important;
    position: relative;
    contain: layout style;
}

.stats-container .stats-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
    align-items: end;
}

.stats-container .stats-top h2 {
    font-weight: 700;
    font-size: 40px;
    color: #ffffff;
}

.stats-container .stats-top p {
    font-weight: 300;
    font-size: 18px;
    margin: 0;
}

.stats-container .stats-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    overflow: hidden !important;
    position: relative;
}

.stats-container .stats-bottom .stats-card {
    border-right: 1px solid rgba(255, 255, 255, 0.157);
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    flex-direction: row;
    text-align: left;
    overflow: hidden !important;
    position: relative;
}

.stats-container .stats-bottom .stats-card img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    overflow: visible;
}

.stats-container .stats-bottom .stats-card:last-child {
    border-right: none;
}

.stats-container .stats-bottom .stats-card h1 {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    font-family: "DM Sans", sans-serif;
    margin: 0;
    line-height: 1.2;
    overflow: visible;
    height: auto;
    max-height: none;
}

.stats-container .stats-bottom .stats-card p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    font-family: "DM Sans", sans-serif;
    margin: 0;
    line-height: 1.2;
    overflow: visible;
    height: auto;
    max-height: none;
    word-wrap: break-word;
}

.stats-container .stats-bottom .stats-card div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    overflow: visible;
    height: auto;
    min-height: auto;
    max-height: none;
}

@media screen and (max-width: 992px) {
    .stats-container {
        padding: 0 15px;
    }

    .stats-container .stats-top {
        gap: 0;
        grid-template-columns: 1fr;
    }

    .stats-container .stats-top h2 {
        font-size: 36px;
    }

    .stats-container .stats-top p {
        font-size: 16px;
        margin-top: 12px;
    }

    .stats-container .stats-bottom {
        margin-top: 2rem;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 1rem;
        gap: 0;
        overflow: hidden !important;
        position: relative;
    }

    .stats-container .stats-bottom .stats-card:nth-child(2),
    .stats-container .stats-bottom .stats-card:nth-child(4) {
        border-right: none;
    }

    .stats-container .stats-bottom .stats-card {
        padding: 1.5rem 0.5rem;
        flex-direction: column;
        text-align: center;
        gap: 10px;
        overflow: hidden !important;
        position: relative;
        max-width: 100%;
    }

    .stats-container .stats-bottom .stats-card h1 {
        font-size: 32px;
        overflow: hidden !important;
        position: relative;
    }

    .stats-container .stats-bottom .stats-card p {
        font-size: 15px;
        overflow: hidden !important;
        position: relative;
    }
}

@media screen and (max-width: 576px) {
    .stats-section {
        padding: 0;
    }

    .stats-container {
        padding: 0 10px;
    }

    .stats-container .stats-top h2 {
        font-size: 30px;
    }

    .stats-container .stats-top p {
        font-size: 13px;
        margin-top: 10px;
    }

    .stats-container .stats-bottom {
        margin-top: 1.5rem;
        grid-template-columns: 1fr;
        gap: 0;
        overflow: hidden !important;
        position: relative;
    }

    .stats-container .stats-bottom .stats-card {
        border-bottom: 1px solid #4b4b4b;
        border-right: none;
        padding: 1.5rem 0.5rem;
        flex-direction: column;
        text-align: center;
        gap: 10px;
        overflow: hidden !important;
        position: relative;
        max-width: 100%;
    }

    .stats-container .stats-bottom .stats-card:last-child {
        border-bottom: none;
    }

    .stats-container .stats-bottom .stats-card h1 {
        font-size: 28px;
        overflow: hidden !important;
        position: relative;
    }

    .stats-container .stats-bottom .stats-card p {
        font-size: 14px;
        overflow: hidden !important;
        position: relative;
    }
}

/* ////extra// */

.offerings-block {
    padding: 6rem 2rem;
    overflow: hidden !important;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    contain: layout style paint;
}

.offerings-grid {
    margin-top: 2.5rem;
    display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
    overflow: hidden !important;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.offering-card {
    width: 100%;
  height: 100%;
    background-color: #fff;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
  border: 1px solid #a8113e;
  border-bottom: 6px solid #a8113e;
    overflow: hidden !important;
    position: relative;
    box-sizing: border-box;
    max-width: 100%;
}

.offering-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: yellow; */
    padding-bottom: 2rem;
}

.offering-top img {
    max-width: 100px;
    height: auto;
}

.offering-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offering-card h1 {
    margin: 0;
    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
  color: #a8113e;
    transition: all 0.2s ease;
}

.offering-card span {
    color: #868686;
    font-size: 13px;
    font-weight: 400;
}

.offering-card p {
    margin: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
  color: #a8113e;
    transition: all 0.2s ease;
}

.offerings-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    overflow: hidden !important;
    position: relative;
    width: 100%;
}
.offerings-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.offering-card:hover p {
    color: #161616;
}

/* Tablet screens (below 1400px) */
@media screen and (max-width: 1400px) {
    .offerings-block {
        padding: 3rem 2rem;
        overflow: hidden !important;
        position: relative;
        contain: layout style;
    }

    .offerings-title {
        font-size: 42px;
    }

    .offering-top img {
        max-width: 50px;
    }

    .offering-card h1 {
        font-size: 18px;
    }

    .offering-card span {
        font-size: 12px;
    }
}

/* Below 992px */
@media screen and (max-width: 992px) {
    .offerings-title {
        font-size: 36px;
    }

    .offering-card {
        min-height: auto;
    }

    .offering-card p {
        font-size: 16px;
        line-height: 22px;
    }

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

/* Mobile */
@media screen and (max-width: 576px) {
    .offerings-block {
        padding: 3rem 1rem;
        overflow: hidden !important;
        position: relative;
    }

    .offerings-grid {
    gap: 1.25rem;
    grid-template-columns: 1fr;
    }

    .offerings-title {
        font-size: 30px;
    }

    .offering-card {
        min-height: auto;
        overflow: hidden !important;
        position: relative;
    }

    .offering-card p {
        font-size: 14px;
        line-height: 20px;
    }

    .offering-top {
        padding-bottom: 1rem;
    }

    .offering-body {
        min-height: auto;
    }

    .offering-content {
        padding: 20px;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES FOR ALL SECTIONS
   ============================================ */

/* ===== HOME ABOUT US SECTION ===== */
@media screen and (max-width: 1200px) {
  .home-about-us .items-wrapper {
    gap: 3rem;
  }

  .home-about-us .items-wrapper .image-container img {
    height: 450px;
  }

  .home-about-us .items-wrapper h1 {
    font-size: 42px;
  }
}

@media screen and (max-width: 768px) {
  .home-about-us {
    padding: 4rem 1.5rem;
  }

  .home-about-us .items-wrapper {
    gap: 2.5rem;
  }

  .home-about-us .items-wrapper .image-container {
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .home-about-us .items-wrapper .image-container img {
    height: auto;
    max-width: 100%;
    width: 100%;
  }

  .home-about-us .items-wrapper .texts-wrapper {
    text-align: start;
  }

  .home-about-us .items-wrapper .cards-wrapper {
    width: 100%;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 480px) {
  .home-about-us {
    padding: 3rem 1rem;
  }

  .home-about-us .items-wrapper .image-container img {
    max-width: 280px;
  }

  .home-about-us .items-wrapper .cards-wrapper .item-card .icon-box {
    width: 200px;
    padding: 30px 30px 30px 10px;
  }
}

/* ===== OFFERINGS BLOCK SECTION ===== */
@media screen and (max-width: 768px) {
  .offerings-block {
    padding: 4rem 1.5rem;
  }

  .offerings-container {
    padding: 0 15px;
  }

  .offerings-header {
    padding: 0 10px;
    align-items: flex-start;
    text-align: start;
  }

  .offerings-subtitle {
    font-size: 14px;
  }

  .offerings-title {
    font-size: 32px;
  }

  .offerings-grid {
    gap: 1rem;
  }

  .offering-card h1 {
    font-size: 18px;
    line-height: 22px;
  }

  .offering-card span {
    font-size: 12px;
  }

  .offering-content {
    padding: 18px;
  }
}

@media screen and (max-width: 480px) {
  .offerings-block {
    padding: 3rem 1rem;
  }

  .offerings-container {
    padding: 0 10px;
  }

  .offerings-title {
    font-size: 28px;
  }

  .offering-top img {
    max-width: 60px;
  }

  .offering-card h1 {
    font-size: 16px;
    line-height: 20px;
  }

  .offering-card span {
    font-size: 11px;
  }

  .offering-content {
    padding: 15px;
    gap: 8px;
  }
}

/* ===== PEOPLE AT JSR SECTION ===== */
@media screen and (max-width: 992px) {
  .people-container {
    padding: 30px 15px;
  }

  .people-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .people-title {
    align-items: center;
  }

  .team-members {
    justify-content: center;
    gap: 15px;
  }

  .team-member {
    max-width: 250px;
    flex: 1 1 220px;
  }
}

@media screen and (max-width: 768px) {
  .people-at-jsr {
    padding: 15px 0;
    text-align: start;
  }

  .people-container {
    padding: 30px 10px;
  }

  .people-header {
    margin-bottom: 30px;
    align-items: flex-start;
    text-align: start;
  }

  .people-title {
    align-items: flex-start;
  }

  .team-members {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .team-member {
    max-width: 280px;
    flex: 1 1 auto;
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .people-container {
    padding: 20px 10px;
  }

  .people-title .subtitle {
    font-size: 12px;
  }

  .people-title .title {
    font-size: 24px;
  }

  .view-all-btn {
    padding: 8px 20px;
    font-size: 12px;
  }

  .team-member {
    max-width: 100%;
  }

  .team-member .info-box {
    width: 85%;
  }
}

/* ===== TESTIMONIAL SECTION ===== */
@media screen and (max-width: 992px) {
  .testimonial-section {
    padding: 50px 15px;
  }

  .testimonial-heading {
    margin-bottom: 30px;
  }

  .testimonial-heading h2 {
    font-size: 32px;
  }

  .testimonial-nav {
    gap: 3rem;
  }

  .testimonial-nav p {
    min-width: 200px;
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  .testimonial-section {
    padding: 40px 10px;
    text-align: start;
  }

  .bg-scale {
    width: 40px;
  }

  .bg-court {
    width: 60px;
  }

  .testimonial-heading {
    text-align: start;
  }

  .testimonial-heading p {
    font-size: 14px;
  }

  .testimonial-heading h2 {
    font-size: 28px;
  }

  .testimonial-content {
    text-align: start;
  }

  .testimonial-avatars {
    gap: 10px;
    height: 80px;
  }

  .avatar {
    width: 40px;
    height: 40px;
  }

  .avatar.active {
    width: 55px;
    height: 55px;
  }

  .testimonial-nav {
    gap: 2rem;
    flex-direction: column;
  }

  .testimonial-nav p {
    min-width: 100%;
    order: 1;
    text-align: start;
    margin-bottom: 15px;
  }

  .testimonial-nav button {
    order: 2;
    margin: 0 5px;
  }

  .testimonial-content {
    padding: 0 10px;
  }
}

@media screen and (max-width: 480px) {
  .testimonial-section {
    padding: 30px 10px;
    text-align: start;
  }

  .testimonial-heading {
    text-align: start;
  }

  .testimonial-heading h2 {
    font-size: 24px;
  }

  .testimonial-nav p {
    font-size: 13px;
    line-height: 1.5;
    text-align: start;
  }

  .testimonial-content {
    text-align: start;
  }

  .testimonial-content h3 {
    font-size: 18px;
  }
}

/* ===== NEWSLETTER SECTION ===== */
@media screen and (max-width: 768px) {
  .newsletter-section {
    padding: 40px 15px;
  }

  .newsletter-container {
    padding: 30px 20px;
    gap: 25px;
  }

  .newsletter-form {
    padding: 18px;
  }

  .newsletter-form h5 {
    font-size: 16px;
    text-align: start;
  }

  .newsletter-form h2 {
    font-size: 22px;
    margin: 8px 0 15px;
    text-align: start;
  }

  .newsletter-form > div {
    align-items: flex-start !important;
    text-align: start !important;
  }

  .input-box {
    margin-bottom: 12px;
  }

  .input-box input,
  .input-box textarea {
    padding: 10px 45px 10px 12px;
    font-size: 14px;
  }

  .send-btn {
    padding: 12px;
    font-size: 14px;
  }

  .video-box {
    min-height: 250px;
  }
}

@media screen and (max-width: 480px) {
  .newsletter-section {
    padding: 30px 10px;
  }

  .newsletter-container {
    padding: 20px 15px;
    gap: 20px;
  }

  .newsletter-form {
    padding: 15px;
  }

  .newsletter-form h5 {
    font-size: 14px;
    text-align: start;
  }

  .newsletter-form h2 {
    font-size: 20px;
    margin: 5px 0 12px;
    text-align: start;
  }

  .newsletter-form > div {
    align-items: flex-start !important;
    text-align: start !important;
  }

  .input-box input,
  .input-box textarea {
    padding: 8px 40px 8px 10px;
    font-size: 13px;
  }

  .input-box textarea {
    height: 80px;
  }

  .input-box .icon,
  .input-box .icons-pen {
    right: 10px;
  }

  .input-box .icon img,
  .input-box .icons-pen img {
    width: 18px;
    height: 18px;
  }

  .send-btn {
    padding: 10px;
    font-size: 13px;
  }

  .video-box {
    min-height: 200px;
  }

  .video-box iframe {
    min-height: 200px;
  }
}

/* ===== CLIENTS SECTION ===== */
@media screen and (max-width: 992px) {
  .clients {
    height: auto !important;
    min-height: 400px;
    padding: 40px 20px;
  }

  .clients-heading {
    text-align: start;
    align-items: flex-start;
  }

  .clients-heading h6 {
    font-size: 14px;
  }

  .clients-heading h1 {
    font-size: 36px;
  }

  .clients-heading p {
    font-size: 14px;
    padding-top: 20px;
  }

  .client-slider {
    width: 95%;
  }

  .client-track img {
    height: 70px;
    margin: 0 30px;
  }
}

@media screen and (max-width: 768px) {
  .clients {
    height: auto !important;
    min-height: 350px;
    padding: 30px 15px;
  }

  .clients-heading {
    text-align: start;
    align-items: flex-start;
  }

  .clients-heading h6 {
    font-size: 12px;
  }

  .clients-heading h1 {
    font-size: 28px;
  }

  .clients-heading p {
    font-size: 13px;
    padding-top: 15px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .client-slider {
    width: 100%;
    margin-top: 20px;
  }

  .client-track img {
    height: 60px;
    margin: 0 20px;
  }
}

@media screen and (max-width: 480px) {
  .clients {
    height: auto !important;
    min-height: 300px;
    padding: 25px 10px;
  }

  .clients-heading {
    text-align: start;
    align-items: flex-start;
  }

  .clients-heading h6 {
    font-size: 11px;
  }

  .clients-heading h1 {
    font-size: 24px;
  }

  .clients-heading p {
    font-size: 12px;
    padding-top: 10px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .client-track img {
    height: 50px;
    margin: 0 15px;
  }
}

/* ===== FOOTER SECTION ===== */
@media screen and (max-width: 576px) {
  .footer {
    padding: 40px 0px 0px;
    gap: 30px;
    min-height: auto;
  }

  .footer-contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0 0 20px 15px;
  }

  .footer-brand {
    text-align: start;
    transform: none;
    padding-left: 15px;
  }

  .footer-brand img {
    /* max-width: 120px; */
  }

  .contact-item {
    max-width: 100%;
    text-align: start;
    padding-left: 15px;
    padding-right: 15px;
  }

  .contact-icon {
    min-width: 50px !important;
  }

  .contact-icon img {
    width: 25px !important;
    height: 35px !important;
  }

  .contact-content {
    text-align: start;
  }

  .contact-content h4 {
    font-size: 16px;
  }

  .contact-content span {
    font-size: 13px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 20px;
  }

  .footer-column {
    text-align: start;
  }

  .footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-column p {
    font-size: 13px;
    line-height: 1.6;
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
    text-align: start;
  }

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

  .footer-column ul li a {
    font-size: 13px;
  }

  .footer-social {
    justify-content: flex-start;
    gap: 15px;
    margin-top: 15px;
  }

  .footer-newsletter {
    flex-direction: column;
    gap: 10px;
  }

  .email-input {
    border-radius: 10px;
    width: 100%;
  }

  .subscribe-btn {
    border-radius: 10px;
    width: 100%;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 15px;
    padding: 20px 15px;
    text-align: start;
    align-items: flex-start;
  }

  .footer-copyright span {
    font-size: 12px;
  }

  .footer-sponsor {
    width: 100%;
    justify-content: flex-start;
    flex-direction: row;
  }

  .footer-sponsor img {
    width: 80px;
    height: 40px;
  }

  .footer-links-bottom {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    flex-direction: row;
  }

  .footer-links-bottom a {
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .footer {
    padding: 30px 0px 0px;
    gap: 25px;
  }

  .footer-contact-row {
    padding: 0 0 15px 15px;
    gap: 15px;
    align-items: flex-start;
  }

  .footer-brand {
    text-align: start;
    transform: none;
    padding-left: 15px;
  }

  .footer-brand img {
    max-width: 100px;
  }

  .contact-item {
    text-align: start;
    padding-left: 15px;
    padding-right: 15px;
  }

  .contact-content {
    text-align: start;
  }

  .contact-content h4 {
    font-size: 14px;
  }

  .contact-content span {
    font-size: 12px;
  }

  .footer-main {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    gap: 20px;
  }

  .footer-column h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-column p {
    font-size: 12px;
  }

  .footer-column ul li a {
    font-size: 12px;
  }

  .footer-copyright {
    padding: 15px 10px;
  }

  .footer-copyright span {
    font-size: 11px;
  }

  .footer-sponsor {
    flex-direction: row;
  }

  .footer-sponsor img {
    width: 70px;
    height: 35px;
  }

  .footer-links-bottom {
    flex-direction: row;
  }

  .footer-links-bottom a {
    font-size: 11px;
  }
}
