body {
  font-family: 'Montserrat', sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}



/* styles.css */


.logo-container {
  display: flex;
  align-items: center;
  margin-right: 50px;
  margin-left: -10px;
  margin-top: -20px;
}

.logo-image {
  max-height: 100px;
  margin-right: 50px;
  max-width: 150%;
  margin-top: 20px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  
}

.brand-text span {
  font-size: 1.5em;
  font-weight: bold;
  
  color: #ffffff;
  
}

.brand-text small {
  font-size: 0.8em;
  color: #ccc;
}

.contact_nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  display: flex;
  align-items: center;
}

.contact_nav a i {
  margin-right: 5px;
}




.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  color: #ff0505;
  
}
.heading_container h5 {
  position: relative;
  font-weight: bold;
  color: #ff0505;
  
}
.heading_container h4 {
  position: relative;
  font-weight: bold;
  color: #070707;
  
}
.heading_container h6 {
  position: relative;
  font-weight: bold;
  color: #090909;
  
}




.heading_container h2 span {
  color: #ffffff;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.hero_area {
  position: relative;
  height: calc(100vh - 35px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Background slide animation */
@keyframes slide_background {
  0%, 30% {
    background-image: url(../images/bgmistjpg.jpg);
  }
  31%, 60% {
    background-image: url(../sliders_section/7.png);
  }
  61%, 90% {
    background-image: url(../sliders_section/new.jpg);
  }
  91%, 100% {
    background-image: url(../images/bgmistjpg.jpg);
  }
}
/* Background animation */
.hero_area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  animation: slide_background 12s infinite ease-in-out;
  z-index: -1;
}

/* Text for each slide, sliding individually */
@keyframes slide_text {
  0%, 30% {
    opacity: 1;
    transform: translateX(0);
  }
  31%, 60% {
    opacity: 0;
    transform: translateX(100%);
  }
  61%, 100% {
    opacity: 0;
  }
}

@keyframes slide_text2 {
  0%, 30% {
    opacity: 0;
    transform: translateX(-100%);
  }
  31%, 60% {
    opacity: 1;
    transform: translateX(0);
  }
  61%, 90% {
    opacity: 0;
    transform: translateX(100%);
  }
  91%, 100% {
    opacity: 0;
  }
}

@keyframes slide_text3 {
  0%, 60% {
    opacity: 0;
    transform: translateX(-100%);
  }
  61%, 90% {
    opacity: 1;
    transform: translateX(0);
  }
  91%, 100% {
    opacity: 0;
  }
}
.text_section {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  font-weight: 1100;
  font-size: 3rem;
  letter-spacing: 1px;
  color: #000000;
  margin-left: -270px;
  text-shadow: 3px 3px 5px rgba(39, 50, 77, 0.5); /* Stronger shadow for clarity */
  
  /* Background gradient with red color shade */
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) rgb(255, 255, 255));

  /* More opaque semi-transparent background with a red color shade */
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.6); /* Darker red background with opacity */
  border-radius: 10px;
  
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.9); /* Slightly stronger shadow */
  
  /* Animations */
  animation: fadeSlide 3s ease-in-out infinite alternate, glow 1.5s ease-in-out infinite;
}


/* Glowing animation for extra visibility */
@keyframes glow {
  0% {
    text-shadow: 3px 3px 10px rgba(245, 0, 0, 0.8);
  }
  100% {
    text-shadow: 3px 3px 20px rgb(236, 7, 7);
  }
}

  

/* Assign each slide an animation */
#slide1 .text_section {
  animation: slide_text 12s infinite ease-in-out;
}

#slide2 .text_section {
  animation: slide_text2 12s infinite ease-in-out;
}

#slide3 .text_section {
  animation: slide_text3 12s infinite ease-in-out;
}

.text_section h2, .text_section p {
  margin: 0;
}

/* Responsive adjustments for all screen sizes */
@media (max-width: 1200px) {
  .hero_area::before {
    background-size: cover;
  }
  .text_section {
    font-size: 2.5rem;
    margin-left: -180px;
  }
}

@media (max-width: 768px) {
  .hero_area::before {
    background-size: cover;
  }
  .text_section {
    font-size: 2rem;
   
  }
}

@media (max-width: 480px) {
  .hero_area::before {
    background-size: cover;
  }
  .text_section {
    font-size: 1.5rem;
    margin-left: -180px;
    margin-top:-100px;
    transform: translate(-50%, -50%);
  }
}




.sub_page .hero_area {
  height: auto;
}

.sub_page .header_section .header_bottom {
  background-color: rgb(39, 50, 77) !important;
}

.header_section {
  border-bottom: 15px thick #da2626;
}
.header-border {
  width: 100%;
  height: 10px;
  background-color: #da2626;
}

.header_section .header_top {
  padding: 1px 0;
  background-color: #1e1e28 !important;
}

.header_section .header_top .header_top_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_section .header_top .contact_nav {
  display: flex;
  flex: 1;
  font-size: 18px;
  gap: 0px; /* Adds spacing between contact items */
}

.header_section .header_top .contact_nav a {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
  gap: 10px; /* Adds space between icon and text */
  flex: 1;
}

/* Icon Styles */
.header_section .header_top .contact_nav a i {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

/* Individual Icon Colors */
.header_section .header_top .contact_nav a.phone i {
  background-color: #25D366; /* WhatsApp-style Green for phone icons */
}
.header_section .header_top .contact_nav a.phone:hover i {
  background-color: #1EBE57; /* Darker Green on hover */
}

.header_section .header_top .contact_nav a.hotline i {
  background-color: #d32525; /* Orange-yellow for Hotline */
}
.header_section .header_top .contact_nav a.hotline:hover i {
  background-color: #be1e1e; /* Darker Orange on hover */
}

.header_section .header_top .contact_nav a.email i {
  background-color: #3498db; /* Soft Blue for Email */
}
.header_section .header_top .contact_nav a.email:hover i {
  background-color: #2980b9; /* Darker Blue on hover */
}

.header_section .header_top .social_box {
  display: flex;
  gap: 10px; /* Adds spacing between icons */
}

.header_section .header_top .social_box a i {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff; /* White icon color */
  border-radius: 50%; /* Circular shape */
  transition: background-color 0.3s ease, background 0.3s ease; /* Smooth transition on hover */
}

/* Social Media Colors */
.header_section .header_top .social_box a.facebook i {
  background-color: #3b5998; /* Facebook Blue */
}
.header_section .header_top .social_box a.youtube i {
  background-color: #ff0000; /* YouTube Red */
}
.header_section .header_top .social_box a.linkedin i {
  background-color: #0e76a8; /* LinkedIn Blue */
}
.header_section .header_top .social_box a.instagram i {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  ); /* Instagram Gradient */
}
.header_section .header_top .social_box a.instagram:hover i {
  background: linear-gradient(
    45deg,
    #bc1888 0%,
    #cc2366 25%,
    #dc2743 50%,
    #e6683c 75%,
    #f09433 100%
  ); /* Hover Effect */
}

