



/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #d2b37f; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #d2b37f; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  }
  
  /* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
  :root {
    --nav-color: #212529;  /* The default color of the main navmenu links */
    --nav-hover-color: #d2b37f; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #34bf49; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  }
  
  /* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
  
  .light-background {
    --background-color: #f3f4f4;
    --surface-color: #ffffff;
  }
  
  .dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
  }
  
  /* Smooth scroll */
  :root {
    scroll-behavior: smooth;
  }
  
  /*--------------------------------------------------------------
  # General Styling & Shared Classes
  --------------------------------------------------------------*/
  
  
  a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
  }
  
  a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--heading-color);
   
  }
  
  
  h3 a, p a {
    text-decoration: none !important;
    border-bottom: none !important;
  }
  
  h3 a:hover, p a:hover {
    text-decoration: none !important;
    border-bottom: none !important;
  }
  
  
  /* new */
  
 /* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1050;
  padding: 15px 0;
  /* background: rgba(255, 255, 255, 0.9); */
  /* transition: background-color 0.3s ease-in-out; */
}

/* Navbar Scrolled */
.navbar.scrolled {
  background-color: white !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ===================== */
/* UPDATED NAVBAR BRAND  */
/* ===================== */

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Logo */
.navbar-brand img {
  height: 50px;
}

/* Two-Line Brand Text */
.brand-lines {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-main {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
}

.brand-sub {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-top: -3px;
}

/* Navbar Links */
.navbar-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.nav-item a {
  font-weight: 600;
  color: rgb(9, 9, 9);
  padding: 10px 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.nav-item a:hover {
  color: #090807;
  transform: translateY(-2px);
}

/* ===================== */
/* MOBILE VIEW CHANGES   */
/* ===================== */

@media (max-width: 991px) {
  .navbar-nav {
    width: 100%;
    text-align: center;
  }

  .nav-item {
    display: block;
    padding: 10px 0;
  }

  .navbar-toggler {
    border: none;
    outline: none;
  }

  .navbar-collapse {
    background: white;
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease-in-out;
  }
}

/* Smaller Screens (Brand Responsiveness) */
@media (max-width: 576px) {
  .navbar-brand img {
    height: 40px;
  }

  .brand-main {
    font-size: 1.2rem;
  }

  .brand-sub {
    font-size: 0.9rem;
  }
}
 
  /* Slider */
  /* Slider Container */
  .slider-container {
    position: relative;
    width: 100%;
    height: 120vh;
    overflow: hidden;
    margin-top: -80px;
  }
  
  /* Individual Slides */
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
  }
  
  /* Active Slide */
  .slide.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Slider Images */
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Slide Content (Text Box) */
  .slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 600px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); /* Dark semi-transparent background */
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  /* Slide Number */
  .slide-number {
    font-size: 16px;
    font-weight: bold;
    color: #f8f9fa;
    letter-spacing: 1px;
  }
  
  /* Heading Styles */
  .slide-content h2 {
    font-size: 46px;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #fff;
  }
  
  /* Slide Description */
  .slide-content p {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  /* Button Styles */
  .btn-discover {
    display: inline-block;
    padding: 12px 28px;
    background-color: #d2b37f;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
  }
  
  .btn-discover:hover {
    background-color: #d2b37f;
    transform: translateY(-3px);
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .slide-content {
      left: 5%;
      max-width: 90%;
    }
  
    .slide-content h2 {
      font-size: 36px;
    }
  
    .slide-content p {
      font-size: 18px;
    }
  
    .btn-discover {
      font-size: 16px;
      padding: 10px 20px;
    }
  }
  
  @media (max-width: 768px) {
    .slide-content {
      text-align: center;
      left: 50%;
      transform: translate(-50%, -50%);
      padding: 15px;
    }
  
    .slide-content h2 {
      font-size: 30px;
    }
  
    .slide-content p {
      font-size: 16px;
    }
  
    .btn-discover {
      font-size: 14px;
      padding: 8px 18px;
    }
  }


  /*  */
  .milestone-bar-graph {
    background: url('./img/new/infrastructure.webp') center/cover no-repeat;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
  }
  
  .milestone-bar-graph::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* dark overlay */
    z-index: 1;
  }
  
  .milestone-bar-graph .container {
    position: relative;
    z-index: 2;
  }
  
  .bar-graph {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    gap: 20px;
    height: 320px;
    flex-wrap: wrap;
  }
  
  .bar {
    width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: white;
    text-align: center;
  }
  
  .bar-block {
    height: var(--bar-height);
    background-color: var(--bar-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1rem;
    width: 100%;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
  }
  
  .bar:hover .bar-block {
    transform: scaleY(1.05);
  }
  
  .bar p {
    margin-top: 10px;
    font-size: 0.9rem;
    color: white;
  }
  
  /* ========================= */
  /* ✅ Responsive Adjustments */
  /* ========================= */
  
  @media (max-width: 992px) {
    .bar-graph {
      gap: 15px;
    }
    .bar {
      width: 80px;
    }
    .bar p {
      font-size: 0.85rem;
    }
  }
  
  @media (max-width: 768px) {
    .bar-graph {
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      height: auto;
    }
  
    .bar {
      width: 70px;
    }
  
    .bar-block {
      font-size: 0.85rem;
    }
  
    .bar p {
      font-size: 0.8rem;
    }
  
    .milestone-bar-graph h2 {
      font-size: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .bar-graph {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }
  
    .bar {
      width: 60px;
    }
  
    .bar-block {
      font-size: 0.75rem;
      height: calc(var(--bar-height) * 0.7); /* smaller bars on mobile */
    }
  
    .bar p {
      font-size: 0.75rem;
      margin-top: 6px;
    }
  
    .milestone-bar-graph h2 {
      font-size: 1.3rem;
    }
  }
  
  /* about3  */

  .image-box img {
    border-radius: 10px;
    transition: transform 0.4s ease;
  }
  .image-box:hover img {
    transform: scale(1.03);
  }
  

  /*--------------------------------------------------------------
  # Global Footer
  --------------------------------------------------------------*/
  .footer {
    background-color: #d2b37f;
    color: #000;
    padding: 60px 0;
    font-size: 17px;
    border-top: 1px solid color-mix(in srgb, #000, transparent 80%);
  }
  
  .footer a {
    color: #000 !important;
  }
  
  .footer a:hover {
    color: var(--accent-color);
  }
  
  .footer .copyright {
    margin-top: 50px;
    position: relative;
    padding-top: 20px;
    border-top: 1px solid color-mix(in srgb, #000, transparent 80%);
  }
  
  .footer .copyright p,
  .footer .copyright .credits {
    margin: 2px 0;
    font-size: 16px;
  }
  
  .footer .btn-learn-more {
    background-color: #000;
    border-radius: 30px;
    padding: 8px 30px;
    border: 2px solid transparent;
    transition: 0.3s all ease-in-out;
    font-size: 17px;
    color: #fff !important;
  }
  
  .footer .btn-learn-more:hover {
    border-color: #000;
    background-color: transparent;
    color: #000 !important;
  }
  
  .footer .widget .widget-heading {
    font-size: 17px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .footer .widget ul li {
    margin-bottom: 10px;
    line-height: 1.5;
  }
  
  .footer .widget ul li a {
    color: #000;
  }
  
  .footer .widget ul li a:hover {
    text-decoration: none;
    color: #000;
  }
  
  .footer .widget .footer-blog-entry .date {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 12px;
  }
  
  .footer .social-icons li {
    display: inline-block;
  }
  
  .footer .social-icons li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 50%;
    background: #000;
  }
  
  .footer .social-icons li a span {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s all ease-in-out;
  }
  
  .footer .social-icons li a:hover {
    background: #fff;
  }
  
  .footer .social-icons li a:hover span {
    color: #000;
  }
  
  .footer .social-icons li:first-child a {
    padding-left: 0;
  }
  
  .footer .footer-subscribe form {
    position: relative;
  }
  
  .footer .footer-subscribe .form-control {
    font-size: 14px;
    height: 42px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 40%);
    background: none;
    color: var(--heading-color);
    padding-right: 40px;
  }
  
  .footer .footer-subscribe .form-control:focus {
    border-color: color-mix(in srgb, var(--default-color), transparent 10%);
    box-shadow: none;
  }
  
  .footer .footer-subscribe .form-control::placeholder {
    color: color-mix(in srgb, var(--heading-color), transparent 60%);
  }
  
  .footer .footer-subscribe .btn-link {
    padding: 0;
    margin: 0;
    font-size: 1.5rem;
    background-color: none;
    border-color: none;
    position: absolute;
    line-height: 0;
    color: color-mix(in srgb, var(--heading-color), transparent 20%);
    top: 20px;
    right: 10px;
    transform: translateY(-50%) rotate(0deg);
  }
  
  .footer .footer-subscribe .btn-link:hover,
  .footer .footer-subscribe .btn-link:focus,
  .footer .footer-subscribe .btn-link:active {
    text-decoration: none;
  }
  
  
  /*--------------------------------------------------------------
  # Scroll Top Button
  --------------------------------------------------------------*/
  .scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
  }
  
  .scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
  }
  
  .scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
  }
  
  .scroll-top.active {
    visibility: visible;
    opacity: 1;
  }
  
  /*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
  @media screen and (max-width: 768px) {
    [data-aos-delay] {
      transition-delay: 0 !important;
    }
  }
  
  /*--------------------------------------------------------------
  # Global Page Titles & Breadcrumbs
  --------------------------------------------------------------*/
  .page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    position: relative;
  }
  
  
  
  .page-title h1 {
    font-size: 24px;
    font-weight: 300;
    margin: 0 0 5px 0;
  }
  
  .page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
  }
  
  .page-title .breadcrumbs ol li+li {
    padding-left: 10px;
  }
  
  .page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
  }
  
  /*--------------------------------------------------------------
  # Global Sections
  --------------------------------------------------------------*/
  section,
  .section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 100px;
    overflow: clip;
  }
  
  @media (max-width: 1199px) {
  
    section,
    .section {
      scroll-margin-top: 66px;
    }
  }
  
  /*--------------------------------------------------------------
  # Global Section Titles
  --------------------------------------------------------------*/
  .section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
  }
  
  .section-title h2 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0;
  }
  
  .section-title p {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  /*--------------------------------------------------------------
  # About Section
  --------------------------------------------------------------*/
  
  
  /*--------------------------------------------------------------
  # About 2 Section
  --------------------------------------------------------------*/
  /* About-2 Section */
  /* About-2 Section */
  .about-2 {
    padding: 0px 0;
    background: #f8f9fa; /* Light background */
  }
  

  
  /* Icons */
  .services-icon {
    width: 75px;
    height: 75px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 123, 255, 0.3);
    transition: background 0.3s ease-in-out;
  }
  
  .services-icon i {
    font-size: 28px;
    color: white;
  }
  
  
  /* Image Section */
  .about-2 .text-center img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }
  
  .about-2 .text-center img:hover {
    transform: scale(1.05);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
   
  
    .services-icon {
      margin: 0 auto 15px;
    }
  
    
  }
  
  /*--------------------------------------------------------------
  # Services Section
  --------------------------------------------------------------*/
  .services {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .services .services-item .services-icon {
    color: var(--accent-color);
    margin-bottom: 20px;
  }
  
  .services .services-item .services-icon i {
    font-size: 48px;
  }
  
  .services .services-item h3 {
    font-size: 35px;
    font-weight: 400;
    color: var(--heading-color);
  }
  
  .services .services-item p {
    font-size: 17px;
   
  }
  
  
  .goal-icon{
    color: var(--accent-color);
    font-size: 20px;
  }
  /*--------------------------------------------------------------
  # Stats Section
  --------------------------------------------------------------*/
  .stats {
    padding-top: 60px;
  }
  
  .stats .content-subtitle {
    font-size: 17px;
    margin-bottom: 10px;
    display: block;
    color: var(--default-color);
  }
  
  .stats .lead {
    line-height: 1.6;
    font-size: 17px;
    font-weight: normal;
    color: var(--default-color);
  }
  
  .stats .content-title {
    color: var(--heading-color);
    font-size: 35px;
    margin-bottom: 30px;
  }
  
  .stats p {
    line-height: 1.7;
    color: var(--default-color);
  }
  
  .stats .btn-get-started {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 30px;
    padding: 8px 30px;
    border: 2px solid transparent;
    transition: 0.3s all ease-in-out;
    font-size: 14px;
  }
  
  .stats .btn-get-started:hover {
    border-color: var(--accent-color);
    background-color: transparent;
    color: var(--accent-color);
  }
  
  .stats .count-numbers .number {
    font-size: 1.8rem;
    color: var(--heading-color);
    position: relative;
    display: block;
    padding-bottom: 7px;
    margin-bottom: 10px;
  }
  
  .stats .count-numbers .number:after {
    content: "";
    left: 0;
    bottom: 0;
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--accent-color);
  }
  
  .stats .img-1 {
    max-height: 450px; /* Adjust the height as needed */
    width: 100%; /* Makes the image take the full width of its container */
    max-width: 600px; /* Adjust the width as needed */
    object-fit: cover; /* Ensures the image looks good */
  }
  
  
  
  /*--------------------------------------------------------------
  # Blog Posts Section
  --------------------------------------------------------------*/
  .blog-posts .title-wrap {
    padding-bottom: 30px;
  }
  
  .blog-posts .content-subtitle {
    font-size: 17px;
    margin-bottom: 10px;
    display: block;
    color: var(--default-color);
  }
  
  .blog-posts .content-title {
    color: var(--heading-color);
    font-size: 22px;
    margin-bottom: 30px;
  }
  
  .blog-posts .post-entry .thumb {
    margin-bottom: 20px;
  }
  
  .blog-posts .post-entry .thumb img {
    transition: 0.3s all ease;
  }
  
  .blog-posts .post-entry .thumb:hover img {
    opacity: 0.8;
  }
  
  .blog-posts .post-entry .meta {
    font-size: 12px;
    margin-bottom: 20px;
  }
  
  .blog-posts .post-entry .meta .cat {
    text-transform: uppercase;
    font-weight: normal;
    color: var(--heading-color);
  }
  
  .blog-posts .post-entry .meta .date {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
  }
  
  .blog-posts .post-entry .post-content {
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .blog-posts .post-entry .post-content h3 {
    font-size: 17px;
    line-height: 1.2;
    font-weight: 600;
  }
  
  .blog-posts .post-entry .post-content h3 a {
    color: var(--heading-color);
  }
  
  .blog-posts .post-entry .post-content h3 a:hover {
    color: var(--accent-color);
  }
  
  .blog-posts .author .pic {
    flex: 0 0 50px;
    margin-right: 20px;
  }
  
  .blog-posts .author .author-name {
    line-height: 1.3;
  }
  
  .blog-posts .author .author-name strong {
    color: var(--heading-color);
    font-weight: normal;
  }
  
  .blog-posts .author .author-name span {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
  }
  
  .blog-posts .section-title h2{
     font-size: 35px;
  }
  .blog-posts .section-title p{
    font-size: 17px;
  }
  
  /*--------------------------------------------------------------
  # Tabs Section
  --------------------------------------------------------------*/
  .tabs .service-item .service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 4px;
    position: relative;
    color: var(--accent-color);
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    margin-right: 20px;
    font-size: 16px;
  }
  
  .tabs .service-item .service-contents h3 {
    font-size: 17px;
    color: var(--heading-color);
    font-weight: 600;
  
  }
  
  .tabs .service-item.link {
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 7px;
  }
  
  .tabs .service-item.link .service-contents {
    color: var(--default-color);
  }
  
  .tabs .service-item.link .service-contents *:last-child {
    margin-bottom: 0;
  }
  
  .tabs .service-item.link:hover {
    background: color-mix(in srgb, var(--default-color), transparent 96%);
  }
  
  .tabs .service-item.link:hover .service-icon {
    background-color: color-mix(in srgb, var(--default-color), transparent 90%);
    color: var(--default-color);
  }
  
  .tabs .service-item.link.active {
    background: var(--surface-color);
  }
  
  .tabs .service-item.link.active .service-icon {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  
  .tabs .service-item.link h3,
  .tabs .service-item.link p {
    text-decoration: none !important;
  }
  
  
  .tabs .service-item.link a {
    text-decoration: none !important;
  }
  
  .tabs .service-item.link a:hover {
    text-decoration: none !important;
  }
  
  /*--------------------------------------------------------------
  # Services 2 Section
  --------------------------------------------------------------*/
  .services-2 .content-subtitle {
    font-size: 17px;
    margin-bottom: 10px;
    display: block;
    color: var(--default-color);
  }
  
  .services-2 .content-title {
    color: var(--heading-color);
    font-size: 32px;
    margin-bottom: 30px;
  }
  
  .services-2 p {
    line-height: 1.7;
    color: var(--default-color);
  }
  
  .services-2 .lead {
    line-height: 1.6;
    font-size: 17px;
    font-weight: normal;
    color: var(--default-color);
  }
  
  .services-2 .btn-get-started {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 30px;
    padding: 8px 30px;
    border: 2px solid transparent;
    transition: 0.3s all ease-in-out;
    font-size: 14px;
  }
  
  .services-2 .btn-get-started:hover {
    border-color: var(--accent-color);
    background-color: transparent;
    color: var(--accent-color);
  }
  
  .services-2 .services-item .services-icon {
    color: var(--accent-color);
    margin-bottom: 20px;
  }
  
  .services-2 .services-item .services-icon i {
    font-size: 48px;
  }
  
  .services-2 .services-item h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--heading-color);
  }
  
  .services-icon {
    color: var(--accent-color);
    margin-bottom: 20px;
  }
  
  .services-icon i {
    font-size: 48px;
  }
  
  
  
  /*--------------------------------------------------------------
  # Testimonials Section
  --------------------------------------------------------------*/
  .testimonials p {
    line-height: 1.7;
    color: var(--default-color);
  }
  
  .testimonials .testimonial {
    max-width: 500px;
    text-align: center;
    margin-bottom: 30px;
    border: 2px solid var(--accent-color); /* Border box */
    padding: 20px;
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow for elevation */
    background-color: #fff; /* Optional background */
    transition: transform 0.3s ease;
  }
  
  .testimonials .testimonial:hover {
    transform: translateY(-5px); /* Slight hover lift effect */
  }
  
  .testimonials .testimonial .name {
    font-size: 17px;
    color: var(--heading-color);
  }
  
  .testimonials .testimonial .img-wrap img {
    margin: 0 auto;
    width: 70px;
    border-radius: 50%;
  }
  
  .testimonials .swiper-pagination {
    position: absolute;
    bottom: 0px;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet {
    margin: 0 5px;
    background-color: color-mix(in srgb, var(--default-color) 65%, transparent);
    opacity: 0.3;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
  }
  
  .testimonials .section-title h2{
    font-size: 35px;
  }
  
  .testimonials .section-title p{
    font-size: 17px;
  }
  
  
  /*--------------------------------------------------------------
  # Blog Posts 2 Section
  --------------------------------------------------------------*/
  .blog-posts-2 article {
    height: 100%;
  }
  
  .blog-posts-2 .post-img {
    max-height: 440px;
    overflow: hidden;
  }
  
  .blog-posts-2 .title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 5px 0;
  }
  
  .blog-posts-2 .title a {
    color: var(--heading-color);
    transition: 0.3s;
  }
  
  .blog-posts-2 .title a:hover {
    color: var(--accent-color);
  }
  
  .blog-posts-2 .meta-top {
    margin-top: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
  }
  
  .blog-posts-2 .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  
  .blog-posts-2 .meta-top i {
    font-size: 24px;
    line-height: 0;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
  }
  
  .blog-posts-2 .meta-top a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
  }
  
  
  /*--------------------------------------------------------------
  # Blog Pagination Section
  --------------------------------------------------------------*/
  
  .blog-pagination {
    padding-top: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
  }
  
  .blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
  }
  
  .blog-pagination li a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .blog-pagination li a.active,
  .blog-pagination li a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
  }
  
  .blog-pagination li a.active a,
  .blog-pagination li a:hover a {
    color: var(--contrast-color);
  }
  
  /*--------------------------------------------------------------
  # Blog Details Section
  --------------------------------------------------------------*/
  .blog-details {
    padding-bottom: 30px;
  }
  
  .blog-details .article {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  .blog-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
  }
  
  .blog-details .title {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 30px 0;
  }
  
  .blog-details .content {
    margin-top: 20px;
  }
  
  .blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
  }
  
  .blog-details .content blockquote {
    overflow: hidden;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
  }
  
  .blog-details .content blockquote p {
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
  }
  
  .blog-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent-color);
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .blog-details .meta-top {
    margin-top: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
  }
  
  .blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  
  .blog-details .meta-top ul li+li {
    padding-left: 20px;
  }
  
  .blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
  }
  
  .blog-details .meta-top a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
  }
  
  .blog-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  
  .blog-details .meta-bottom i {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    display: inline;
  }
  
  .blog-details .meta-bottom a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    transition: 0.3s;
  }
  
  .blog-details .meta-bottom a:hover {
    color: var(--accent-color);
  }
  
  .blog-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
  }
  
  .blog-details .meta-bottom .cats li {
    display: inline-block;
  }
  
  .blog-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
  }
  
  .blog-details .meta-bottom .tags li {
    display: inline-block;
  }
  
  .blog-details .meta-bottom .tags li+li::before {
    padding-right: 6px;
    color: var(--default-color);
    content: ",";
  }
  
  .blog-details .meta-bottom .share {
    font-size: 16px;
  }
  
  .blog-details .meta-bottom .share i {
    padding-left: 5px;
  }
  
  /*--------------------------------------------------------------
  # Blog Comments Section
  --------------------------------------------------------------*/
  .blog-comments {
    padding: 10px 0;
  }
  
  .blog-comments .comments-count {
    font-weight: bold;
  }
  
  .blog-comments .comment {
    margin-top: 30px;
    position: relative;
  }
  
  .blog-comments .comment .comment-img {
    margin-right: 14px;
  }
  
  .blog-comments .comment .comment-img img {
    width: 60px;
  }
  
  .blog-comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
  }
  
  .blog-comments .comment h5 a {
    font-weight: bold;
    color: var(--default-color);
    transition: 0.3s;
  }
  
  .blog-comments .comment h5 a:hover {
    color: var(--accent-color);
  }
  
  .blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
  }
  
  .blog-comments .comment h5 .reply i {
    font-size: 20px;
  }
  
  .blog-comments .comment time {
    display: block;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 5px;
  }
  
  .blog-comments .comment.comment-reply {
    padding-left: 40px;
  }
  
  
  
  
  /* about page */
  
  .about-banner {
    position: relative;
    height: 50vh;
    background: url('./img/new/about-sreeinfratech-banner.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
  }

  
  .about-banner .content {
    position: relative;
    z-index: 2;
  }
  
  .about-banner h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #000;
  }
  
  .about-banner p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 20px auto;
    color: #000;
  }
  
  .about-section {
    padding: 80px 0;
  }
  
  .about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .about-section p {
    font-size: 1.1rem;
    line-height: 1.7;
  }
  /*  */

