/**
* Template Name: Gp
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
    /* Add this CSS to your stylesheet */

    --------------------------------------------------------------*/
    body {
      font-family: 'Century Gothic', sans-serif;
  
      color: #181245;
    }
    
    a {
      color: #181245;
      text-decoration: none;
    }
    
    a:hover {
      color: #181245;
      text-decoration: none;
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: 'Century Gothic';
      color: #181245;
    }
    
    /*--------------------------------------------------------------
    # Back to top button
    --------------------------------------------------------------*/
    .back-to-top {
      position: fixed;
      visibility: hidden;
      opacity: 0;
      right: 16px;
      bottom: 15px;
      z-index: 996;
      background: #181245;
      width: 40px;
      height: 40px;
      border-radius: 4px;
      transition: all 0.4s;
    }
    
    .back-to-top i {
      font-size: 28px;
      color: #fff;
      line-height: 0;
    }
    
    .back-to-top:hover {
      background: #fff;
    }
    
    .back-to-top:hover i {
      color: #181245;
    }
    
    .back-to-top.active {
      visibility: visible;
      opacity: 1;
    }
    /*--------------------------------------------------------------
    # Preloader
    --------------------------------------------------------------*/
    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 9999;
      overflow: hidden;
      background: #151515;
    }
    
    #preloader:before {
      content: "";
      position: fixed;
      top: calc(50% - 0px);
      left: calc(50% - 30px);
      border: 6px solid #181245;
      border-top-color: white;
      border-bottom-color: #151515;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      animation: animate-preloader 1s linear infinite;
    }
    
    @keyframes animate-preloader {
      0% {
        transform: rotate(0deg);
      }
    
      100% {
        transform: rotate(360deg);
      }
    }
    
    /*--------------------------------------------------------------
    # Disable aos animation delay on mobile devices
    --------------------------------------------------------------*/
    @media screen and (max-width: 768px) {
      [data-aos-delay] {
        transition-delay: 0 !important;
      }
    }
    
    /*--------------------------------------------------------------
    # Header
    --------------------------------------------------------------*/
    #header {
      transition: all 0.5s;
      z-index: 997;
      padding: 15px 0;
    }
    
    #header.header-scrolled,
    #header.header-inner-pages {
      background: #181245;
    }
    
    #header .logo {
      font-size: 32px;
      margin: 0;
      padding: 0;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
    }
    
    #header .logo a {
      color: #fff;
    }
    
    #header .logo a span {
      color: #181245;
    }
    
    #header .logo img {
      max-height: 40px;
    }
    
    
    /*--------------------------------------------------------------
    #  Get Startet Button
    --------------------------------------------------------------*/
    .get-started-btn {
      color: #fff;
      border-radius: 4px;
      padding: 7px 25px 8px 25px;
      white-space: nowrap;
      transition: 0.3s;
      font-size: 14px;
      display: inline-block;
      border: 2px solid #181245;
    }
    
    .get-started-btn:hover {
      background: #181245;
      color: #fff;
    }
    
    @media (max-width: 992px) {
      .get-started-btn {
        padding: 7px 20px 8px 20px;
        margin-right: 15px;
      }
    }
    
    /*--------------------------------------------------------------
    # Navigation Menu
    --------------------------------------------------------------*/
    /**
    * Desktop Navigation 
    */
    .navbar {
      padding: 0;
    }
    
    .navbar ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
    
    .navbar li {
      position: relative;
    }
    
    .navbar a,
    .navbar a:focus {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 0 10px 30px;
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      white-space: nowrap;
      transition: 0.3s;
    }
    
    .navbar a i,
    .navbar a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
    }
    
    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar 
    .navbar li:hover>a {
      color: white;
    
    }
    .navbar ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .navbar ul li {
      display: inline;
      
    }
    
    .navbar ul li a {
      display: inline-block;
      padding: 10px 20px;
      text-decoration: none;
      color: white; /* Change color as needed */
      transition: 0.3s;
    }
    
    .navbar ul li a:hover,
    .navbar ul li a.active {
      text-decoration: underline;
      font-weight: bold;
    }
    
    
    .navbar .dropdown ul {
      display: block;
      position: absolute;
      left: 14px;
      top: calc(100% + 30px);
      margin: 0;
      padding: 10px 0;
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      background: #fff;
      box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
      transition: 0.3s;
    }
    
    .navbar .dropdown ul li {
      min-width: 200px;
    }
    
    .navbar .dropdown ul a {
      padding: 10px 20px;
      font-size: 14px;
      text-transform: none;
      color: #151515;
      font-weight: 400;
    }
    
    .navbar .dropdown ul a i {
      font-size: 12px;
    }
    
    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover>a {
      background-color: #181245;
    }
    
    .navbar .dropdown:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
    
    .navbar .dropdown .dropdown ul {
      top: 0;
      left: calc(100% - 30px);
      visibility: hidden;
    }
    
    .navbar .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: 100%;
      visibility: visible;
    }
    
    @media (max-width: 1366px) {
      .navbar .dropdown .dropdown ul {
        left: -90%;
      }
    
      .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
      }
    }
    
    /**
    * Mobile Navigation 
    */
    .mobile-nav-toggle {
      color: #fff;
      font-size: 28px;
      cursor: pointer;
      display: none;
      line-height: 0;
      transition: 0.5s;
    }
    
    /* Existing styles */