/* Hover Effects for Other Icons */
.header_section .header_top .social_box a.facebook:hover i {
  background-color: #2d4373;
}
.header_section .header_top .social_box a.youtube:hover i {
  background-color: #cc0000;
}
.header_section .header_top .social_box a.linkedin:hover i {
  background-color: #0a66c2;
}

.header_section .header_bottom {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px 0;
}

.header_section .header_bottom .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand {
  color: #ffffff;
  font-weight: bold;
  font-size: 24px;
}

.navbar-brand span {
  color: #da2626;
}

.navbar-brand:hover {
  color: inherit;
}

.navbar_brand_mobile {
  display: none;
}
/* Define the ash color */
:root {
  --ash-color:#383434;
}

/* Media query for typical mobile screen sizes */
@media (max-width: 991px) {
  .header_bottom {
    background-color: var(--ash-color) !important; /* Use !important to override any conflicting styles */
  }
}


.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 30px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  font-size: 15px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-nav .nav-item .nav-link i {
  margin-right: 5px;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link {
  color: #da2626;
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #ffffff;
}

.custom_nav-container .nav_search-btn:hover {
  color: #da2626;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
  display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
  -webkit-transform: none;
          transform: none;
}




/* Slider Section */
.slider_section {
  display: flex;
  overflow: hidden;
  position: absolute; /* Absolute positioning for bottom-left corner */
  left: 0;  /* Align to the left */
  bottom: -20px; /* Align to the bottom */
  width: auto;
  height: 1000px;
  
  box-shadow: transparent; /* Subtle shadow */
  z-index: 1000;
  animation: fadeIn 1.5s ease-in-out; /* Fade-in animation */

}

.slider_section .row {
  align-items: flex-end;
  display: flex;
  width: 90%;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: -100px; /* Adds top margin to create space between the carousel item and the detail box */
}

.slider_section #customCarousel1 {
  flex: 1;
  max-width: 30%;
  margin-top: -100px; /* Adds top margin to create space between the carousel item and the detail box */
  
}.slider_section .detail-box {
  flex: 1;
  max-width: 100%;
  padding: 30px 15px; /* Added padding for spacing */
  z-index: 2;  
  height: 100px;
  color: #fff;
  border-radius: 10px;
  box-shadow: transparent; /* You can also remove this if no shadow is desired */
  opacity: 0; /* Start with opacity 0 */
  animation: slideInFromTop 1.5s ease-in-out forwards; /* Slide in from top */
  transition: opacity 0.5s ease, transform 0.5s ease;
  margin-top: -100px; /* Adds top margin to create space between the carousel item and the detail box */
  background: none; /* Ensures no background color */
}


.slider_section .detail-box h1,
.slider_section .detail-box h2 {
  font-weight: 600;
  margin-bottom: 0;
  color: #fff;
  font-size: 2rem;
}

.slider_section .detail-box h2 {
  color: #000000;
  font-size: 25px;
}

.slider_section .detail-box p {
  color: #d1d1d1;
  font-size: 1.2rem;
  line-height: 1.5;
}

.slider_section .detail-box:hover h1,
.slider_section .detail-box:hover h2,
.slider_section .detail-box:hover p {
  color: #ffffff;
}

.slider_section .detail-box .btn-box {
  display: flex;
  justify-content: flex-start; /* Align buttons to the left */
  gap: 10px; /* Add space between buttons */
  margin-bottom: -100px; /* Adds space above the button box */
}

.slider_section .detail-box .btn-box .btn1,
.slider_section .detail-box .btn-box .btn2 {
  margin: 5px;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.slider_section .detail-box .btn1 {
  background-color: #000000;
  color: transparent;
  border: 1px solid #ffffff;
}

.slider_section .detail-box .btn1:hover {
  background-color: transparent;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider_section .detail-box .btn2 {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #000000;
}

.slider_section .detail-box .btn2:hover {
  background-color: transparent;
  color: #000000;
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
}

.slider_section .carousel_btn-box {
  position: absolute;
  right: 25px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  z-index: 5;
}

.slider_section .carousel_btn-box a {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 100%;
  color: #383434;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.slider_section .carousel_btn-box a:hover {
  background-color: #383434;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  transform: scale(1.1);
}

/* Animations */
@keyframes slideInFromTop {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Media Queries */

/* Medium screens (tablets) */
@media only screen and (max-width: 1024px) {
  .slider_section {
    display: flex;
    overflow: hidden;
    position: absolute; /* Absolute positioning for bottom-left corner */
    left: 0;  /* Align to the left */
    bottom: -80px; /* Align to the bottom */
    width: auto;
    height: auto;
    background-color: transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0); /* Subtle shadow */
    z-index: 1000;
    animation: fadeIn 1.5s ease-in-out; /* Fade-in animation */
  
  }

  .slider_section .detail-box {
    max-width: 100%;
    padding: 10px;
  }

  .slider_section .detail-box h1,
  .slider_section .detail-box h2 {
    font-size: 1.5rem;
  }

  .slider_section .detail-box p {
    font-size: 1rem;
  }

  .slider_section .carousel_btn-box {
    right: 15px;
    bottom: 15px;
  }
}

/* Small screens (phones) */
@media only screen and (max-width: 768px) {
  .slider_section {
   display: flex;
    overflow: hidden;
    position: absolute; /* Absolute positioning for bottom-left corner */
    left: 0;  /* Align to the left */
    bottom: -120px; /* Align to the bottom */
    width: auto;
    height: 500px;
    background-color: transparent;
    box-shadow: transparent; /* Subtle shadow */
    z-index: 1000;
    animation: fadeIn 1.5s ease-in-out; /* Fade-in animation */
  
  }

  .slider_section .detail-box {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.9);
    margin-bottom: 20px;
  }

  .slider_section .btn-box {
    justify-content: flex-start; /* Align buttons to the left */
    gap: 5px;
  }

  .slider_section .carousel_btn-box {
    right: 10px;
    bottom: 10px;
  }
}

/* Extra small screens (mobile phones) */
@media only screen and (max-width: 480px) {
  .slider_section {
    padding: 5px;
    left: -100px; /* Keep it aligned to the left */
    height: 20%;
    bottom: -20px; /* Align to the bottom */
  }

  .slider_section .detail-box {
    padding: 10px;
    margin-top: 0;
    height: 20%; 
  }

  .slider_section .btn-box {
    justify-content: flex-start; /* Align buttons to the left */
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
  }

  .slider_section .btn-box .btn1,
  .slider_section .btn-box .btn2 {
    padding: 10px 15px; /* Smaller buttons */
    font-size: 0.9rem;
  }

  .slider_section .carousel_btn-box a {
    width: 40px;
    height: 40px;
  }
}


/*Our Approach*/
.approach_section {
  background-color: #000000;
  background: linear-gradient(135deg, #000000, #000000);
  text-align: center;
  margin-top: 1px;
  padding: 0px 0;
  position: relative;
  overflow: hidden;
  border-top: 2px solid #bd0c0c;
  border-bottom: 2px solid #bd0c0c;
}

.approach_section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
  animation: moveGradient 10s infinite alternate;
}

.approach_section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
  animation: moveGradient 10s infinite alternate-reverse;
}