/* Layout */
.philosophy-cards{
  position:relative;
  display:grid;
  place-items:center;
  overflow:hidden;            /* hides any tiny edge artifacts */
}

/* Each slide/card */
.philosophy-card{
  position:absolute;
  inset:0;                    /* full overlay */
  display:grid;
  place-items:center;
  opacity:0;
  transform:scale(0.98) translateZ(0);
  transition:opacity 600ms ease, transform 600ms ease;
  will-change:opacity, transform;
  backface-visibility:hidden;
  pointer-events:none;        /* only the active card is interactive */
}

.philosophy-card.active{
  opacity:1;
  transform:scale(1) translateZ(0);
  pointer-events:auto;
  z-index:2;
}

/* Card styling */
.glass-card{
  width:min(820px, 92vw);
  background:rgba(0,0,0,0.45);
  border:1px solid rgba(210,179,127,0.45);
  border-radius:18px;
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  padding:40px;
}

/* Typography */
.ph-title{
  font-family:"Poppins", system-ui, -apple-system, sans-serif;
  font-weight:600;
  font-size:clamp(1.6rem, 2.5vw, 2rem);
  letter-spacing:0.2px;
  color:#d2b37f;
  margin-bottom:12px;
}

.ph-text, .ph-list{
  font-family:"Inter", system-ui, -apple-system, sans-serif;
  font-weight:400;
  font-size:clamp(0.98rem, 1.2vw, 1.05rem);
  line-height:1.7;
  color:#f3f3f3;
  margin:0 auto;
  max-width:640px;
}

