/* navbar  container start */
/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
}

/* Navbar Container */
/* Base Styles */
:root {
  --primary-color: #424242;
  --secondary-color: #1a252f;
  --accent-color: #ffc502;
  --text-color: #ffffff;
  --mobile-breakpoint: 992px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.nav-container {
  width: 100%;
  background: var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
   position: fixed; 
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Logo */
.logo img {
  width: 120px;
  height: auto;
  transition: all 0.3s ease;
  border-radius: 30px 3px 20px 2px;
  /* filter: grayscale(1); */
}

.logo img:hover {
  filter: grayscale(0);
  transform: scale(1.05);
}

/* Navigation Links - Desktop */
.nav-links {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list li {
  position: relative;
}

.nav-list li a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  font-family: 'Cambria', serif;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 3px;
}

.nav-list > li > a:hover {
  color: var(--accent-color);
}

/* Dropdown Menu - Desktop */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary-color);
  width: 200px;
  padding: 10px 0;
  margin: 0;
  list-style: none;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dropdown-parent:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li {
  padding: 8px 20px;
}
 
/* Submenu link underline hover effect */
.dropdown li a {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #e0e0e0;
    font-size: 16px;
    padding: 5px 0 5px 25px; /* padding-left to give space for line */
    transition: color 0.3s ease;
}

.dropdown li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-color); /* golden color */
    transition: width 0.3s ease;
}

.dropdown li a:hover::before {
    width: 20px;
}


.dropdown li a:hover {

  color: var(--accent-color);


}

.dropdown-icon {
  font-size: 12px;
  transition: transform 0.3s;
}

.dropdown-parent:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
  width: 40px;
  height: 40px;
}

.menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-color);
  margin: 5px 0;
  transition: all 0.3s ease;
  position: absolute;
  left: 7px;
}

.menu-toggle .bar:nth-child(1) {
  top: 10px;
}

.menu-toggle .bar:nth-child(2) {
  top: 18px;
}

.menu-toggle .bar:nth-child(3) {
  top: 26px;
}





/* Mobile Menu Styles */
@media (max-width: 992px) {
  .navbar-section {
      padding: 10px 20px;
  }
  
  .menu-toggle {
      display: block;
      background: none;
  }
  
  .nav-links {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: var(--primary-color);
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
      transform: translateX(-100%);
      transition: transform 0.3s ease;
      height: calc(100vh - 70px);
      overflow-y: auto;
  }
  
  .nav-links.active {
      transform: translateX(0);
  }
  
  .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
  }
  
  .nav-list li {
      width: 100%;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-list li:last-child {
      border-bottom: none;
  }
  
  .dropdown {
      position: static;
      width: 100%;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      background: rgba(0, 0, 0, 0.2);
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      margin-top: 0;
  }
  
  .dropdown.active {
      max-height: 500px;
      padding: 10px 0 10px 20px;
  }
  
  .dropdown li {
      padding: 8px 0;
  }
  
  .dropdown li a {
      color: #ccc;
  }
  
  .menu-toggle.active .bar:nth-child(1) {
      transform: rotate(45deg);
      top: 18px;
  }
  
  .menu-toggle.active .bar:nth-child(2) {
      opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
      transform: rotate(-45deg);
      top: 18px;
  }
  
  .dropdown-parent.active .dropdown-icon {
      transform: rotate(180deg);
  }
}
  /* navbar  container end */

  
/* slider start  */
.swiper {
    width: 100%;
    height: 100vh;
    position: relative;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    position: relative;
    filter: grayscale(100%);
    width: 100%;
}
.swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(80, 74, 72, 0.5);
}
.swiper-button-next, .swiper-button-prev {
    color: #fff;
    z-index: 10;
    display: none;
}

.swiper-pagination-bullet-active {
    background: #333;
}

.swiper-content {
    position: absolute;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 20;
    /* background: rgba(0, 0, 0, 0.5); */
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
/* .swiper-slide-active .swiper-content {
    opacity: 1;
} */
.swiper-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  letter-spacing: 4px;
  color: #ffffff;
  
}

.swiper-content h1 {
  font-size: 56px;
  margin-bottom: 20px;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff !important;
  font-weight: 500;
  letter-spacing: 4px;
  font-family: Montserrat;
  margin-top:0 ;
  text-shadow:2px 2px 4px rgba(0, 0, 0, 0.1);
}

