/* --- RESET & GLOBAL VARIABLES --- */
:root {
  --primary-green: #0a2357;
  --primary-blue: #0a2357; /* Deep Blue from Spectra Plus */
  --accent-pink: #e91e63;
  --cream-bg: #f9f7e8;
  --text-white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}


/* --- HERO SLIDER CONTAINER --- */
.hero-slider {
  position: relative;
  height: 474px;
  width: 100%;
  overflow: hidden;
  background: #000; /* Stays hidden behind the images */
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* This container holds the stacked slides */
.slider-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

/* --- SLIDE STACKING LOGIC --- */
.slide-item {
  position: absolute; /* Stacks slides like cards to prevent black gaps */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center; /* Vertically centers text */
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out;
}

.slide-item.active {
  opacity: 1; /* Fully visible when active */
  visibility: visible;
  z-index: 5; /* Sits on top of the old slide during transition */
}

/* --- BACKGROUND IMAGE & CURVE --- */
.image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* The Blue Curved Overlay mimicking image_4.jpg and image_5.jpg */
.image-layer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
  background: var(--primary-blue);
  z-index: 2;
  clip-path: ellipse(90% 100% at 0% 50%);
  transform: translateX(-100%); /* Start off-screen to the left */
}

/* Animation triggers ONLY when the slide is active */
.slide-item.active .image-layer::before {
  animation: slideInCurve 1.2s ease-out forwards;
}

/* --- CONTENT BOX STYLING --- */
.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 40px; /* Increased padding for better spacing from the edge */
  width: 100%;
  display: flex;
  justify-content: flex-start; /* Aligns the content-box to the left */
  position: relative;
  z-index: 10;
}

.content-box {
  position: relative;
  z-index: 10;
  color: var(--text-white);
  max-width: 600px; /* Limits text width to the left side */
  margin-right: auto; /* Pushes content to the left */
  text-align: left; /* Ensures text is left-aligned */
  opacity: 0;
  transform: translateY(30px);
}

.slide-item.active .content-box {
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.content-box h1 {
  font-family: "Lora", serif;
  font-size: 3.5rem; /* Large impact font as seen in images */
  line-height: 1.1;
  margin-bottom: 20px;
  text-align: left;
}

.content-box p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  text-align: left;
  max-width: 450px; /* Keeps the description compact on the left */
}

.content-box h1 span {
  color: #4a86ff; /* Light blue accent from image_4.jpg */
  font-weight: 700;
}