.ph-list{ text-align:left; }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce){
  .philosophy-card{ transition:none; }
}


  /*  */
  .glass-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    border: 2px solid #d2b37f;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(210, 179, 127, 0.3);
  }
  
  .sipl-about-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
  

  
  /*  */

  /* Common Card Style */
  .sipl-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
  }
  
  /* Icon Circle */
  .sipl-icon-circle {
    width: 60px;
    height: 60px;
    background-color: #d2b37f;
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  
  /* Values List */
  .sipl-value-list li {
    margin-bottom: 0.5rem;
  }
  
  .sipl-value-list strong {
    color: #d2b37f;
  }
  

  
  /* Headings & Colors */
  .text-primary {
    color: #d2b37f !important;
  }
  
  /* Table Customization */
  .table th, .table td {
    font-size: 0.95rem;
  }
  
  .table th {
    background-color: #d2b37f;
    color: #fff;
    font-weight: 600;
  }
  
  .table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f2f2f2;
  }
  
  /* Utility overrides */
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .mb-5 {
    margin-bottom: 3rem !important;
  }
  
  
  /* commit */
  
  .transition {
    transition: all 0.3s ease-in-out;
  }
  .feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  
  
  /*  */
  
  .get-in-touch ul li i {
    font-size: 1.2rem;
  }
  .get-in-touch h5 {
    color: #0d6efd;
  }
  
  /*  */
  
  /* exp */
  .experience-section-wrapper {
    overflow: hidden;
    background-color: #fff;
    color: #fff;
  }
  
  
    
  /*  */
  
 

  /* business */

  .bus-banner {
    position: relative;
    height: 50vh;
    background: url('./img/new/business-sreeinfratech-banner.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
  }

  
  .overlay-card {
    overflow: hidden;
    border-radius: 12px;
  }
  
  .overlay-card img {
    transition: transform 0.4s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
  }
  
  .overlay-card:hover img {
    transform: scale(1.05);
  }
  
  .overlay-content {
    position: absolute;
    bottom: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4));
    width: 100%;
    transition: all 0.3s ease-in-out;
  }
  
  .overlay-content h5 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .overlay-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
  }


  /*  */

  .sipl-business-intro h2 {
    font-size: 2rem;
    line-height: 1.4;
  }
  
  .sipl-business-intro .content p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .sipl-business-intro .img-wrapper {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  
  .sipl-business-intro img {
    transition: transform 0.4s ease;
    border-radius: 12px;
  }
  
  .sipl-business-intro img:hover {
    transform: scale(1.02);
  }
  

  /* policy */

  .policy-banner {
    position: relative;
    height: 50vh;
    background: url('./img/new/policy-sreeinfratech-banner.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
  }

  /* gallery */

  .gallery-banner {
    position: relative;
    height: 50vh;
    background: url('./img/new/gallery-sreeinfratech-banner.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
  }

/* Event Section */
/* Event Gallery Section */
.event-gallery-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.event-gallery-section h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Event Gallery Image Styling */
.event-gallery-img {
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Carousel Control Styling */
.event-gallery-carousel .carousel-control-prev-icon,
.event-gallery-carousel .carousel-control-next-icon {
  background-color: #000;
  border-radius: 50%;
  padding: 10px;
  background-size: 100% 100%;
}

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

@media (max-width: 768px) {
  .event-gallery-img {
    height: 250px;
  }

  .event-gallery-section h2 {
    font-size: 1.5rem;
  }
}
    
  

  /* contact */

  .contact-banner {
    position: relative;
    height: 50vh;
    background: url('./img/new/gallery-sreeinfratech-banner.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
  }

  

    .career-banner {
    position: relative;
    height: 50vh;
    background: url('./img/new/u2.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
  }

  /* new gallery */
/* Gallery Grid */
.gallerynew-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.gallerynew-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}
.gallerynew-item:hover {
  transform: translateY(-8px);
}
.gallerynew-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallerynew-item:hover img {
  transform: scale(1.1);
}

/* Overlay */
.gallerynew-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,79,159,0.7);
  color: #fff;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity 0.4s ease;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 15px;
}
.gallerynew-item:hover .gallerynew-overlay {
  opacity: 1;
}

/* about  */

/* Leader Section */
.sipl-leader-section {
  background: #f7f7f7;
}

.leader-photo {
  max-width: 580px;
  border-radius: 10px;
  object-fit: cover;
}

.leader-photo-wrapper {
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid #d2b37f;
}

.leader-content {
  border-left: 4px solid #d2b37f;
}

.leader-text {
  font-size: 1.05rem;
  line-height: 1.7;
}