.swiper-content p {
  font-size: 22px;
  margin-bottom: 20px;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.swiper-slide-active .swiper-content {
    opacity: 1;
}
/* slider end */

/* aboutus section start */
/* General Styles */
.aboutus-section {
  width: 100%;
  /* padding: 10px 20px; */
  background: #f8f8f8;
  overflow: hidden;
  margin-bottom: 80px;
}

.aboutus-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Title Animation */
.aboutus-container h1 {
  font-size: 200px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #dbdada;
  letter-spacing: 110px;
  font-family: 'Math', serif;
  white-space: nowrap;
  text-align: center;
  transition: color 0.3s ease;
}

.aboutus-container h1 span {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* .aboutus-container h1:hover span {
  color: #333;
  transform: translateY(-10px);
} */

/* Content Box */
.aboutus-content-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-top: -72px;
}

.aboutus-content {
  width: 50%;
}

.aboutus-content h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  font-family: Cambria;
  text-align: left;
}

.aboutus-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  text-align: left;
  margin-bottom: 20px;
  font-family: Maiandra GD;
}

/* Images */
.aboutus-image {
  width: 50%;
  position: relative;
}

#aboutus-img1 {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 8px;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

#aboutus-img1:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

#aboutus-img2 {
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: -50px;
  right: -50px;
  border-radius: 7px;
  /* filter: grayscale(100%); */
  transition: filter 0.3s ease, transform 0.3s ease;
}

#aboutus-img2:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .aboutus-container h1 {
      font-size: 80px;
      letter-spacing: 30px;
  }

  .aboutus-content-box {
      flex-direction: column;
      gap: 20px;
      margin-top: 30px;
  }

  .aboutus-content, .aboutus-image {
      width: 100%;
  }

  #aboutus-img1 {
      max-width: 100%;
  }

  #aboutus-img2 {
      width: 150px;
      height: 150px;
      bottom: -30px;
      right: -30px;
  }
}

@media (max-width: 480px) {
  .aboutus-container h1 {
      font-size: 60px;
      letter-spacing: 20px;
  }

  .aboutus-content h2 {
      font-size: 30px;
  }

  .aboutus-content p {
      font-size: 16px;
  }

  #aboutus-img2 {
      width: 120px;
      height: 120px;
  }
}
/* aboutus section end */


/* service section  start*/

    /* Services Section */
    .services-section {
    position: relative;
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url("./images/waiting_1.jpg") no-repeat center center/cover;
    background-attachment: fixed;
    isolation: isolate;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
    z-index: -1;
}

.services-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.services-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: 60px;
    text-align: center;
    font-family: 'Cambria', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-title span {
    color: #FFD700;
    position: relative;
}

.services-title span::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #FFD700;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
    cursor: pointer;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(255,215,0,0.05) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 25px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.05);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-bottom: 15px;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.service-card:hover .service-title::after {
    width: 80px;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Open Sans', sans-serif;
    transition: color 0.3s ease;
}

.service-card:hover .service-description {
    color: white;
}

.service-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,215,0,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover .service-hover-effect {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-section {
        min-height: auto;
        padding: 80px 20px;
    }
    
    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .services-section {
        background-attachment: scroll;
        padding: 60px 20px;
    }
    
    .services-title {
        margin-bottom: 40px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .services-container {
        grid-template-columns: 1fr;
    }
    
    .service-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
}
  /* service section end   */

  /* projects section start */
/* General Styles */


.projects-section {
  padding: 50px 20px;
 
  text-align: center;
  overflow: hidden;
  margin-top: 100px;
}
.projects-section h1{
  font-size: 150px;
  font-weight: 800;
  color:rgb(228, 227, 227);
  letter-spacing: 94px;
  font-family: 'Math', serif;
  white-space: nowrap;
  text-align: center;
  transition: color 0.3s ease;
  position: absolute;
  margin: auto;
  margin-top: -150px;
  width: 100%;
  /* z-index: -1; */
}
.projects-section h1 span {
display: inline-block;
transition: transform 0.3s ease, color 0.3s ease;
}

/* .projects-section  h1:hover span {
color: #333;
transform: translateY(-10px);
} */
.projects-section h2 {
  font-size: 50px;
  margin-bottom: 40px;
  color: #333;
  position: relative;
  z-index: 1;
  font-family: Cambria;
}

.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.project-card img {
  width: 100%;
  height: 269px;
  object-fit: cover;
  display: block;
}

.project-content {
  padding: 20px;
  text-align: center;
}

.project-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
  font-family: Cambria;
}

