/* Custom CSS for Incredible Routes Landing Page */
  
:root {
  --primary-color: #dc3545; /* Red color for highlights */
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --overlay-dark: rgba(0, 0, 0, 0.6);
  --overlay-light: rgba(0, 0, 0, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}
 
/* Typography */
.hero-title,
.section-title {
  font-weight: 800;
  font-family: 'Bebas Neue', sans-serif;
}
 

.page-logo {
  /*! position: relative; */
}
.page-logo img {
  position: fixed;
  z-index: 9999 !important;
  transform: rotate(-90deg);
  top: 45%;
  left: -12%;
  bottom: 0;
}

.custom-container{
  position: relative;
  overflow: hidden;
  background-image: url('../images/bg5.png');
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: top center;
} 
.custom-container:after{
  content: " ";
  display: block;
  width: 300%;
  height: 45px;
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/23618/rip.svg) bottom;
  position: absolute;
  left: -500px;
  z-index: 1;
  bottom: -30px;
  transform: rotate(180deg);
}
.custom-container:before{
  content: " ";
  display: block;
  width: 300%;
  height: 15px;
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/23618/rip.svg) bottom;
  position: absolute;
  left: -500px;
  z-index: 1;
  top: 0;
}
.custom-shadow {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 150px 0px;
}
.team-name {
  color: var(--primary-color) !important;
  font-weight: 600;
} 

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}   
.hero-section::after {
  content: " ";
  display: block;
  width: 300%;
  height: 80px;
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/23618/rip.svg) bottom;
  position: absolute;
  left: -500px;
  z-index: 1;
  bottom: -60px;
  transform: rotate(180deg);
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay-light);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
 
.hero-logo {
  max-height: 100%;
  filter: brightness(0) invert(1);
  width: 800px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
  
.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.hero-btn {
  background-color: var(--primary-color);
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.hero-btn:hover {
  background-color: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator i {
  font-size: 30px;
  color: #fff;
}

/* .custom-fade-up {
  animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
} */

/* Section Styling */
.section-title {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

/* .custom-section-title span,
.custom-section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
} */

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}
  
/* About Section */
.about-section {
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about-content .lead {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
}

.about-content .highlight {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.about-content .cta-text {
  font-style: italic;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 2rem;
}
.about-us-img .img1 {
  border-radius: 150px 0px 150px 0px;
}

.about-us-img .img2 {
  border-radius: 0px 150px 0px 150px;
} 
.about-us-img {
  height: 450px;
}
.about-us-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Services Section */
.services-section {
  background-image: url(../images/amritsar2.jpg);
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 80vh;
  width: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
}
 
.services-section:before{
  content:" ";
  display:block;
  width: 300%;
  height: 65px;
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/23618/rip.svg) bottom;
  position:absolute;
  margin-top:-90px;
  left:-500px;
}  
.services-section:after{
 content:" ";
 display:block;
 height: 20px;
 background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/23618/rip.svg) bottom;
 position:absolute;
 bottom:0px;
 width:300%;
 left:-500px;    
 transform: rotate(180deg);
}

.service-card {
  background: var(--white);
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 10px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.service-icon img {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 80%;
  border-radius: 30px;
}
.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 10.5rem;
}

.service-card h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
  opacity: 0;
  transition: .2s all;
  height: 0px;
}
.service-card:hover p{
  opacity: 1;
  height: 100%;
} 
/* Torn Paper Effect */
.section-header {
  text-align: center;
  margin-bottom: 30px;
}
 
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}
  
.custom-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-color));
  border-radius: 2px;
}

.team-member {
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.team-member:nth-child(even) {
  animation-delay: 0.2s;
}

.team-member:nth-child(odd) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 10px;
}

.team-row.reverse {
  flex-direction: row-reverse;
}

.team-photo {
  flex: 0 0 300px;
  position: relative;
}

.team-photo img {
  width: 300px;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: grayscale(20%);
  transform: scale(1.05) rotate(5deg);
}


 
.team-photo::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: url('../images/amritsar2.jpg');
  border-radius: 25px;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.team-info {
  flex: 1;
  padding: 20px;
}

.team-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 30px;
  position: relative;
}
 
.team-name::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-color));
  border-radius: 2px;
}

.team-info p {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 25px;
  line-height: 1.8;
  text-align: justify;
}

.team-info p:last-child {
  margin-bottom: 0;
}
 
.team-conclusion {
  padding: 0px 40px;
  border-radius: 25px;
  margin-top: 60px;
  text-align: center;
  background-color: #fff;
}
 
.team-conclusion p {
  font-size: 1.2rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.team-conclusion p:last-child {
  margin-bottom: 0;
}

/* Gallery thumbnails styling */

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
}

/* Lightbox modal styling */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-slide {
  position: absolute;
  width: 90%;
  max-width: 800px;
  max-height: 80%;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.4s ease;
  text-align: center;
}

.lightbox-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.lightbox-slide.prev {
  transform: translateX(-100px);
}
 
.lightbox-slide img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lightbox-caption {
  color: white;
  font-size: 1.2rem;
  margin-top: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Navigation buttons */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 3px 15px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 30px;
}
 
.lightbox-next {
  right: 40px;
}
 
/*Close button */
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 3px 15px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