.btn-wrapper {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.btn {
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-outline {
  border: 2px solid white;
  color: white;
}

.btn-theme {
  background: var(--accent-pink);
  color: white;
}

/* --- PAGINATION DOTS (mimicking image_7.png) --- */
.slider-pagination {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 100;
}

.pagination-dot {
  width: 15px;
  height: 15px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.pagination-dot.active {
  background: #fff;
  transform: scale(1.3);
}



.btn-pill {
  display: inline-block;
  padding: 15px 40px;
  /* border: 2px solid #c40d42; */
  color: white;
  background-color: #E91E63;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px; /* Creates the pill shape */
  transition: all 0.3s ease;
}

.btn-pill:hover {
  background-color: #0a2357;
  color: #ffffff;
}



/* ================= FAB CONTAINER ================= */

.fab-container {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 9999;
}

/* MAIN BUTTON */
.fab-main {
  width: 50px;
  height: 50px;
  background: #c40d42;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  transition: 0.3s;
}

/* Rotate on open */
.fab-container.active .fab-main {
  transform: rotate(45deg);
}

/* ITEMS WRAPPER */
.fab-items {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: 0.3s;
}

/* SHOW ITEMS */
.fab-container.active .fab-items {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* INDIVIDUAL ICON */
.fab-item {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: 0.3s;
}

/* HOVER */
.fab-item:hover {
  transform: scale(1.1);
}

/* COLORS */
.f-mail { background: #4a86ff; }
.f-phone { background: #3b60e4; }
.f-location { background: #ff5722; }
.f-whatsapp { background: #25d366; }
.f-instagram {
  background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4);
}





/* --- ANIMATIONS --- */
@keyframes slideInCurve {
  to {
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
  .content-box h1 {
    font-size: 2.2rem;
  }
  .image-layer::before {
    width: 100%;
    clip-path: none;
    opacity: 0.9;
  }
}

/* --- ABOUT INFO SECTION --- */
.about-info-section {
  padding: 50px 0;
  /*background-color: #fdfaf5;*/
  text-align: center; /* Centers all content */
  font-family: "Montserrat", sans-serif;
}

/*--call us ---*/
.call-us{
  padding:  0;
  /*background-color: #fdfaf5;*/
  text-align: center; /* Centers all content */
  font-family: "Montserrat", sans-serif;
}

.container-narrow {
  max-width: 900px; /* Limits width to match image_dff5d9.png */
  margin: 0 auto;
  padding: 0 20px;
}

.about-info-section h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 30px;
  font-weight: 700;
}

.about-info-section p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
}

/* Red Highlight Styling from Reference */
.about-info-section .highlight {
  color: #c40d42; /* Professional burgundy red */
  font-weight: 600;
}

.cta-text-bold {
  font-weight: 500;
}

/* Pill-Shaped Button Style */
.btn-container {
  margin-top: 40px;
}

.btn-pill-outline {
  display: inline-block;
  background-color: #c40d42;
  padding: 15px 40px;
  border: 2px solid #c40d42;
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px; /* Creates the pill shape */
  transition: all 0.3s ease;
}

.btn-pill-outline:hover {
  background-color: #0a2357;
  color: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .about-info-section h2 {
    font-size: 1.8rem;
  }
  .about-info-section p {
    font-size: 1rem;
  }
}

.container-narrow h2 {
  color: #0a2357;
}

/*service section*/

.services-3d .container {
  display: flex;
  flex-direction: column; /* Stacks Heading -> Cards -> Button */
  align-items: center;
}

/* Heading Styling */
.section-header h2 {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 10px;
}
.section-header h2 span {
  color: #0a2357;
}

/* 3D Carousel Logic */
/* --- Horizontal Scroll Fix --- */

/* --- SERVICES SECTION WRAPPER --- */
.services-3d {
  padding-bottom: 20px;
  background-color: #fdfaf5;
  text-align: center;
}

.services-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
}

/* --- VIEWPORT & SCROLLING --- */
.carousel-viewport {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth; /* Required for the arrow buttons to slide smoothly */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding: 20px 0;
}

.carousel-viewport::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.carousel-container {
  display: flex;
  gap: 25px;
  padding: 10px;
  width: max-content; /* Ensures container expands to fit all cards */
}

/* --- SERVICE CARDS --- */
.service-card {
  flex: 0 0 280px; /* Fixed width for each card */
  height: 400px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  background: #000;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7; /* Adjusted from 5 (invalid) to 0.7 for visibility */
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card:hover img {
  opacity: 1;
  transform: scale(1.1);
}

/* --- LABELS --- */
.card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 15px 20px;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  pointer-events: none;
}

/* --- SCROLL BUTTONS --- */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #0a2357; /* Your Navy Blue */
  color: white;
  border: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.scroll-btn:hover {
  background: #ff5e5e; /* Your Red theme */
}

.scroll-btn.prev {
  left: -10px;
}
.scroll-btn.next {
  right: -10px;
}



.btn-get-started {
  display: inline-block;
  background-color: #ff5e5e;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(255, 94, 94, 0.3);
  transition: 0.3s;
}

.btn-get-started:hover {
  background-color: #0a2357;
  transform: scale(1.05);
}

/*------------------------Testimonials-------------------*/

.section-title {
  text-align: center;
  color: #1a2a6c;
  margin-bottom: 50px;
  font-size: 2.5rem;
}

.section-title span {
  color: #4a90e2;
}

/* 1. Add a new wrapper with max-width and center it */
.testimonial-scroller-wrapper {
  max-width: 1200px; /* Limits the viewable area */
  margin: 0 auto;
  padding: 20px; /* Space for the shadow */
}

/* 2. Style the flex container for scrolling and snapping */
.testimonial-scroller {
  display: flex;
  overflow-x: auto; /* Enables horizontal scroll */
  scroll-snap-type: x mandatory; /* CRITICAL: Enables snapping to each card */
  scroll-behavior: smooth; /* Smooth scrolling when using dots */
  gap: 30px; /* Space between cards */
  padding-bottom: 30px; /* Room for the scrollbar and shadow */
  -ms-overflow-style: none; /* Hides scrollbar in IE/Edge */
  scrollbar-width: none; /* Hides scrollbar in Firefox */
}

/* Optional: Hides scrollbar in Chrome/Safari/Opera */
.testimonial-scroller::-webkit-scrollbar {
  display: none;
}

/* 3. Style each card and enable its snap point */
.testimonial-card {
  flex: 0 0 calc(33.333% - 20px); /* 3 cards visible, adjusted for gap */
  max-width: 350px; /* Prevents cards from becoming too wide */
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ddd;
  scroll-snap-align: center;
   /* CRITICAL: Card snaps to the center of scroller */
}

/* Small Screens: Show only 1 card per view */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(100% - 30px); /* 1 card visible */
    margin: 0 auto; /* Keeps it centered */
  }
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 25px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
}

.user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #e0e0e0;
}

.user-name {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
}

.stars {
  color: #ffcc00;
  font-size: 1.2rem;
  margin-top: 5px;
}

/* 4. Style the dots below the scroller */
.scroll-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc; /* Default dot color */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #1a2a6c; /* Active dot color */
}
/* Add this to your Testimonials Section class */
.testimonials-section {
  padding-bottom: 80px;
  margin-top: 50px; /* Adjust this value for more/less space */
  
}



/* ================= NEW TESTIMONIAL SLIDER ================= */

.testimonial-slider {
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
}

/* CARD STYLE */
.testimonial-card {
  min-width: calc(33.333% - 20px);
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  transition: 0.4s;
  opacity: 0.5;
  transform: scale(0.9);
  margin-bottom: 40px;
}

/* ACTIVE CENTER CARD */
.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* TEXT */
.testimonial-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

/* USER */
.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.user-name {
  font-size: 15px;
  margin: 0;
}

.stars {
  color: gold;
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 100%;
    opacity: 1;
  }
}
/*------------------------Footer ----*/