/* Media query for mobile view */
@media (max-width: 767px) {
  .mobile-nav-toggle {
      display: block;
      cursor: pointer;
      font-size: 28px;
      color: white;
  }

  .navbar ul {
      display: none;
      flex-direction: column;
      align-items: flex-start;
      background: rgba(0, 0, 0, 0.9);
      position: absolute;
      top: 60px; /* Adjust according to your header height */
      left: 0;
      width: 92%;
      padding: 10px 0;
      z-index: 999;
  }

  .navbar ul.show {
      display: flex;
  }

  .navbar ul li {
      width: 100%;
  }

  .navbar ul li a {
      width: 100%;
      padding: 15px;
      color: white;
      text-align: left;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

    
    .navbar-mobile {
      position: fixed;
      overflow: hidden;
      top: 0;
      right: 0;
      left: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.9);
      transition: 0.3s;
      z-index: 999;
    }
    
    .navbar-mobile .mobile-nav-toggle {
      position: absolute;
      top: 15px;
      right: 15px;
    }
    
    .navbar-mobile ul {
      display: block;
      position: absolute;
      top: 55px;
      right: 15px;
      bottom: 15px;
      left: 15px;
      padding: 10px 0;
      /* background-color: #fff; */
      overflow-y: auto;
      transition: 0.3s;
    }
    
    .navbar-mobile a,
    .navbar-mobile a:focus {
      padding: 10px 20px;
      font-size: 15px;
      color: #151515;
    }
    
    .navbar-mobile a:hover,
    .navbar-mobile .active,
    .navbar-mobile li:hover>a {
      color: #151515;
      background-color: #181245;
    }
    
    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
      margin: 15px;
    }
    
    .navbar-mobile .dropdown ul {
      position: static;
      display: none;
      margin: 10px 20px;
      padding: 10px 0;
      z-index: 99;
      opacity: 1;
      visibility: visible;
      background: #fff;
      box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }
    
    .navbar-mobile .dropdown ul li {
      min-width: 200px;
    }
    
    .navbar-mobile .dropdown ul a {
      padding: 10px 20px;
      color: #151515;
    }
    
    .navbar-mobile .dropdown ul a i {
      font-size: 12px;
    }
    
    .navbar-mobile .dropdown ul a:hover,
    .navbar-mobile .dropdown ul .active:hover,
    .navbar-mobile .dropdown ul li:hover>a {
      background-color: #181245;
    }
    
    .navbar-mobile .dropdown>.dropdown-active {
      display: block;
    }
    
    /*--------------------------------------------------------------
    # Hero Section
    --------------------------------------------------------------*/
   /* Base styles */
   /* General Styles */


/* Overlay for better text visibility */
.welcome-container {
  background-size: cover;
  background-position: center;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden; /* Ensure no overflow from the pseudo-element */
  font-family: 'Century Gothic', sans-serif;
  text-align: justify;
    
}

.welcome-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
  z-index: 1; /* Place it behind the content */
}

.welcome-content {
  /* background: rgba(24, 18, 69, 0.7);  Darker semi-transparent background */
  padding: 20px;
  border-radius: 10px;
  position: relative; /* Ensure content is above the overlay */
  z-index: 2;
    
}