@keyframes moveGradient {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(30px) translateY(30px); }
}

.approach_section h2 {
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: 44px;
  color: #bd0c0c;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1.5px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  padding: 10px 20px;
  display: inline-block;
}

.approach_section p {
  margin-bottom: 40px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
  position: relative;
  z-index: 2;
}

.approach_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.approach_item {
  display: flex;
  align-items: center;
  background-color: transparent;
  padding: 30px;
  width: 120%; /* Adjusted width for larger cards */
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 350px; /* Set a fixed height for all cards */
  transition: all 0.3s ease;
}

.approach_item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
  background-color:transparent;
}

.approach_item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #bd0c0c, #ff3f3f);
  z-index: 1;
}

.approach_item img {
  max-width: 350px; /* Ensures uniform image size */
  height: 220px; /* Fixed height for images */
  border-radius: 10px;
  margin-right: 25px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.approach_item:hover img {
  transform: scale(1.08);
  opacity: 0.9;
}

.approach_item .detail-box {
  text-align: left;
  flex-grow: 1;
  z-index: 2;
}

.approach_item.alternate {
  flex-direction: row-reverse;
}

.approach_item.alternate img {
  margin-left: 25px;
  margin-right: 0;
}

.approach_item h5 {
  margin-bottom: 15px;
  font-size: 36px;
  font-weight: 600;
  color: #bd0c0c;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.approach_item:hover h5 {
  color: #ff3f3f;
}

.approach_item p {
  font-size: 20px;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
  position: relative;
  z-index: 2;
}

.approach_item a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  background-color: #bd0c0c;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-weight: 600;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.approach_item a:hover {
  background-color: #ff3f3f;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .approach_item,
  .approach_item.alternate {
    flex-direction: column;
    text-align: center;
    width: 90%;
  }
  
  .approach_item img,
  .approach_item.alternate img {
    margin: 0 0 20px 0;
  }

  .approach_item .detail-box,
  .approach_item.alternate .detail-box {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .approach_item ,
  .approach_item.alternate{
    width: 95%;
  }
  
  .approach_section h2 {
    font-size: 36px;
  }

  .approach_section p {
    font-size: 18px;
  }
  
  .approach_item xxxuuh5,
  .approach_item.alternate h5 {
    font-size: 26px;
  }

  .approach_item p,
  .approach_item.alternate p {
    font-size: 16px;
  }

  .approach_item a ,
  .approach_item.alternate a{
    font-size: 14px;
    padding: 8px 16px;
  }
}

/*end */



.section-excellence_COMIT {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  max-width: 1500px; /* Adjust the width as needed */
}

.approach-item_COMIT {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ada9a9;
  margin-top: 10px;
  margin-bottom: 10px;
  max-width: 1500px;
}

.img-box_COMIT {
  margin-bottom: 20px;
}

.img-box_COMIT img {
  max-width: 100%;
  height: auto;
}

.detail-box_COMIT {
  max-width: 800px; /* Adjust the width as needed */
}








.partner_section {
  padding: 20px 40px;
  border: 0.1px thick rgb(0, 0, 0);
  text-align: left;
  background-color:#ffffff;
}

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

.partner_content h1 {
  width: 60%;
  font-size: 34px;
  line-height: 1.5;
  color: #000000;
  margin-left: 150px;
}

.video_container {
  width: 35%;
  margin-right: 100px;
}

.video_container iframe {
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
  .partner_content {
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center-align items */
    text-align: center; /* Center-align text */
  }

  .partner_content h1 {
    width: 100%; /* Full width on mobile */
    font-size: 24px; /* Smaller font size */
    margin-left: 0; /* Remove left margin */
    margin-bottom: 20px; /* Add space below the text */
  }

  .video_container {
    width: 100%; /* Full width on mobile */
    margin-right: 0; /* Remove right margin */
  }

  .video_container iframe {
    height: 240px; /* Increase height for better visibility */
  }
}



.experience_section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: url('images/p4.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 0px 20px;
}

.experience_item {
  text-align: center;
}

.experience_item h3 {
  font-size: 36px;
  margin: 0;
}

.experience_item p {
  margin: 5px 0 0;
  font-size: 18px;
}











.about_section {
  padding: 20px;
  background-color: #000000;
}

.about_section .row {
  align-items: center;
  height: 500px;
  width: 1300px;
  background-color: #b3b3b3;
  margin-left: -100px;
  display: flex; /* Ensure items are centered */
  flex-direction: row; /* Align items horizontally */
}

.about_section .img-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 10px;
}

.about_section .img-box img {
  width: 80%;
  height: auto;
  position: relative;
  z-index: 5;
}

.about_section .detail-box {
  margin-left: 50px;
}

.about_section .detail-box p {
  color: #1f1f1f;
  margin-top: 15px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 25px;
  background-color: #da2626;
  color: #ffffff;
  border-radius: 0;
  transition: all .3s;
  border: 1px solid #da2626;
  margin-top: 8px;
}

.about_section .detail-box a:hover {
  background-color: transparent;
  color: #da2626;
}

/* Media Query for Mobile View */
@media (max-width: 767px) {
  .about_section .row {
    width: 120%;
    height: 450px;
    margin-left: -10%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about_section .img-box {
    display: none; /* Hide image on mobile screens */ 
  }

  .about_section .detail-box {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
    max-width: 600px;
  }
}


.portfolio_section {
  background-color: #000000;
  margin-top: 0px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  align-items: center;
  color: #ffffff;
  padding: 20px 0;
  font-size: 0px;
  font-family: 'Montserrat', sans-serif; /* Apply font to this section only */
}
.portfolio_section h4{
  color: #ffffff;
}
.heading_container {
  text-align: center;
  margin-bottom: 35px;
  animation: fadeInDown 1s ease-in-out; /* Animation for heading */
}
.portfolio_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 80%; /* Adjusts the width of the container */
  margin: 0 auto; /* Centers the container horizontally */
 
}


.item {
  background-color: #e0e0e0; /* Maintained the original ash background */
  padding: 20px;
  margin: 10px;
  border-radius: 8px;
  width: 100%;
  position: relative;
  transition: transform 0.3s, opacity 0.5s; /* Smooth transition */
  opacity: 0; /* Initially hidden */
  transform: translateY(20px); /* Initially moved down */
  will-change: opacity, transform; /* Optimize for animations */
  overflow: hidden; /* Ensure no overflow from children */
}

.item.in-view {
  opacity: 1; /* Fully visible */
  transform: translateY(0); /* No vertical movement */
}

.img-box {
  position: relative; /* For ripple effect */
}

.img-box img {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  transition: transform 0.3s;
  display: block; /* Ensure it takes full space */
}

.img-box img:hover {
  transform: scale(1.05); /* Hover effect for images */
}

/* Ripple Effect on Image Hover */
.img-box::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.img-box:hover::after {
  width: 300px;
  height: 300px;
}