/* --- FOOTER MAIN STYLES --- */
.main-footer {
  background-color: #1a2b56;
  color: #ffffff;
  padding: 60px 0 0 0;
  font-family: "Poppins", sans-serif;
  margin-top: 50px;
}

/* --- FOOTER GRID --- */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 0 20px;
}

/* --- COLUMN HEADINGS --- */
.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  font-weight: 600;
}

/* --- TEXT --- */
.footer-column p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #d1d8e6;
}

/* --- LINKS --- */
.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #d1d8e6;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
  display: flex;
  align-items: center;
}

/* Bullet Style */
.footer-column ul li a::before {
  content: "•";
  color: #5687f5;
  font-weight: bold;
  margin-right: 10px;
}

.footer-column ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

/* --- SOCIAL ICONS --- */
.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #ffffff;
  font-size: 1.1rem;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #5687f5;
  transform: translateY(-3px);
}

/* --- CONTACT INFO --- */
.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.contact-info i{
  color:#5687f5;
  min-width:18px;   /* keeps all icons aligned */
  font-size:16px;
  margin-top:3px;
}

.contact-info span{
  display:block;
}

/* --- FOOTER COPYRIGHT --- */
/* --- FOOTER COPYRIGHT --- */
.footer-copyright {
  background-color: #0a2c4f;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 18px 150px;
  font-size: 14px;
}

.xl-logo {
  width: 22px;
  height: 22px;
}