.details-button {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid black;
  color: black;
  text-decoration: none;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.details-button:hover {
  background: black;
  color: #fff;
}

/* Hover Effects */
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Mobile View */
@media (max-width: 768px) {
  
  .projects-section h1{
      font-size: 40px;
      letter-spacing: 30px;
      
  }

  .projects-section h2 {
      font-size: 2rem;
      margin-top: -20px;
  }

  .project-content h3 {
      font-size: 1.3rem;
  }

  .details-button {
      padding: 8px 16px;
      font-size: 0.9rem;
  }
}
/* projects section end */



/* gallery section start */

/* General Styles */
/* General Styles */
.gallery-section {
  padding: 60px 20px;
  
  text-align: center;
  overflow: hidden;
  margin-top: 100px;
}

.gallery-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.gallery-section h1{
 font-size: 180px;
 color: rgb(228, 227, 227);
 letter-spacing: 94px;
 font-family: 'Math', serif;
 white-space: nowrap;
 text-align: center;
 transition: color 0.3s ease;
 position: absolute;
 margin-top:-150px ;
 z-index: -1;
 width: 100%;
 margin-bottom:200px ;
}
.gallery-section h1 span {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.gallery-container h2 {
  font-size: 50px;
  color: #2c3e50; /* Dark blue */
  margin-bottom: 65px;
  font-family: Cambria;
}

/* Gallery Images Grid with Collage Effect */
.gallery-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
  gap: 15px; /* Space between images */
  margin-bottom: 30px;
}

/* Collage Effect: Customize individual images */
.gallery-images img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images fill the grid cells */
  border-radius: 10px; /* Rounded corners */
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  filter: grayscale(100%); /* Initial grayscale effect */
}

/* Hover Effects */
.gallery-images img:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Shadow on hover */
  filter: grayscale(0%); /* Remove grayscale on hover */
  cursor: pointer;
}

/* Collage Layout: Customize specific images */
.gallery-images img:nth-child(1) {
  grid-column: span 2; /* First image takes 2 columns */
  grid-row: span 2; /* First image takes 2 rows */
}

.gallery-images img:nth-child(4) {
  grid-column: span 2; /* Fourth image takes 2 columns */
}

.gallery-images img:nth-child(7) {
  grid-row: span 2; /* Seventh image takes 2 rows */
}

/* View More Button */
/* From Uiverse.io by adamgiebl */ 
.view-more-button {
  border: none;
  display: block;
  position: relative;
  padding: 0.7em 2.4em;
  font-size: 18px;
  background: transparent;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  color: black;
  z-index: 1;
  font-family: inherit;
  font-weight: 600;
  
  border-radius: 20px;
}


.view-more-button span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
  border: 2px solid black;
  
}

.view-more-button span::before {
  content: "";
  display: block;
  position: absolute;
  width: 8%;
  height: 500%;
  background: var(--lightgray);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-60deg);
  transition: all 0.6s;
}

.view-more-button:hover span::before {
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 100%;
  background: black;
}

.view-more-button:hover {
  color: white;
}

.view-more-button:active span::before {
  background: #2751cd;
}


.lightbox {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9); /* Dark overlay */
  z-index: 1000;
  text-align: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #e67e22; /* Orange on hover */
}

.gallery-view-more{
  text-decoration: none;
  color: #2c3e50; /* Dark blue */
}
.gallery-view-more:hover{
  color: #ffffff; /* Orange on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .gallery-container h2 {
      font-size: 2rem;
  }

  .gallery-images {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Smaller grid cells for mobile */
      gap: 10px;
  }

  /* Reset collage layout for mobile */
  .gallery-images img:nth-child(1),
  .gallery-images img:nth-child(4),
  .gallery-images img:nth-child(7) {
      grid-column: span 1; /* Reset to single column */
      grid-row: span 1; /* Reset to single row */
  }

  .view-more-btn {
      padding: 10px 25px;
      font-size: 0.9rem;
  }
  .gallery-section h1{
      font-size: 60px;
      letter-spacing: 9px;
  }
}