/* Image counter */
.lightbox-counter {
  position: absolute;
  top: 30px;
  left: 30px;
  color: white;
  font-size: 1.1rem;
  background: rgba(0,0,0,0.5);
  padding: 8px 15px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* Responsive design */
@media (max-width: 768px) {
  .lightbox-nav {
    font-size: 1.5rem;
    padding: 10px 15px;
  }
  
  .lightbox-prev {
    left: 15px;
  }
  
  .lightbox-next {
    right: 15px;
  }
  
  .lightbox-close {
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    padding: 8px 12px;
  }
  
  .lightbox-counter {
    top: 15px;
    left: 15px;
    font-size: 0.9rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .team-row {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .team-row.reverse {
    flex-direction: column;
  }

  .team-photo {
    flex: none;
  }

  .team-photo img {
    width: 250px;
    height: 250px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .team-name {
    font-size: 2rem;
  }

  .team-info p {
    text-align: left;
  }
 
  .torn-paper {
    margin: 20px 0;
    padding: 40px 0;
  }

  .team-conclusion {
    padding: 30px 20px;
  }
}

/* Scroll animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease forwards;
}

/* Decorative elements */
.decorative-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(90deg, #000, gray);
  border-radius: 50%;
  animation: float 3s ease-in-out infinite;
}

.decorative-dot:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.decorative-dot:nth-child(2) {
  top: 20%;
  right: 10%;
  animation-delay: 1s;
}

.decorative-dot:nth-child(3) {
  bottom: 15%;
  left: 8%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
 
/* Legacy Section */
.legacy-section {
}
 
.legacy-slideshow {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem;
}

.slideshow-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  height: 400px;
}

.slides-wrapper {
  position: relative;
  width: 500%; 
  height: 100%;
  display: flex;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.legacy-slide {
  width: 20%; 
  height: 100%;
  flex-shrink: 0;
}

.legacy-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.slide-btn.prev-btn, .slide-btn.next-btn i {
  color: #fff;
  font-weight: 800;
  font-size: 30px;
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.slide-dots {
  margin-top: 1rem;
  text-align: center;
}
 
.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background-color: var(--primary-color);
}
  
.legacy-content {
  margin-top: 0rem;
  background: white;
  padding: 2rem;
  border-radius: 15px;
}

.legacy-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: justify;
  line-height: 1.7;
  color: var(--text-dark);
}

.legacy-content .highlight {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.2rem;
  text-align: center;
}

    
/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background-image: url('../images/gargi iris jais.jpg');
  position: relative;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  overflow: hidden;
  height: 110vh;
} 
.testimonials-section:before{
  content:" ";
  display:block;
  width: 300%;
  height: 40px;
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/23618/rip.svg) bottom;
  position:absolute;
  margin-top:-70px;
  z-index:1;
}   
.testimonials-section:after{
 content:" ";
 display:block;
 height: 45px;
 background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/23618/rip.svg) bottom;
 position:absolute;
 bottom:-25px;
 width:300%;  
 transform: rotate(180deg);
}

.testimonials-section .container {
  position: relative;
  z-index: 2;
}

.testimonials-slider {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.testimonial-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.testimonial-slide {
  display: none;
  padding: 0 20px;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-content {
  width: 100%;
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.testimonial-card p {
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text_dark);
  line-height: 1.7;
}

.testimonial-author strong {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.author-title {
  color: var(--text_light);
  font-size: 0.9rem;
  font-style: italic;
}
 
.testimonial-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--text_dark);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
  background-color: transparent;
}

.testimonial-btn.prev-btn, .testimonial-btn.next-btn i {
  color: #fff;
  font-weight: 800;
  font-size: 30px;
}

.testimonial-btn.prev-btn {
  left: -25px;
}

.testimonial-btn.next-btn {
  right: -25px;
}

.testimonial-dots {
  margin-top: 2rem;
}

.testimonial-dots .dot {
  height: 10px;
  width: 10px;
  margin: 0 6px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots .dot.active,
.testimonial-dots .dot:hover {
  background-color: var(--white);
  transform: scale(1.2);
}
/* Contact Section */
.contact-section {
  padding: 19px 0;
}
 
.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.submit-btn {
  background-color: #dc3545;
  color: #fff;
}
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.contact-info {
  margin-top: 3rem;
}

.contact-item {
  padding: 1.5rem;
  text-align: center;
}

.contact-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
 
.contact-item h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 1.1rem;
}

.contact-item p {
  color: var(--text-light);
  margin: 0;
}
  
/* Footer */
.footer {
  background-color: #dc3545;
  position: relative;
  overflow: hidden;
}  
.footer:before{
  content:" ";
  display:block;
  width: 300%;
  height: 65px;
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/23618/rip.svg) bottom;
  position:absolute;
  margin-top:-45px;
  z-index:1;
} 
.footer-logo img {
  filter: brightness(0) invert(1);
}
 
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #c82333;
  transform: translateY(-2px);
  color: var(--white);
}

.copyright {
  color: #bbb;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .team-photo img {
    width: 250px;
    height: 250px;
  }

  .team-info {
    padding: 1rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .social-links {
    justify-content: center;
    margin-top: 1rem;
  }
 
  .legacy-slide img {
    height: 100%;
  }

  .slide-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .service-card,
  .contact-form {
    padding: 1.5rem;
  }

  .team-photo img {
    width: 200px;
    height: 200px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c82333;
}


@media screen and (max-width: 992px) {
  .hero-logo{
    width: auto;
  }
  .page-logo img {
    left: -23%;
  }
  .team-row{
    display: block;
  }
  .team-photo img{
    width: 100%;
    height: 100%;
  }
  .team-conclusion{
    padding: 0;
  }
  .team-photo{
    margin: 50px 0px;
  }
  .services-section, 
  .testimonials-section{
    height: 100%;
  }

}

@media screen and (max-width: 768px) {
  .page-logo{
    display: none;
  }
  .custom-shadow{
    padding: 20px !important;
  }
  .hero-section{
    height: 100%;
    padding: 100px 0px;
  }
  .hero-content{
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .hero-logo {
    width: 350px;
  }
}