h1 {
  margin: 0;
  color: white; /* Ensure text is visible */
}

p {
  margin: 0;
  color: white; /* Ensure text is visible */
}

.logo {
  width: 100px; /* Adjust size as needed */
  height: auto;
  margin: 10px; /* Space between logos */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .welcome-container {
      height: auto; /* Adjust height for smaller screens */
      padding: 50px; /* Add padding */
  }

  .welcome-content {
      padding: 15px;
  }

  h1 {
      font-size: 2em; /* Adjust font size for smaller screens */
  }

  p {
      font-size: 1em; /* Adjust font size for smaller screens */
  }

  .logo {
      width: 80px; /* Smaller size on medium screens */
  }
}

@media (max-width: 480px) {
  .welcome-content {
      padding: 10px;
  }

  h1 {
      font-size: 1.5em; /* Further adjust font size */
  }

  p {
      font-size: 0.9em; /* Further adjust font size */
  }

  .logo {
      width: 60px; /* Even smaller size on small screens */
  }
}
    
    /*--------------------------------------------------------------
    # Sections General
    --------------------------------------------------------------*/
    section {
      padding: 60px 0;
      overflow: hidden;
    }
    
    .section-title {
      padding-bottom: 40px;
    }
    
    .section-title h2 {
      font-size: 14px;
      font-weight: 500;
      padding: 0;
      line-height: 1px;
      margin: 0 0 5px 0;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #aaaaaa;
      font-family: "Poppins", sans-serif;
    }
    
    .section-title h2::after {
      content: "";
      width: 120px;
      height: 1px;
      display: inline-block;
      background: #ffde9e;
      margin: 4px 10px;
    }
    
    .section-title p {
      margin: 0;
      margin: 0;
      font-size: 36px;
      font-weight: 700;
      text-transform: uppercase;
      font-family: 'Century Gothic', sans-serif;
      color: #181245;
    }
    
    /*--------------------------------------------------------------
    # about
    --------------------------------------------------------------*/
    
    .about {
      text-align: justify;
      padding: 40px 0;
      position: relative;
      box-shadow: 0 0 20px 5px rgba(24, 18, 69, 0.5);
      background-color: white;
    }
    
    .about p {
      font-family: 'Century Gothic', sans-serif;
      color: #181245;
      margin-bottom: 20px;
    }
    
    .about h4, h1, h3, h5, h6 {
      font-weight: bold;
    }
    
    @media (max-width: 768px) {
      .about .row > .col-lg-6 {
        margin-bottom: 20px;
      }
    }
    
    /* Add a glowing effect */
    .about:hover {
      box-shadow: 0 0 30px 10px rgba(24, 18, 69, 0.7);
    }
    
    
    .clients {
      padding-top: 20px;
    }
    
    .clients .section-title {
      font-family: 'Century Gothic', sans-serif;
      font-weight: bold;
      color: #181245;
      margin-bottom: 20px;
      margin-left: -4px;
    }
    
    .clients .swiper-slide img {
      transition: 0.1s;
      max-width: 100%;
      height: auto;
    }
    
    .clients .swiper-slide img:hover {
      filter: none;
      opacity: 1;
    }
    
    .clients .swiper-pagination {
      margin-top: 20px;
      position: relative;
    }
    
    .clients .swiper-pagination .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background-color: #fff;
      opacity: 1;
      background-color: #ddd;
    }
    
    .clients .swiper-pagination .swiper-pagination-bullet-active {
      background-color: #181245;
    }
    
    /* Media queries for responsiveness */
    @media (max-width: 768px) {
      .clients .section-title {
        margin-left: 0;
        text-align: center;
      }
    }
    
  
    
    /*--------------------------------------------------------------
    # Clients
    --------------------------------------------------------------*/
    .partner {
      padding-top: 20px;
    } */
    
    --------------------------------------------------------------*/
     .clients {
      padding-top: 20px;
    }
    
    .clients .swiper-slide img {
    
      transition: 0.3s;
     
    }
    
    .clients .swiper-slide img:hover {
      filter: none;
      opacity: 1;
    }
    
    .clients .swiper-pagination {
      margin-top: 20px;
      position: relative;
    }
    
    .clients .swiper-pagination .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background-color: #fff;
      opacity: 1;
      background-color: #ddd;
    }
    
    .clients .swiper-pagination .swiper-pagination-bullet-active {
      background-color: #181245;
    }
    
    
    
    /*--------------------------------------------------------------
    # Features
    --------------------------------------------------------------*/
    .features {
      padding-top: 20px;
      text-align: justify;
       box-shadow: 0px 4px 15px rgba(24, 18, 69, 0.5);
    }
    
    .features h1 {
      font-family: 'Century Gothic', sans-serif;
      font-weight: bold;
      color: #181245;
      text-align: start;
      margin-bottom: 20px;
      font-size: 3em; /* Adjust as needed */
    }
    
    .features .intro-paragraph {
      font-family: 'Century Gothic', sans-serif;
      color: #181245;
    
      font-size: 1.2em; /* Adjust as needed */
      margin-bottom: 50px;
    
    }
    
    .features .video-container {
      position: relative;
      padding-bottom: 66.25%; /* 16:9 aspect ratio */
      height: 0;
      overflow: hidden;
      box-shadow: 0px 4px 15px rgba(24, 18, 69, 0.5);
    }
    
    .features .video-container video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .features .content-container {
      display: flex;
      flex-direction: column;
      
    }
    
    .features h4, .features h6 {
      font-family: 'Century Gothic', sans-serif;
      font-weight: bold;
      color: #181245;
      margin-bottom: 20px;
    }
    
    .features p {
      font-family: 'Century Gothic', sans-serif;
      color: #181245;
      margin-bottom: 20px;
    }
    
    .features .row > .col-md-6 {
      margin-bottom: 20px;
    }
    
  
      .features .video-container video {
        width: 100%;
        height: auto;
        
      }
    
    /*--------------------------------------------------------------
    # Services
    --------------------------------------------------------------*/
    
   /* General styles for section */