.text-box {
  text-align: center;
  margin-top: 15px;
  position: relative;
}

.text-box h5 {
  font-size: 26px;
  color: #bd0c0c; /* Maintain red color */
  font-weight: bold;
  margin-bottom: 10px;
  transition: color 0.3s, text-shadow 0.3s; /* Smooth transition for text */
}

.text-box p {
  font-size: 18px;
  color: #333333; /* Dark gray color for text */
   
  transition: color 0.3s;
}

/* Box Hover Elevation */
.item:hover {
  transform: translateY(-5px) scale(1.02); /* Slight elevation on hover */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.text-box h5:hover {
  color: #f72b2b; /* Change to a golden color on hover */
  text-shadow: 0 0 5px rgba(247, 43, 43, 0.5); /* Add subtle glow effect */
}


/* New Animation: Fade and Scale */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .portfolio_items {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .portfolio_items {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .portfolio_items {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
  }
}






.clients_section {
  text-align: center;
  padding: 0 15px;
  position: relative;
  
}

.clients_section h1 {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
}

.clients_section .carousel-inner{
  display: flex;
  flex-direction: row; /* Horizontal layout for larger screens */
}

.clients_section .carousel-item {
  display: none; /* Hide all items initially */
}

.clients_section .carousel-item.active {
  display: block; /* Show only the active item */
}

.clients_section .row {
  display: flex;
  flex-direction: row; /* Horizontal layout for larger screens */
  justify-content: center; /* Center images horizontally */
  width: 80%;
  margin-left: 180px;
}

.clients_section .col-3 {
  padding: 15px;
  width: 25%; /* Each item takes up 25% of the row */
}

.clients_section img {
  border: 2px solid #da2626;
  padding: 5px;
  width: 80%; /* Ensure image takes full width of the column */
  height: 80%; /* Maintain aspect ratio */
  background: #fff;
  border-radius: 10px;
  
}

/* Carousel Controls */
.clients_section .carousel-control-prev,
.clients_section .carousel-control-next {
  color: #fff;
  background-color: #da2626; /* Red background for visibility */
  border-radius: 50%; /* Make the buttons circular */
  padding: 2px;
  height: 30px;
  width: 30px;
  margin-top: 120px;
}

.clients_section .carousel-control-prev-icon,
.clients_section .carousel-control-next-icon {
  background-color: #fff; /* White background for the icon */
  border-radius: 50%;
}
/* Media Query for Mobile View */
@media (max-width: 768px) { 
  .clients_section .carousel-inner{ 
    display: block; /* Stack items vertically on mobile */
    
  }

  .clients_section .carousel-item { 
    display: block; /* Show only one item at a time */
  }

  .clients_section .row { 
    flex-direction: column; /* Stack items vertically on mobile */
    width: 100%; /* Full width of carousel item */
    margin-left: 60px;
    margin-bottom: 50px;
    
  }

  .clients_section .col-3 { 
    width: 100%; /* Full width on mobile screens */
    margin-bottom: 15px; /* Add spacing between images */
  }
}
/* Media Query for Mobile View */
@media (max-width: 768px) { 
  .clients_section .carousel-inner{
    display: block; /* Stack items vertically on mobile */
  }

  .clients_section .carousel-item {
    display: none; /* Hide all items initially */
  }

  .clients_section .carousel-item.active {
    display: block; /* Show only the active item */
  }

  .clients_section .row {
    flex-direction: column; /* Stack items vertically on mobile */
    width: 100%; /* Full width of carousel item */
    margin: 0; /* Remove margins */
    padding: 0; /* Remove padding */
    margin-left: 60px;
  }

  .clients_section .col-3 {
    width: 100%; /* Full width on mobile screens */
    margin-bottom: 15px; /* Add spacing between images */
    padding: 5px; /* Add padding for better spacing */
    margin-left: 100px;
  }

  .clients_section img {
    width: 100%; /* Ensure image takes full width of the column */
    height: 80px; /* Maintain aspect ratio */
  }

  .clients_section .carousel-control-prev,
  .clients_section .carousel-control-next {
    height: 30px; /* Smaller size for mobile */
    width: 30px; /* Smaller size for mobile */
    margin-top:200px;
  }
}




.portfolio_items_A {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  margin: 10px;
  font-family: 'Montserrat', sans-serif;
  flex-wrap: wrap; /* Add this to allow wrapping of items */
}

.item_p {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  margin: 10px;
  width: calc(33.333% - 20px); /* Adjust width for desktop view */
}

.box_P {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px;
  font-family: 'Montserrat', sans-serif;
  width: 100%; /* Adjust width for consistency */
  height: 350px;
}
.box_P p{
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
}

.pic_image_P {
  margin: 10px 0;
}

.text-box_m {
  text-align: center;
  margin-bottom: 10px;
  
}

.text-box_p {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.side-space_P {
  margin-left: 20px;
}

/* Media Query for mobile screens */
@media screen and (max-width: 768px) {
  .item_p {
    width: 100%; /* Take full width on mobile screens */
    margin: 10px 0; /* Adjust margin for mobile view */
  }

  .portfolio_items_A {
    flex-direction: column; /* Stack items vertically */
    justify-content: center;
  }
}









.services_section {
  background: linear-gradient(135deg, #383434, #4a4a4a);
  text-align: center;
  padding: 60px 20px;
  border-top: 8px solid #f4e7e7; /* Add a top border for a more defined look */
}

.services_section h2 {
  margin-bottom: 20px;
  font-size: 42px;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 2px; /* Adds spacing between letters for a modern touch */
  position: relative; /* Required for pseudo-element */
}

.services_section h2::after {
  content: '';
  display: block;
  width: 250px;
  height: 4px;
  background: #f4e7e7;
  margin: 10px auto 0; /* Centers the line */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.services_section h4 {
  margin-bottom: 30px;
  font-size: 18px;
  color: #f0f0f0;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.services_section p {
  margin-bottom: 40px;
  font-size: 18px;
  color: #e0e0e0;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.services_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: space-around;
  padding: 20px; /* Additional padding for spacing */
}


.service_item {
  background: #fff;
  background: linear-gradient(to top, #f4e7e7 0%, #f9f9f9 100%);
  padding: 25px;
  margin: 10px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; /* For the absolute-positioned decorative element */
  overflow: hidden; /* Ensures no overflow of the decorative element */
}

.service_item::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: scale(0.5);
  transition: transform 0.3s ease;
}

.service_item:hover::before {
  transform: scale(2);
}

.service_item:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.service_item img {
  
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.service_item img:hover {
  transform: scale(1.1); /* Slightly enlarges the image on hover */
}

.service_item h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 500;
  color: #3b3b3b;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px; /* Adds a modern touch */
}

.service_item p {
  font-size: 16px;
  color: #422121;
  line-height: 1.5;
  font-family: 'Open Sans', sans-serif;
}

.service_item .button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #3b3b3b;
  color: #fff;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.service_item .button:hover {
  background-color: #6e6e6e;
}



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

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

  .services_section h2 {
    font-size: 32px;
  }
}

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

  .services_section h2 {
    font-size: 28px;
  }
  .services_section h3 {
    margin-left: 10px;
  }

  .service_item {
    padding: 20px;
  }
}

/*
.contact_section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.contact_section .heading_container {
  margin-bottom: 45px;
}

.contact_section .form_container {
  background-color: #898484 !important;
  padding: 45px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.15);
}

.contact_section .form_container .form-control {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 15px;
  padding-left: 50px;
  outline: none;
  color: #101010;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.15);
  border-radius: 0;
}

.contact_section .form_container .form-control::-webkit-input-placeholder {
  color: #565554;
}

.contact_section .form_container .form-control:-ms-input-placeholder {
  color: #565554;
}

.contact_section .form_container .form-control::-ms-input-placeholder {
  color: #565554;
}

.contact_section .form_container .form-control::placeholder {
  color: #565554;
}

.contact_section .form_container .form-control.message-box {
  height: 95px;
}

.contact_section .form_container .btn_box {
  display: flex;
  justify-content: center;
}

.contact_section .form_container .btn_box button {
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 55px;
  background-color: #da2626;
  color: #ffffff;
  border-radius: 0px;
  transition: all .3s;
  border: 1px solid #da2626;
}

.contact_section .form_container .btn_box button:hover {
  background-color: transparent;
  color: #da2626;
}
*/
@media (max-width: 768px) {
  .contact_section .form_container {
    background-color: #898484 !important;
  }
}





/*new section */
.services_section {
  max-width: 1500px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.services_section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ffffff;
}

.services_section h4 {
  text-align: center;
  font-size: 1.4rem;
  color: #f4e7e7;
  margin-bottom: 40px;
}

.services_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  grid-template-rows: repeat(2, 1fr); /* 2 rows */
  gap: 20px; /* Gap between items */
}

.service_item {
  background-color: #f4e7e7;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service_item img {
  
  margin-bottom: 10px;
}

@media (max-width: 1200px) {
  .services_container {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on smaller screens */
  }
}

@media (max-width: 768px) {
  .services_container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on even smaller screens */
  }
}