.footer-copyright .copyright-XL {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* -------------------------------- */
/* -------- RESPONSIVE CSS -------- */
/* -------------------------------- */

/* Tablet */
@media (max-width: 992px) {

.footer-container{
  grid-template-columns: repeat(2,1fr);
  gap:30px;
}

}

/* Mobile */
@media (max-width: 768px) {

.footer-container{
  grid-template-columns: 1fr;
  text-align:center;
}

.footer-column ul li a{
  justify-content:center;
}

.social-icons{
  justify-content:center;
}

.contact-info p{
  flex-direction: column;   /* icon on top, text below */
  align-items: center;      /* center everything */
  text-align: center;
}


.footer-copyright{
  flex-direction:column;
  gap:10px;
  text-align:center;
  padding: 18px 20px;
}

}

/* Small Mobile */
@media (max-width:480px){

.footer-column h3{
  font-size:1.1rem;
}

.footer-column p,
.footer-column ul li a{
  font-size:0.85rem;
}

.footer-copyright{
  font-size:12px;
}

}





  /* 6. Fix Hero Spacing */
  .hero-slider {
    margin-top: 0;
  }


/*-----------------------------------------------------------------------------------------*/

@media (max-width: 768px) {
  .hero-slider {
    height: 420px;
  }

  .content-box h1 {
    font-size: 28px;
  }

  .content-box p {
    font-size: 16px;
  }

  .container {
    padding: 0 20px;
  }

  .btn-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-actions {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .center-logo {
    height: 55px;
  }

  .tagline {
    font-size: 12px;
  }
}

/* --- Desktop: Horizontal Scrolling --- */
.carousel-viewport {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

/* --- Desktop: Show all cards in a row --- */
.carousel-container {
  display: flex;
  gap: 25px;
  width: max-content;
}

/* --- Mobile: Vertical Stack & Limit to 4 Cards --- */
@media (max-width: 768px) {
  .services-wrapper {
    display: block;
  }

  .scroll-btn {
    display: none !important; /* Hide arrows on phone */
  }

  .carousel-viewport {
    overflow: hidden; /* No horizontal scrolling needed */
  }

  .carousel-container {
    display: flex;
    flex-direction: column; /* Stack cards vertically */
    align-items: center;
    width: 100%; /* Reset from max-content */
    gap: 20px;
    padding: 0;
  }

  .service-card {
    display: block;
    width: 100%;
    max-width: 320px; /* Professional width for phone screens */
    height: 280px;
    margin: 0 auto;
  }

  
}




/* Floating Contact Icons */

.floating-actions{
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.floating-actions a{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: 0.3s;
}

/* Icon Colors */

.f-mail{
  background:#4a86ff;
}

.f-phone{
  background:#3b60e4;
}

.f-whatsapp{
  background:#25d366;
}

.f-instagram{
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.f-youtube{
  background:#ff0000;
}

/* Hover Effect */

.floating-actions a:hover{
  transform: scale(1.1);
}

@media (max-width:768px){

  .floating-actions{
    right:10px;
  }

  .floating-actions a{
    width:45px;
    height:45px;
    font-size:16px;
  }

}



.view-ser-btn{
background:#E91E63;
border:none;
color:#fff;
padding:7px 16px;
border-radius:20px;
font-size:18px;
margin-bottom:20px;
transition:0.3s;
}

a{
  text-decoration: none;
}
.view-ser-btn:hover{
background:#0A2357;
}




.logo-link {
  text-decoration: none;
  display: inline-block;
}

#goTopBtn {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 999;
  background-color: #c40d42;
  color: #fff;
  border: none;
  padding: 12px 15px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
}

#goTopBtn:hover {
  background-color: #a50b36;
  transform: translateY(-3px);
}

@media (max-width: 768px) {

  .services-wrapper {
    display: block;
  }

  .scroll-btn {
    display: none !important; /* Hide arrows on mobile */
  }

  .carousel-viewport {
    overflow-x: auto;  /* ✅ ENABLE SCROLL */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .carousel-container {
    display: flex;
    flex-direction: row;   /* ✅ horizontal again */
    gap: 15px;
    width: max-content;
    padding: 10px;
  }

  .service-card {
    flex: 0 0 auto;
    width: 220px;   /* good mobile size */
    height: 260px;
  }
}

.services-section {
  padding: 20px 20px;
  background: #f5f3f1;
  text-align: center;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 600;
}

.section-header span {
  color: #0d2c54;
}

.section-header p {
  margin-top: 10px;
  color: #555;
}

/* 🔥 New Description Styling */
.section-description {
  max-width: 900px;
  margin: 30px auto 10px;
  color: #666;
  font-size: 15.5px;
  line-height: 1.8;
}

.section-description p {
  margin-bottom: 15px;
}

/* Optional subtle animation */
.section-description {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  position: relative;
  height: 420px;
}

/* Default cards (side ones) */
.service-card {
  width: 220px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s ease;
  opacity: 0.5;
  transform: scale(0.8);
  margin-bottom: 10px;
}

/* Center active card */
.service-card.active {
  width: 300px;
  height: 400px;
  transform: scale(1);
  opacity: 1;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Left & Right highlight */
.service-card.prev,
.service-card.next {
  opacity: 0.8;
  transform: scale(0.9);
}

.services-coverflow {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 430px;
  margin: 40px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.services-coverflow .service-card {
  position: absolute;
  width: 170px;
  height: 250px;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  transition: transform 0.7s ease, opacity 0.7s ease, width 0.7s ease,
    height 0.7s ease, filter 0.7s ease;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.services-coverflow .service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* center */
.services-coverflow .service-card.active {
  width: 300px;
  height: 390px;
  transform: translateX(0) scale(1);
  opacity: 1;
  z-index: 5;
  pointer-events: auto;
  filter: brightness(1);
}

/* immediate sides */
.services-coverflow .service-card.prev,
.services-coverflow .service-card.next {
  width: 220px;
  height: 320px;
  opacity: 0.85;
  z-index: 4;
  pointer-events: auto;
  filter: brightness(0.9);
}

.services-coverflow .service-card.prev {
  transform: translateX(-255px) scale(0.92);
}

.services-coverflow .service-card.next {
  transform: translateX(255px) scale(0.92);
}

/* far sides */
.services-coverflow .service-card.prev-2,
.services-coverflow .service-card.next-2 {
  width: 120px;
  height: 180px;
  opacity: 0.55;
  z-index: 3;
  filter: brightness(0.75);
}

.services-coverflow .service-card.prev-2 {
  transform: translateX(-405px) scale(0.82);
}

.services-coverflow .service-card.next-2 {
  transform: translateX(405px) scale(0.82);
}

.services-coverflow .card-label {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 22px 12px 16px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
}

@media (max-width: 992px) {
  .services-coverflow {
    height: 360px;
  }

  .services-coverflow .service-card.active {
    width: 230px;
    height: 320px;
  }

  .services-coverflow .service-card.prev,
  .services-coverflow .service-card.next {
    width: 160px;
    height: 240px;
  }

  .services-coverflow .service-card.prev {
    transform: translateX(-170px) scale(0.9);
  }

  .services-coverflow .service-card.next {
    transform: translateX(170px) scale(0.9);
  }

  .services-coverflow .service-card.prev-2,
  .services-coverflow .service-card.next-2 {
    width: 90px;
    height: 140px;
  }

  .services-coverflow .service-card.prev-2 {
    transform: translateX(-270px) scale(0.8);
  }

  .services-coverflow .service-card.next-2 {
    transform: translateX(270px) scale(0.8);
  }
}

@media (max-width: 768px) {
  .services-coverflow {
    height: 320px;
  }

  .services-coverflow .service-card.active {
    width: 210px;
    height: 280px;
  }

  .services-coverflow .service-card.prev,
  .services-coverflow .service-card.next {
    width: 120px;
    height: 190px;
    opacity: 0.65;
  }

  .services-coverflow .service-card.prev {
    transform: translateX(-120px) scale(0.85);
  }

  .services-coverflow .service-card.next {
    transform: translateX(120px) scale(0.85);
  }

  .services-coverflow .service-card.prev-2,
  .services-coverflow .service-card.next-2 {
    display: none;
  }
}

/* ===== QUICK LINKS FIX ===== */

@media (max-width: 768px) {

  .footer-column ul {
    text-align: center;
  }

  .footer-column ul li a {
    display: inline-block;
    text-align: left;   /* keeps dots aligned */
    min-width: 160px;   /* same width for all */
    padding-left: 35px;
    position: relative;
  }

  .footer-column ul li a::before {
    content: "•";
    position: absolute;
    left: 25px;
    color: #5687f5;
    
  }

}


@media (max-width: 768px) {

  .contact-info p {
    background: rgba(255,255,255,0.05);
    padding: 12px 15px;
    border-radius: 12px;
    margin: 10px auto;
    width: 90%;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
  }

}