@media (max-width: 480px) {
  .gallery-images {
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Even smaller grid cells for small devices */
  }
}
/* gallery section end */



/* process section start */
/* Parallax container */
.process_container {
  position: relative;
 
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  height: 65vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}
.process_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./images/architecturejpg.jpg'); /* Set your background image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

 filter: grayscale(100%);
  z-index: -1;
  
}
.process_container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
  z-index: -1;
}
/* Section styling */
.process-section {
  z-index: 2;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Title Styling */
.process-title {
  font-size: 50px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.5); /* Added text shadow for better readability */
  font-family: Cambria;

}

/* Separator line */
.line-dark.separator {
  line-height: 0.5;
  text-align: center;
  margin: 30px 0;
}

.separator.separator-bold span i {
  font-size: 20px;
  margin-top: -5px;
}

.line-dark.separator span:before,
.line-dark.separator span:after {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

/* Process items container */
.process-items {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 100%; /* Ensure it doesn't stretch too wide */
}

/* Process items styling */
.process-item {
  background: black;
  padding: 20px;
  border-radius: 50%;
  text-align: center;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.process-item:hover {
  transform: scale(1.1);
}

.process-item:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.5); Added overlay effect */
  z-index: -1;
  cursor: pointer;
}

.process-item:active {
  background: none;
}

/* Icon Styling */
.process-icon i {
  font-size: 3rem;
  margin-bottom: 10px;
}

/* Process text styling */
.process-text {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: Maiandra GD;
}
.line-dark{
  color: white;
  display: none;
  
}

/* Optional: Responsive styling */
@media (max-width: 768px) {
  .process_container {
    height: 100%; /* Allow the section to take the content height */
    padding: 10px;
  }

  .process-section {
    margin-top: 50px;
    padding: 20px;
    text-align: left;
    gap: 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .process-items {
    flex-direction: column;
    align-items: center;
    margin-top: 20px; /* Adding margin-top for spacing */
  }

  .process-item {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
  }

  .process-title {
    font-size: 2.5rem;
  }

  .process-icon i {
    font-size: 2.5rem;
  }

  .process-text {
    font-size: 1rem;
  }
}


/* process section end */



/* contact section start */
/* Contact Section Styling */
/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #f9f9f9, #ececec);
  padding: 50px 20px;
  text-align: center;
}

.contact-container {
  max-width: 1500px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 15px;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

.contact-title {
  font-size: 50px;
  color: #2c3e50;
  margin-bottom: 65px;
  font-family: Cambria;
}

/* Contact Content */
.contact-content-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

/* Contact Info */
.contact-info {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.contact-section-header h3 {
  font-size: 1.5rem;
  color: #222;
  font-family: cambria;
}
.contact-section-header p {
  font-family: 'Maiandra GD';
}
.contact-details {
  margin-top: 20px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 1rem;
  font-weight: 500;
}
.contact-detail p{
  font-family: 'Maiandra GD';
}
.contact-detail i {
  font-size: 1.5rem;
  color: #ffc502;
}

.contact-detail a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.contact-detail a:hover {
  text-decoration: underline;
}

/* WhatsApp Button */
.whatsapp {
  background: #25D366;
  color: white;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}

.whatsapp a {
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp i {
  margin-right: 5px;
}

/* Contact Form */
.contact-form {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

form {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

textarea.form-control {
  height: 120px;
  resize: none;
}

.btn {
  background: #ffc502;
  color: white;
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #333;
}
.customer-service-details img{
    width: 46%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: darken;
    /* filter:grayscale(100%); */
    border-radius: 65px 6px 65px 6px;
}
.customer-service-details img:hover{
    mix-blend-mode: normal;
    filter:grayscale(0%);
}
/* Responsive Design */
@media (max-width: 768px) {
  .contact-content-container {
      flex-direction: column;
  }

  .contact-info, .contact-form {
      text-align: center;
  }

  .contact-detail {
      justify-content: center;
  }

  .btn {
      width: auto;
  }
  .customer-service-details img{
    width: 300px;
    height: 100%;
     
  }
}

    
    /* contact section end */