@media (max-width: 480px) {
  .services_container {
    grid-template-columns: 1fr; /* 1 column on the smallest screens */
  }
}
/* styles.css */









/* info section */
.info_section {
  position: relative;
  background-color: #252525;
  color: #ffffff;
}

.info_section h5 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
}

.info_section .info_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 45px;
}

.info_section .info_logo .navbar-brand {
  font-size: 28px;
}

.info_section .social_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info_section .social_box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  width: 30px;
  height: 30px;
  background-color: #da2626;
  border-radius: 100%;
  margin-right: 5px;
}

.info_section p {
  margin-bottom: 0;
  color: #878585;
}

.info_section a {
  text-transform: none;
}

.info_section ul {
  padding: 0;
}

.info_section ul li {
  list-style-type: none;
  margin: 3px 0;
}

.info_section ul li a {
  color: #878585;
}

.info_section .info_link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.info_section .info_bottom .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info_section .info_contact {
  margin: 15px 0;
}

.info_section .info_contact .link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px 0;
  color: #ffffff;
}

.info_section .info_contact .link-box i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 1px solid #da2626;
  text-align: center;
  border-radius: 5px;
  font-size: 18px;
  margin-right: 10px;
}

.info_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info_form form input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 45px;
  border: none;
  padding-left: 10px;
}

.info_form form button {
  width: 45px;
  height: 45px;
  background-color:#da2626 ;
  color: #ffffff;
  border: none;
  outline: none;
  font-size: 12px;
  margin: 0;
}
/* slider section */
.slider_section {
  display: flex;
  align-items: center;
  padding: 20px;
  overflow: hidden;
  position: relative;
  background-color: transparent;
}

.slider_section .dot_design {
  position: absolute;
  width: 50%; /* Make dot design cover the entire width */
  height: 100px;
  right: 0;
  bottom: 0;
  transform: translateY(50%);
  z-index: 1;
}

.slider_section .dot_design img {
  width: 50%;
}

.slider_section .row {
  align-items: center;
  display: flex;
  width: 50%;
  justify-content: space-between;
  flex-wrap: wrap;
}

.slider_section #customCarousel1 {
  width: 35%;
  position: unset;
  margin-top: 300px;
  height: auto; /* Adjust height automatically */
}

.slider_section .detail-box {
  max-width: 90%; /* Adjust max-width */
  margin-left: 0; /* Remove left margin */
  padding: 10px; /* Adjust padding */
  margin-top: -30px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  flex: 1; /* Allow detail box to flex */
}

.slider_section .detail-box h1, .slider_section .detail-box h2 {
  font-weight: 600;
  margin-bottom: 0;
  margin-left: 20px;
  color: #fff;
  font-size: 2.0rem; /* Increase font size */
  line-height: 1.2;
}

.slider_section .detail-box h2 {
  color: #d00000;
  font-size: 25px;
  margin-left: 20px;
}

.slider_section .detail-box p {
  color: #d1d1d1;
  font-size: 1.2rem; /* Increase font size */
  line-height: 1.5;
}

.slider_section .detail-box .btn-box {
  display: flex;
  margin: 0 -5px;
  margin-top: 25px; /* Adjust margin-top */
  flex-wrap: wrap;
  justify-content: center;
  margin-left: 0px;
}

.slider_section .detail-box .btn-box a {
  margin: 5px;
  text-align: center;
  width: 150px; /* Adjust width */
  display: inline-block;
  text-decoration: none;
}

.slider_section .detail-box .btn-box .btn1, .slider_section .detail-box .btn-box .btn2 {
  display: inline-block;
  padding: 12px 20px; /* Increase padding */
  border-radius: 0;
  transition: all .3s;
  font-weight: bold;
  font-size: 1rem; /* Increase font size */
}

.slider_section .detail-box .btn-box .btn1 {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
}

.slider_section .detail-box .btn-box .btn1:hover {
  background-color: transparent;
  color: #ffffff;
}

.slider_section .detail-box .btn-box .btn2 {
  background-color: #da2626;
  color: #ffffff;
  border: 1px solid #da2626;
}

.slider_section .detail-box .btn-box .btn2:hover {
  background-color: transparent;
  color: #da2626;
}

.slider_section .img-box {
  max-width: 100%;
  overflow: hidden;
  flex: 1; /* Allow image box to flex */
}

.slider_section .img-box img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.slider_section .carousel_btn-box {
  position: absolute;
  right: 25px; /* Keep original position */
  bottom: 0; /* Keep original position */
  display: flex;
  justify-content: space-between;
  width: 105px; /* Keep original width */
  height: 50px; /* Keep original height */
  transform: translateY(-10%);
  z-index: 5;
  margin-bottom: 30px; /* Keep original margin */
}