/* Icon box styles */
body {
  font-family: 'Century Gothic', sans-serif;
}

p, h1, h2, h3, h4 {
  color: #181245;
}

.services .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 4px 15px rgba(24, 18, 69, 0.5); /* Add this line for shadow */
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #181245;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
  color: #181245;
}

.services .icon-box h4 a {
  color: #181245;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 a:hover {
  color: #fff;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #181245;
  background: #181245;
  color: #fff;
  transform: translateY(-10px);
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #181245;
}

.services .icon-box:hover h4,
.services .icon-box:hover h4 a,
.services .icon-box:hover p {
  color: #fff;
}

.services .icon-box:hover .read-more-btn {
  color: #fff;
}

.content {
  max-height: 3.2em; /* Adjust based on your font-size and line-height for two lines */
  overflow: hidden;
  transition: max-height 0.3s ease;
  position: relative;
}

.content.open {
  max-height: none;
}

.read-more-btn {
  cursor: pointer;
  color: #181245; /* Customize as needed */
  display: inline-block;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.read-more-btn:hover {
  color: #fff;
}

    /*--------------------------------------------------------------
    # Portfolio
    --------------------------------------------------------------*/
  /* General Styles */
  .portfolio {
    font-family: 'Century Gothic', sans-serif;
    font-weight: bold;
    color: #181245;
  }
  
  .portfolio .section-title p {
    color: #181245;
    font-family: 'Century Gothic', sans-serif;
  }
  
  .portfolio-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the items */
  }
  
  .portfolio-item {
    margin: 15px;
    text-align: center;
    width: calc(33.333% - 30px); /* Three items per row with margin */
    box-sizing: border-box;
    box-shadow: 0 12px 24px rgba(24, 18, 69, 0.6); /* Shining shadow */
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(24, 18, 69, 0.8); /* Stronger shining shadow on hover */
  }
  
  .portfolio-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(24, 18, 69, 0.5); /* Shining shadow on images */
  }
  
  .portfolio-item h2 {
    font-family: 'Century Gothic', sans-serif;
    font-weight: bold;
    color: #181245;
    margin-top: 15px;
  }
  
  .view-details-btn {
    display: block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #181245;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 100px;
    box-shadow: 0 8px 16px rgba(24, 18, 69, 0.5); /* Shining shadow on button */
    transition: background-color 0.3s, box-shadow 0.3s;
    margin-bottom: 10px;
  }
  
  .view-details-btn:hover {
    background-color: black;
    box-shadow: 0 12px 24px rgba(24, 18, 69, 0.8); /* Stronger shining shadow on hover */
  }
  
  /* Portfolio Filters */
  #portfolio-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
  }
  
  #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 15px 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
    box-shadow: 0 8px 16px rgba(24, 18, 69, 0.5); /* Shining shadow on filters */
  }
  
  #portfolio-flters li:hover,
  #portfolio-flters li.filter-active {
    color: #fff;
    background: #181245;
    box-shadow: 0 12px 24px rgba(24, 18, 69, 0.8); /* Stronger shining shadow on hover or active */
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .portfolio-item {
      width: calc(50% - 30px); /* Two items per row on medium screens */
    }
  }
  
  @media (max-width: 768px) {
    .portfolio-item {
      width: calc(100% - 30px); /* One item per row on small screens */
    }
  }
  
  /* Portfolio Details */
  .portfolio-details {
    padding-top: 40px;
  }
  
  .portfolio-details-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  
  .portfolio-text, .portfolio-image {
    flex: 1;
    padding: 20px;
  }
  
  .portfolio-text {
    max-width: 50%;
    font-family: 'Century Gothic', sans-serif;
    color: #181245;
  }
  
  .portfolio-details h2 {
    font-family: 'Century Gothic', sans-serif;
    font-weight: bold;
    color: #181245;
  }
  
  .portfolio-text h2 {
    font-family: 'Century Gothic', sans-serif;
    font-weight: bold;
    color: #181245;
  }
  
  .portfolio-text ul, li {
    font-family: 'Century Gothic', sans-serif;
    color: #181245;
  }
  
  .portfolio-image {
    max-width: 50%;
  }
  
  .portfolio-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(24, 18, 69, 0.6); /* Shining shadow on images */
  }
  
  .portfolio-details .portfolio-details-slider img {
    width: 100%;
    box-shadow: 0 12px 24px rgba(24, 18, 69, 0.6); /* Shining shadow on slider images */
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #181245;
  }
  
  .portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
  }
  
  .portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  
  .portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }
  
  .portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
  }
  
  .portfolio-details .portfolio-description {
    padding-top: 30px;
  }
  
  .portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .portfolio-details .portfolio-description p {
    padding: 0;
  }
  
  .detail-image img {
    max-width: 350%;
    max-height: 350px; /* Adjust as needed */
    width: auto;
    height: auto;
    box-shadow: 0 12px 24px rgba(24, 18, 69, 0.6); /* Shining shadow on details images */
  }
  
  
    
    /*--------------------------------------------------------------
    # Counts
    --------------------------------------------------------------*/
    
    
    
    /*--------------------------------------------------------------
    # Testimonials
    --------------------------------------------------------------*/
  
    
    /*--------------------------------------------------------------
    # Team
    --------------------------------------------------------------*/
    .team {
      background: #fff;
      padding: 60px 0;
    }
    
    .team .member {
      margin-bottom: 20px;
      overflow: hidden;
      border-radius: 5px;
      background: #fff;
      box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    }
    
    .team .member .member-img {
      position: relative;
      overflow: hidden;
    }
    
    .team .member .social {
      position: absolute;
      left: 0;
      bottom: 30px;
      right: 0;
      opacity: 0;
      transition: ease-in-out 0.3s;
      text-align: center;
    }
    
    .team .member .social a {
      transition: color 0.3s;
      color: #151515;
      margin: 0 3px;
      border-radius: 4px;
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.8);
      transition: ease-in-out 0.3s;
      color: #484848;
      display: inline-flex;
      justify-content: center;
      align-items: center;
    }
    
    .team .member .social a:hover {
      color: white;
       background: #181245; 
    } 
    
    .team .member .social i {
      font-size: 18px;
      line-height: 0;
    }
    
    .team .member .member-info {
      padding: 25px 15px;
    }
    
    .team .member .member-info h4 {
      font-weight: 700;
      margin-bottom: 5px;
      font-size: 18px;
      font-family: 'Century Gothic', sans-serif;
      font-weight: bold;
      color: #181245;
    }
    
    .team .member .member-info span {
      display: block;
      font-size: 13px;
      font-weight: 400;
      color: #181245;
      font-family: 'Century Gothic', sans-serif;
    }
    
    .team .member .member-info p {
      font-style: italic;
      font-size: 14px;
      line-height: 26px;
      color: #777777;
    }
    
    .team .member:hover .social {
      opacity: 1;
      bottom: 15px;
    }
    
    /*--------------------------------------------------------------
    # Contact
    --------------------------------------------------------------*/
    .contact {
      padding: 60px 0;
      color: #181245;
      background: #f8f9fa;
    }
    
    .contact .section-title h2 {
      color: #181245;
      font-weight: bold;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
      padding-bottom: 10px;
      text-transform: uppercase;
    }
    
    .contact .section-title h2::after {
      content: '';
      width: 60px;
      height: 4px;
      background: #181245;
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
    }
    
    .contact .map-container {
      margin-bottom: 40px;
      border: 2px solid #181245; /* Add border color */
      border-radius: 10px; /* Match border-radius with the iframe */
      overflow: hidden; /* Ensure border radius is applied to iframe */
      box-shadow: 0 12px 24px rgba(24, 18, 69, 0.6); /* Shining shadow */
    }
    
    .contact .map-container iframe {
      border: 0;
      width: 100%;
      height: 270px;
      border-radius: 10px;
      box-shadow: 0 16px 32px rgba(24, 18, 69, 0.8); /* Enhanced shining shadow */
    }
    
    /* Info Section Styling */
    .contact .info {
      background: #fff;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 12px 24px rgba(24, 18, 69, 0.6); /* Shining shadow */
      transition: transform 0.3s, box-shadow 0.3s;
      border-left: 3px solid #181245;
    }
    
    .contact .info:hover {
      transform: translateY(-10px);
      box-shadow: 0 24px 48px rgba(24, 18, 69, 0.8); /* Stronger shining shadow on hover */
    }
    
    .contact .info i {
      font-size: 24px;
      color: #181245;
      float: left;
      width: 44px;
      height: 44px;
      background: #f1f1f1;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      margin-right: 15px;
      transition: all 0.3s ease-in-out;
    }
    
    .contact .info h4 {
      padding: 0 0 0 60px;
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 5px;
      color: #181245;
      position: relative;
    }
    
    .contact .info h4::before {
      content: '';
      width: 50px;
      height: 3px;
      /* background: #181245; */
      position: absolute;
      bottom: -10px;
      left: 0;
    }
    
    .contact .info p {
      padding: 0 0 0 60px;
      margin-bottom: 0;
      font-size: 14px;
      color: #181245;
    }
    
    .contact .info .email,
    .contact .info .phone {
      margin-top: 40px;
    }
    
    .contact .info .email:hover i,
    .contact .info .address:hover i,
    .contact .info .phone:hover i {
      background: #181245;
      color: white;
    }
    
    /* Form Styling */
    .contact form {
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 12px 24px rgba(24, 18, 69, 0.6); /* Shining shadow */
      transition: transform 0.3s, box-shadow 0.3s;
      border-top: 3px solid #181245;
    }
    
    .contact form:hover {
      transform: translateY(-10px);
      box-shadow: 0 24px 48px rgba(24, 18, 69, 0.8); /* Stronger shining shadow on hover */
    }
    
    .contact form .form-group {
      margin-bottom: 15px;
    }
    
    .contact form .form-group label {
      font-weight: 600;
      color: #181245;
    }
    
    .contact form .form-control {
      border-radius: 4px;
      box-shadow: none;
      font-size: 14px;
      border: 1px solid #ced4da;
      padding: 10px;
      transition: border-color 0.3s;
    }
    
    .contact form .form-control:focus {
      border-color: #181245;
      box-shadow: none;
    }
    
    .contact form .form-control::placeholder {
      color: #ced4da;
      font-style: italic;
    }
    
    .contact form .btn-primary {
      background: #181245;
      border: 0;
      padding: 10px 24px;
      color: #fff;
      transition: 0.4s;
      border-radius: 4px;
      font-weight: bold;
    }
    
    .contact form .btn-primary:hover {
      background: #2c348d;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    
    /*--------------------------------------------------------------
    # Breadcrumbs
    --------------------------------------------------------------*/

    
    /*--------------------------------------------------------------
    # Footer
    --------------------------------------------------------------*/
    #footer {
      padding: 0 0 30px 0;
      color: #181245;
      font-size: 14px;
      background-color: white;
      border: 3px solid #181245; /* Border */
      border-radius: 5px; /* Adds rounded corners */
      box-shadow: 0 12px 24px rgba(24, 18, 69, 0.6); /* Shining shadow */
    }
    
    #footer .footer-top {
      background: white; /* Set background to white */
      padding: 60px 0 30px 0;
      color: #181245;
      border-radius: 0 0 10px 10px; /* Matches the footer border radius */
      box-shadow: 0 12px 24px rgba(24, 18, 69, 0.6); /* Shining shadow */
    }
    
    #footer .footer-info {
      margin-bottom: 30px;
    }
    
    #footer .footer-info h3 {
      font-size: 24px;
      margin-bottom: 20px;
      font-weight: 700;
      display: flex;
      align-items: center;
      color: #181245; /* Set h3 color */
    }
    
    #footer .footer-info h3 .footer-logo {
      height: 50px;
      margin-right: 10px;
    }
    
    #footer .footer-info p {
      font-size: 14px;
      line-height: 24px;
      margin-bottom: 10px;
      font-family: "Century Gothic", sans-serif;
      color: #181245; /* Set paragraph color */
    }
    
    #footer .footer-links {
      margin-bottom: 30px;
    }
    
    #footer .footer-links h4 {
      font-size: 16px;
      font-weight: 600;
      color: #181245; /* Set h4 color */
      padding-bottom: 12px;
    }
    
    #footer .footer-links ul {
      list-style: none;
      padding: 0;
    }
    
    #footer .footer-links ul li {
      padding: 10px 0;
      display: flex;
      align-items: center;
    }
    
    #footer .footer-links ul i {
      padding-right: 8px;
      color: #181245; /* Set icon color */
      font-size: 18px;
      line-height: 1;
    }
    
    #footer .footer-links ul a {
      transition: 0.3s;
      display: inline-block;
      line-height: 1;
    }
    
    #footer .footer-links ul a:hover {
      color: #ddd;
    }
    
    #footer .footer-newsletter h4 {
      font-size: 16px;
      font-weight: 600;
      color: #181245; /* Set h4 color */
      margin-bottom: 20px;
    }
    
    #footer .footer-newsletter p {
      font-size: 14px;
      line-height: 24px;
      margin-bottom: 20px;
      color: #181245; /* Set paragraph color */
    }
    
    #footer .footer-newsletter form {
      background: #fff;
      padding: 10px;
      position: relative;
      border-radius: 4px;
      display: flex;
      justify-content: space-between;
    }
    
    #footer .footer-newsletter form input[type=email] {
      border: 1px solid #181245;
      padding: 10px;
      width: calc(100% - 110px);
      border-radius: 4px;
      color: #181245; /* Set input text color */
      transition: 0.3s;
    }
    
    #footer .footer-newsletter form input[type=submit] {
      background: #181245;
      border: 0;
      padding: 10px 24px;
      color: #fff;
      transition: 0.4s;
      border-radius: 4px;
      font-weight: bold;
    }
    
    #footer .footer-newsletter form input[type=submit]:hover {
      background: #2c348d;
    }
    
    #footer .social-links a {
      font-size: 18px;
      display: inline-block;
      background: #181245;
      color: #fff;
      line-height: 1;
      padding: 8px 0;
      margin-right: 8px;
      border-radius: 4px;
      text-align: center;
      width: 36px;
      height: 36px;
      transition: 0.3s;
      box-shadow: 0 12px 24px rgba(24, 18, 69, 0.6); /* Shining shadow */
    }
    
    #footer .social-links a:hover {
      background: #fff;
      color: #181245;
      text-decoration: none;
      box-shadow: 0 24px 48px rgba(24, 18, 69, 0.8); /* Stronger shining shadow on hover */
    }
    /* Footer styling as provided */
#footer {
  padding: 0 0 30px 0;
  color: #181245;
  font-size: 14px;
  background-color: white;
  border: 3px solid #181245;
  border-radius: 5px;
  box-shadow: 0 12px 24px rgba(24, 18, 69, 0.6);
}

#footer .footer-top {
  background: white;
  padding: 60px 0 30px 0;
  color: #181245;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 12px 24px rgba(24, 18, 69, 0.6);
}