.slider_section .carousel_btn-box a {
  position: unset;
  width: 50px; /* Keep original width */
  height: 50px; /* Keep original height */
  background-color: #ffffff;
  opacity: 1;
  border-radius: 100%;
  color: #383434;
  font-size: 16px; /* Increase font size */
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  transition: all .2s;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.slider_section .carousel_btn-box a:hover {
  background-color: #383434;
  color: #ffffff;
}

.slider_section .carousel-control-prev {
  left: -40px; /* Keep original position */
}

.slider_section .carousel-control-next {
  right: -40px; /* Keep original position */
}

.slider_section .carousel-control-prev:hover, .slider_section .carousel-control-next:hover {
  color: #fff;
}

/* Responsive styles */
@media only screen and (max-width: 1024px) {
  .slider_section #customCarousel1 {
    max-width: 100%; /* Adjust to full width on medium screens */
    margin-top: 100px; /* Adjust top margin */
  }

  .slider_section .detail-box {
    max-width: 85%; /* Adjust max-width */
  }

  .slider_section .detail-box h1, .slider_section .detail-box h2 {
    font-size: 2rem; /* Increase font size */
  }

  .slider_section .carousel_btn-box {
    right: 15px; /* Keep original position */
  }

  .slider_section .detail-box .btn-box {
    margin-left: 0; /* Align buttons properly */
  }
}

@media only screen and (max-width: 768px) {
  .slider_section #customCarousel1 {
    max-width: 100%; /* Full width on smaller screens */
    margin-top: 70px; /* Adjust top margin */
  }

  .slider_section .detail-box {
    margin: 0; /* Remove left margin */
    padding: 10px; /* Adjust padding */
    text-align: center;
    max-width: 100%; /* Full width on small screens */
  }

  .slider_section .detail-box h1, .slider_section .detail-box h2 {
    font-size: 24px; /* Adjust font size */
    padding: 10px 0;
  }

  .slider_section .detail-box .btn-box {
    margin-top: 10px; /* Adjust margin-top */
  }

  .slider_section .detail-box .btn-box a {
    margin: 5px;
    padding: 12px 20px; /* Increase padding */
    font-size: 16px; /* Increase font size */
  }

  .slider_section #customCarousel1 {
    height: auto; /* Auto height for small screens */
  }

  .slider_section .carousel_btn-box {
    right: 10px; /* Keep original position */
  }
}

@media only screen and (max-width: 480px) {
  .slider_section #customCarousel1 {
    max-width: 80%; /* Increased width on extra small screens */
    margin-left: 20%; /* Adjust the margin for better alignment */
    margin-top: 300px; /* Adjust top margin */
  }

  .slider_section .detail-box {
    padding: 15px; /* Adjust padding */
    max-width: 100%; /* Ensure proper fit on small screens */
   
  }

  .slider_section .detail-box h1, .slider_section .detail-box h2 {
    font-size: 18px; /* Adjust font size */
    margin: 0; /* Remove margins */
    margin-left: 20px;
  }

  .slider_section .detail-box .btn-box {
    margin-top: 10px; /* Adjust button top margin */
    justify-content: center; /* Align buttons in the center */
    margin-left: 18%;
    max-width: 60%;
  }

  .slider_section .detail-box .btn-box a {
    width: 100%; /* Full width buttons */
    margin: 5px 0; /* Stack buttons vertically */
    padding: 10px; /* Increase padding */
    font-size: 16px; /* Adjust font size */
  }

 
}


/*# sourceMappingURL=style.css.map */

.aboutbody {
  display: flex;
  flex-direction: row; /* Make left and right content align horizontally */
  background: linear-gradient(300deg, #535353, #dedede);
  color: rgb(0, 0, 0);
  padding: 20px;
}

.left-content {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align to the start */
  text-align: left;
  width: 30%; /* Keep as part of horizontal alignment */
}

.left-content h1 {
  color: rgb(255, 0, 0);
  font-weight: bold;
  margin: 0;
}

.right-content {
  text-align: left;
  width: 70%; /* Use remaining space */
  margin-left: 20px; /* Slight spacing from the left-content */
}

.right-content h4 {
  font-weight: 600;
  color: #000000;
}

.right-content p {
  font-weight: 500;
  font-size: 18px;
}

.with-padding {
  padding: 20px;
}

/* Media queries for responsiveness */
@media (min-width: 768px) {
  .aboutbody {
    flex-direction: row;
  }

  .left-content {
    width: 30%; /* Left content stays smaller */
    text-align: left;
  }

  .right-content {
    width: 70%;
    padding-left: 20px;
    padding-right: 40px;
  }
}

@media (max-width: 767px) {
  .aboutbody {
    flex-direction: column;
  }

  .left-content {
    width: 100%; /* Full width for smaller screens */
    text-align: center;
    margin-bottom: 20px;
  }

  .right-content {
    width: 100%;
    margin-left: 0;
  }
}










/* General styling for the counter section */
#section-counter {
  background-color: rgb(219, 17, 17); /* Added background color */
  background-size: cover;
  background-attachment: fixed;
  padding: 50px 0; /* Equal padding for top and bottom */
  position: relative;
  z-index: 0;
  color: #fff;
  text-align: center;
  
}

/* Ensuring the container has a proper z-index */
#section-counter .container {
  position: relative;
  z-index: 2;
}

/* Styling for the individual counter columns */
.counter-wrap {
  margin-bottom: 30px;
  margin-top: 30px;
}

.block-18 {
  width: 250px; /* Fixed width for uniform size */
  height: 250px; /* Fixed height for uniform size */
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

.block-18:hover {
  transform: translateY(-10px); /* Lift effect on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

/* Styling for the number */
.block-18 .number {
  font-size: 50px; /* Larger font size for emphasis */
  font-weight: bold;
  margin-right: 5px;
  line-height: 1;
}

/* Styling for the plus symbol */
.block-18 .plus {
  font-size: 30px; /* Smaller font size for plus symbol */
  margin-top: -10px; /* Adjust alignment */
}

/* Styling for the description text */
.block-18 .text-2 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
  text-transform: uppercase;
  text-align: center; /* Center align the text */
  line-height: 1.4; /* Improved line spacing */
}

/* Animation styling */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translate3d(0, 40px, 0);
  }
  to {
      opacity: 1;
      transform: none;
  }
}

.ftco-animate {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
}

.ftco-animated {
  opacity: 1;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
  .block-18 {
      width: 160px; /* Reduced width for smaller screens */
      height: 160px; /* Reduced height for smaller screens */
      padding: 20px;
  }

  .block-18 .number {
      font-size: 30px; /* Adjust font size for smaller screens */
  }

  .block-18 .plus {
      font-size: 20px; /* Adjust font size for plus symbol */
  }

  .block-18 .text-2 {
      font-size: 16px; /* Adjust font size for smaller screens */
  }
}

@media (max-width: 480px) {
  #section-counter {
    padding: 40px 0; /* Smaller padding for very small screens */
  }
}






 /* Container for the WhatsApp chat button */
 #whatsapp_chat_widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

#wa-widget-send-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  border-radius: 50px;
  width: 200px;
  height: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: white;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
}

#wa-widget-send-button svg {
  margin-right: 10px;
}

#wa-widget-send-button .whatsapp {
  fill: white;
}

.wa-chat-box {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 300px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1001;
}

.wa-chat-box-header {
  display: flex;
  align-items: center;
  padding: 10px;
  background: #25D366;
  color: white;
  border-radius: 8px 8px 0 0;
}

.wa-chat-box-header img.wa-chat-box-brand {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.wa-chat-box-brand-text {
  flex: 1;
}

.wa-chat-box-content {
  padding: 10px;
}

.wa-chat-box-content-chat {
  margin-bottom: 10px;
}

.wa-chat-box-content-chat-welcome {
  font-size: 14px;
  margin-bottom: 5px;
}

.wa-chat-box-content-chat-time {
  font-size: 12px;
  color: #888;
}

.wa-chat-box-send {
  display: flex;
  align-items: center;
  padding: 10px;
  background: #f5f5f5;
  border-radius: 0 0 8px 8px;
}

.wa-chat-box-content-send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  border: none;
  border-radius: 25px;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
}

.wa-chat-box-content-send-btn svg {
  margin-right: 5px;
}

.wa-chat-box-content-send-btn .whatsapp {
  fill: white;
}

.wa-chat-box-poweredby {
  font-size: 10px;
  color: #888;
  text-align: center;
  margin-top: 5px;
}

.wa-chat-box-poweredby a {
  color: #25D366;
  text-decoration: none;
}




/* Footer Section */
.footer_section {
  background-color: #000; /* Black background */
  color: #fff; /* White text */
  padding: 20px 0; /* Padding for spacing */
  text-align: center; /* Center-align all text */
}

.footer_container {
  max-width: 1200px; /* Maximum width of the footer container */
  margin: 0 auto; /* Center the footer container */
  padding: 0 20px; /* Padding on the sides */
}

.footer_content {
  display: flex;
  align-items: center;
  justify-content: center; /* Center align elements */
  margin-bottom: 20px; /* Space between social content and columns */
  flex-wrap: wrap; /* Allow wrapping */
}

.social_box {
  display: flex;
  justify-content: center; /* Center icons horizontally */
  margin-bottom: 10px; /* Space below social icons */
}

.social_box a {
  color: #fff; /* White color for icons */
  margin: 0 10px; /* Spacing between icons */
  font-size: 20px; /* Icon size */
}

.footer_columns {
  display: flex;
  flex-wrap: wrap; /* Allow columns to wrap */
  gap: 60px; /* Space between columns */
  justify-content: center; /* Center align columns */
  padding-left: 20px; /* Adjust padding */
}

.footer_column {
  flex: 1 1 22%; /* Flex-grow, flex-shrink, and base width */
  margin-bottom: 20px; /* Margin at the bottom */
  min-width: 200px; /* Prevent columns from becoming too small */
  text-align: center; /* Center-align text */
}

.footer_column h3 {
  font-size: 18px;
  margin-bottom: 10px; /* Space below the heading */
}

.footer_column p {
  margin: 5px 0; /* Space between paragraphs */
  font-size: 14px; /* Text size */
}

.footer_column a {
  color: #fff; /* White color for links */
  text-decoration: none; /* Remove underline */
}

.footer_column a:hover {
  text-decoration: underline; /* Underline on hover */
}

/* Media Query for Screens Smaller Than 768px */
@media (max-width: 768px) {
  .footer_content {
    flex-direction: column; /* Stack elements vertically */
  }

  .footer_column {
    flex: 1 1 100%; /* Full-width columns on smaller screens */
   
  }
  
  .footer_section p, h3 {
    font-size: 16px; /* Adjust text size */
    margin: 8px 0; /* Space between elements */
  }
}

/* Media Query for Screens Smaller Than 480px */
@media (max-width: 480px) {
  .footer_section {
    padding: 15px 0; /* Adjust padding for mobile */
  }

  .footer_content {
    width: 100%; /* Full width */
    padding: 0 20px; /* Side padding */
  }

  .footer_section p, h3 {
    font-size: 16px; /* Adjust text size */
    margin: 8px 0; /* Space between elements */
  }
}




/*about image my part*/
.align-right_v{
  display: block;
  margin-left: 100px;
  margin-right: 100px;
}

















.contact_section {
  background-color: #000000;
  padding: 20px 0;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.contact_section::before,
.contact_section::after {
  content: '';
  display: block;
  width: 100%;
  height: 5px;
  background-color: #ff0000;
  position: absolute;
  left: 0;
}

.contact_section::before {
  top: 0;
}

.contact_section::after {
  bottom: 0;
}

.contact_section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.contact_section .section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
}

.contact_section .section-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 5px;
  background-color: #ff0000;
  margin: 0 auto 0;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.contact-info .info-box {
  flex: 0 0 48%;
  max-width: 48%;
  background-color: #ffffff;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-info .info-box:hover {
  transform: translateY(-10px);
}

.contact-info .info-icon {
  font-size: 36px;
  color: #ff0000;
  margin-bottom: 15px;
}

.contact-info .info-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #000000;
}

.contact-info .info-text {
  font-size: 22px;
  font-weight: 600;
  color: #ff0000ba;
  line-height: 1.6;
}

.contact-info .info-text_2 {
  font-size: 22px;
  font-weight: 600;
  color: #7e7300;
  line-height: 1.6;
}

.contact-info .info-title a {
  color: #009e20;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info .info-text a {
  color: #1008fd;
  font-size: 22px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info .info-text a:hover {
  color: #0300b3;
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
  .contact-info {
    justify-content: center;
  }

  .contact-info .info-box {
    flex: 0 0 100%;
    max-width: 80%;
    margin-left: 0;
  }
}




/* Image Gallery Section Styles */
#image-gallery {
  padding: 60px 0;
  background-color: #f4f4f4;
  text-align: center;
}

#image-gallery h2 {
  margin-bottom: 50px;
  font-size: 3rem;
  color: #222;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

/* Card Styles */
.card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  width: 90%;
  margin: 20px auto;  /* Center cards with margin auto */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card h3 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #333;
  font-weight: 600;
}

/* Gallery Grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
  justify-items: center;
  padding: 0 20px;
}

.gallery-item {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  object-fit: cover;
  max-width: 150px;
  max-height: 150px;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }

  .gallery-item img {
    max-width: 100px;
    max-height: 100px;
  }
}

/* Responsive */
@media (max-width: 480px) {
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }

  .gallery-item img {
    max-width: 120px;
    max-height: 120px;
  }

  
.card h3 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #333;
  font-weight: 600;
  margin-left: 20px;
}

}







.footer_container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  color: #ffffff;
  align-content: center;
}

.footer_column {
  flex: 1 1 10%;
  min-width: 200px;
  margin: 5px;
  margin-left: 50px;
}

.footer_column h3 {
  text-align: center;
  margin-top: 0;
}

.footer_column a {
  color: #fff;
  text-decoration: none;
}

.footer_column a:hover {
  text-decoration: underline;
}



.map_section {
  position: relative;
  width: 100%;
  height: 450px;
  margin: 20px 0;
}

.directions_section {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: white;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
  border-radius: 2px;
  z-index: 1;
}

.place-card {
  display: flex;
  flex-direction: column;
}

.place-desc-large {
  margin-bottom: 10px;
}

.place-name {
  font-weight: bold;
  font-size: 16px;
}

.address {
  font-size: 14px;
  color: grey;
}

.navigate {
  margin-bottom: 10px;
}

.navigate-link {
  color: #4285f4;
  text-decoration: none;
  font-size: 14px;
}

.navigate-icon {
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
}

.review-box {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.review-number {
  font-size: 14px;
  font-weight: bold;
  margin-right: 5px;
}

.rating-stars {
  font-size: 14px;
  margin-right: 5px;
}

.full-star {
  color: #ffa500;
}

.half-star {
  color: #d3d3d3;
}

.review-box-link {
  font-size: 14px;
  color: #4285f4;
  text-decoration: none;
}

.google-maps-link {
  font-size: 14px;
}

.google-maps-link a {
  color: #4285f4;
  text-decoration: none;
}






/* General Section Styling */
#our-team, #project-leads {
  background-color: #000;
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: relative;
}

/* Red Top and Bottom Lines */
#our-team::before, #project-leads::before,
#our-team::after, #project-leads::after {
  content: "";
  display: block;
  height: 4px;
  background-color: #ff0000; /* Red line color */
  position: absolute;
  left: 0;
  right: 0;
}

#our-team::before, #project-leads::before {
  top: 0; /* Top line */
}

#our-team::after, #project-leads::after {
  bottom: 0; /* Bottom line */
}

/* Section Titles with Gradient Effect */
#our-team h2, #project-leads h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 30px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  background-image: linear-gradient(45deg, #ff0000, #866efe);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

#our-team h2::after, #project-leads h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #ff0000, #866efe);
  margin: 8px auto 0;
  transition: width 0.4s;
}

#our-team h2:hover::after, #project-leads h2:hover::after {
  width: 100%;
}

/* Team Container Styling */
.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px;
  margin-top: -30px;
}

.team-member {
  background-color: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
  margin: 10px; /* Adjust gap between cards */
  padding: 10px 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  flex: 1 1 calc(25% - 20px); /* 25% width minus margin for spacing */
  box-sizing: border-box;
  width: 200px;
}


.team-member:hover {
  transform: scale(1.07);
  box-shadow: 0 10px 35px rgba(255, 255, 255, 0.2);
  background-image: linear-gradient(145deg, #222222, #333333);
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid #ff0000;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
  margin-left: -10px;
}

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

.team-member h3 {
  font-size: 1.6rem;
  margin: 12px 0;
  color: #ffffff;
}

.team-member p {
  margin: 8px 0;
  font-size: 1.1rem;
  color: #b3b3b3;
  font-style: italic;
}
/* Responsive Styles */
@media (max-width: 1200px) {
  #our-team .team-member {
    width: calc(25% - 40px); /* Four members per row */
  }
}

@media (max-width: 1024px) {
  .team-member {
    width: calc(50% - 40px); /* Two members per row on smaller screens */
  }
}

@media (max-width: 768px) {
  .team-member {
    width: 100%; /* One member per row on very small screens */
    margin-bottom: 20px; /* Optional: Add spacing between stacked cards */
  }
}

@media (max-width: 480px) {
  .team-member {
    width: 100%; /* One member per row on very small screens */
    margin-bottom: 20px; /* Optional: Add spacing between stacked cards */
  }
}






/*rands*/
/* General styling */
.brand-section {
  padding: 50px 20px;
  background-color: #000000;
  text-align: center;
}

.brand-title {
  font-size: 32px;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: bold;
}

/* Container styling */
.brand-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Card styling */
.brand-card {
  flex: 1 1 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 160px;
  background: url('path/to/your-background-image.jpg') no-repeat center center, #ececec;
  background-size: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

/* Image styling */
.brand-image img {
  max-width: 120px;
  max-height: 120px;
  object-fit: contain;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));
}

/* Responsive styling */
@media (max-width: 992px) {
  .brand-card {
    flex: 1 1 30%;
  }
}

@media (max-width: 576px) {
  .brand-card {
    flex: 1 1 100%;
    max-width: 60%;
  }
}

/*end brands*/




.text-box_m {
  width: 300px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 2 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin: auto;
  text-align: center;
}

.text-box_m:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(255, 0, 0, 0.2);
}


.text-box_m p {
  margin: 0;
  font-size: 20px;
  color: #000000;
}





/* Portfolio Section */
.portfolio_items_A {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 40px;
}

.item_p {
  flex: 1;
  text-align: center;
}

.box_P {
  background: #000000;
  height: 350px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(255, 0, 0, 0.2);
  padding: 40px;
  transition: transform 0.3s;
}

.box_P:hover {
  transform: scale(1.05);
}

/* Image Styling */
.image_main {
  width: 100%;
  height: 150%;
  max-width: 350px;
  border-radius: 8px;
  border: 2px solid #f00;
}

.image_secondary {
  
  border-radius: 50%;
  border: px solid #f00;
  margin-bottom: 20px;
}

/* Text Box */
.text-box_m {
  padding-top: 5px;
  margin-top: -20px;
  font-size: 1rem;
  color: #f0dada;
}

.text-box_m h1 {
  line-height: 1.6;
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
}

.text-box_m h2 {
  line-height: 1.6;
  font-size: 1.5rem;
  color: #000000;
}

.text-box_m h1::first-line {
  color: #f00;
  font-weight: bold;
}

.text-box_m h2::first-line {
  color: #f00;
  font-weight: bold;
  font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .portfolio_items_A {
    flex-direction: column;
  }
  
  .image_main, .image_secondary {
    max-width: 100%;
    margin: 0 auto;
  }
}




/* Navigation Buttons */
.navigation_buttons {
  position: absolute;
  bottom: 20px; /* Position 20px above the bottom edge */
  right: 20px; /* Position 20px from the right edge */
  display: flex;
  gap: 10px; /* Space between the buttons */
  z-index: 3; /* Ensure buttons appear above other content */
}

.nav_button {
  background-color: rgba(0, 0, 0, 0.7); /* Dark semi-transparent background */
  color: white; /* White arrow color */
  border: none; /* Remove borders */
  border-radius: 50%; /* Circular button */
  width: 40px; /* Button size */
  height: 40px;
  font-size: 20px; /* Arrow size */
  text-align: center; /* Center arrow text */
  line-height: 40px; /* Vertically center arrow */
  cursor: pointer; /* Change cursor to pointer on hover */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  transition: transform 0.2s, background-color 0.3s; /* Smooth animations */
}

.nav_button:hover {
  background-color: rgba(255, 0, 0, 0.8); /* Red background on hover */
  transform: scale(1.1); /* Slightly enlarge on hover */
}

.nav_button:active {
  transform: scale(0.95); /* Shrink slightly when clicked */
}
