
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
     font-family: "Poppins", sans-serif;
     padding: 0;
     margin: 0;
}
/* GLOBAL COLORS (Sri Yantra Theme) */
:root {
  --primary-color: #0b4b8a; /* Deep Blue */
  --secondary-color: #C00000; /* Bright Red */
  --accent-color: #FFA500; /* Orange/Gold */
  --success-color: #228B22; /* Green */
  --purple-color: #800080; /* Purple */
  --text-light: #ffffff;
}


/* Reset some default spacing */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
}
/* Base navbar */
  .custom-navbar {
    background: #ffffff;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid #eee;
  }

  /* Logo */
  .nav-logo {
    height: 100px;
    transition: transform 0.3s ease;
  }

  /* Navbar links */
  .nav-link {
    position: relative;
    font-weight: 500;
    color: #333;
    padding: 0.5rem 0.75rem;
    transition: color 0.3s ease;
  }

  .nav-link:hover {
    color: #0b4b8a;
  }

  /* Underline animation */
  .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: #0b4b8a;
    transition: width 0.3s ease;
  }
.logoname{
  color: #0047AB;
}
  /* Hover & active underline */
  .nav-link:hover::after,
  .nav-link.active::after {
    width: 100%;
  }

  /* Active menu link */
  .nav-link.active {
    color: #0b4b8a;
    font-weight: 600;
  }

  .active{
    color: #0047AB;
  }

  .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #0047ab;
}

  /* Scroll effect */
  .scrolled {
    background: #0b4b8a !important;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);

  }

  .scrolled .nav-link {
    color: white !important;
  }

  .scrolled .nav-link.active::after {
    background-color: #fff;
  }

  .scrolled .logoname {
    color: #ffffff;
  }

  .nav-link::after {
    background-color: #0b4b8a;
    
  }
/* (Optional) Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url("img/hero-bg.jpg") center/cover no-repeat;
  color: var(--text-light);
  text-align: center;
  padding: 120px 15px;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
  color: var(--accent-color);
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Custom Buttons */
.btn-custom {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  transition: background 0.3s ease;
}

.btn-custom:hover {
  background-color: var(--accent-color);
  color: black;
}
/* ================= Hero Section ================= */
#hero {
  position: relative;
  height: 90vh; /* Full hero height */
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* ================= Slides ================= */
.custom-carousel {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
  transform: scale(1.05);
}

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

/* ================= Captions ================= */
.slide-caption {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: #fff;
  text-shadow: 2px 2px 4px #ffffff;
  animation: fadeInUp 1s ease forwards;
}

.slide-caption h5 {
  font-size: 4rem;
  color: #0047AB; /* Heading color */
  margin-bottom: 0.5rem;
}

.slide-caption p {
  font-size: 1.3rem;
}

/* ================= Controls ================= */
.carousel-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-controls button {
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  color: #fff;
  width: 45px;
  height: 45px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-controls button:hover {
  background: rgba(0,0,0,0.8);
  transform: scale(1.1);
}

/* ================= Caption Animation ================= */
@keyframes fadeInUp {
  0% {opacity:0; transform: translateY(30px);}
  100% {opacity:1; transform: translateY(0);}
}

/* ================= Responsive ================= */
@media (max-width: 992px) {
  .slide-caption h5 {
    font-size: 2rem;
  }
  .slide-caption p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .slide-caption {
    left: 5%;
    bottom: 15%;
  }
  .slide-caption h5 {
    font-size: 2rem;
  }
  .slide-caption p {
    font-size: 0.9rem;
  }
}

/* ================= Info Section Modern ================= */
.info-section {
  padding: 100px 0;
  background-color: #f4f7fa;
  overflow: hidden;
}

.info-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

/* Left Image with overlay shape */
.info-img {
  position: relative;
  flex: 1;
  min-width: 300px;
  overflow: hidden;
  border-radius: 20px;
}

.info-img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transform: translateX(-50px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

/* Decorative overlay shape */
.img-overlay {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120%;
  height: 120%;
  background: rgba(11, 75, 138, 0.2);
  border-radius: 50%;
  z-index: 0;
}

/* Right Content Card */
.info-content {
  flex: 1;
  min-width: 300px;
  transform: translateX(50px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
  z-index: 1;
}

.content-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
}

.content-card h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #0b4b8a;
}

.content-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.content-card ul {
  list-style: disc inside;
  margin-bottom: 25px;
}

.content-card .btn {
  background-color: #0b4b8a;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.content-card .btn:hover {
  background-color: #ee2c33;
  transform: translateY(-3px);
}

/* ================= Scroll Animation ================= */
.scroll-animate {
  transform: translateX(0);
  opacity: 1 !important;
}

/* Responsive */
@media (max-width: 992px) {
  .info-row {
    flex-direction: column;
    text-align: center;
  }
  .info-img, .info-content {
    transform: translateX(0);
  }
}
.content-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify; /* ✅ Makes paragraph justified */
}

.content-card ul {
  list-style: disc inside;
  margin-bottom: 25px;
  text-align: justify; /* ✅ Makes list justified too */
}

/* Reverse layout for alternating sections */
.reverse-layout {
  flex-direction: row-reverse;
}

@media (max-width: 992px) {
  .reverse-layout {
    flex-direction: column;
  }
}

/* ================= Modern About Section ================= */
.about-section {
  padding: 100px 0;
  background: linear-gradient(to right, #f4f7fa, #ffffff);
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* Left Content Styling */
.about-content {
  flex: 1;
  min-width: 300px;
  transform: translateY(50px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

.about-content .sub-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #ee2c33;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-content .main-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0b4b8a;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: justify;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.about-stats .stat h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #0b4b8a;
  margin: 0;
}

.about-stats .stat p {
  font-size: 0.9rem;
  color: #333;
  margin: 0;
}

.about-content .btn {
  background: #0b4b8a;
  color: #fff;
  padding: 12px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.about-content .btn:hover {
  background: #ee2c33;
  transform: translateY(-3px);
}
/* ================= Modern About Section ================= */
.about-section {
  padding: 100px 0;
  background: linear-gradient(to right, #f4f7fa, #ffffff);
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* Left Content Styling */
.about-content {
  flex: 1;
  min-width: 300px;
  transform: translateY(50px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

.about-content .sub-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #ee2c33;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-content .main-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0b4b8a;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: justify;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.about-stats .stat h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #0b4b8a;
  margin: 0;
}

.about-stats .stat p {
  font-size: 0.9rem;
  color: #333;
  margin: 0;
}

.about-content .btn {
  background: #0b4b8a;
  color: #fff;
  padding: 12px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.about-content .btn:hover {
  background: #ee2c33;
  transform: translateY(-3px);
}

/* About Section */
.about-section {
  padding: 80px 20px;
  background: #f9fafb; /* Light background for contrast */
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left Content */
.about-content {
  flex: 1;
  min-width: 300px;
}

.sub-heading {
  font-size: 18px;
  font-weight: 600;
  color: #ee2c33; /* Accent color */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.main-heading {
  font-size: 36px;
  font-weight: 700;
  color: #0b4b8a;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

/* Stats Section */
.about-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  flex: 1;
  min-width: 120px;
  transition: transform 0.3s ease;
}

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

.stat h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0b4b8a;
  margin-bottom: 5px;
}

.stat p {
  font-size: 14px;
  color: #555;
}

/* Button Style */
.btn {
  display: inline-block;
  background: #ee2c33;
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn:hover {
  background: #0b4b8a;
  color: #fff;
}

/* Right Image */
.about-img {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-img img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .about-stats {
    justify-content: center;
  }
}

.stat h3 {
  font-size: 36px;
  font-weight: 700;
  color: #0b4b8a;
}

 /* Card hover effect */
  .service-card {
    background: #fff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    cursor: pointer;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  }

  /* Icon gradient animation */
  .text-gradient {
    background: linear-gradient(45deg, #0b4b8a, #ee2c33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: icon-bounce 2s infinite;
  }

  @keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  /* Scroll fade-in animation */
  .service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }

  .service-card.visible {
    opacity: 1;
    transform: translateY(0);
  }



.service-card:hover .text-gradient {
  transform: scale(1.2); /* Slight icon zoom on card hover */
}

.service-card:hover {
  transform: scale(1.05); /* Zoom effect */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); /* Shadow on hover */
}

.prime{
  color: #0047AB;
}


/* Full-width gradient banner with auto-changing animation */
#contact-banner {
  background: linear-gradient(-45deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--purple-color));

  animation: gradientAnimation 15s ease infinite;
  border-radius: 1rem;
  margin: 2rem 0;
  transition: all 0.5s ease;
  color: var(--text-light);
  text-align: center;
  padding: 5rem 1rem;
}

/* Gradient Animation Keyframes */
@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Button Styling */
#contact-banner .btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#contact-banner .btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}





.tilt-img:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* Floating background circles */
.bg-circle-1, .bg-circle-2 {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.1;
}

.bg-circle-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
  background-color: var(--primary-color);
  animation: floatCircle 12s ease-in-out infinite;
}

.bg-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -100px;
  background-color: var(--accent-color);
  animation: floatCircle 15s ease-in-out infinite alternate;
}

@keyframes floatCircle {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-20px) translateX(20px); }
  100% { transform: translateY(0) translateX(0); }
}

/* Scroll animation (fade-left / fade-right) handled by AOS */

/* Content hover effect */
#tilt-section .btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#tilt-section .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tilt-img {
    transform: rotate(0deg);
    margin-bottom: 2rem;
  }
}

/* Background + Wrapper */
.sae-info-section {
  background: linear-gradient(135deg, #f8faff, #eef3fb);
}
.sae-info-wrapper {
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 8px 25px rgba(0, 71, 171, 0.1);
}

/* Title Styling */
.sae-title {
  font-size: 2.2rem;
  color: #0047AB;
}
.sae-title span {
  color: #ee2c33;
}

/* Description */
.sae-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

/* Bullet Points with Icons */
.sae-list li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.sae-list i {
  font-size: 1.3rem;
}

/* CTA Button */
.sae-btn {
  background-color: #0047AB;
  color: white;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 71, 171, 0.3);
  transition: 0.3s ease-in-out;
}
.sae-btn:hover {
  background-color: #003580;
  transform: translateY(-3px);
}

/* Image Styling */
.sae-img-wrapper {
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 8px 20px rgba(0, 71, 171, 0.15);
  transition: transform 0.5s ease;
}
.sae-img-wrapper:hover {
  transform: scale(1.05);
}

.sae-right-img {
  border-radius: 25px;
}

.sae-footer {
  background-color: #C00000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.sae-footer-logo {
  max-width: 150px;
}

.sae-footer-about {
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.6;
  text-align: justify;
}

.sae-footer-title {
  font-size: 1.1rem;
  color: #ffffff;
}

.sae-footer-links li {
  margin-bottom: 0.5rem;
}

.sae-footer-links li a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

.sae-footer-links li a:hover {
  color: #ee2c33;
}

.sae-footer p i {
  color: #ee2c33;
}

.justify{
  text-align: justify;
}



/* Base Footer Styling */
.sae-footer {
  /* Set the background color using the primary color variable */
  background-color: var(--primary-color);
  color: var(--text-light) !important; /* Ensure all text is white */
  font-size: 0.95rem; /* Slightly smaller text for a cleaner look */
}

/* Footer Title Styling */
.sae-footer-title {
  /* Optionally use a contrasting color for titles */
  color: var(--accent-color); 
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 5px;
  display: inline-block;
}

/* Links Styling */
.sae-footer-links li a {
  color: var(--text-light);
  text-decoration: none;
  /* Transition for a smooth hover effect */
  transition: color 0.3s ease-in-out;
  line-height: 2; /* Spacing out the links */
  display: block; /* Makes the entire list item clickable area */
}

.sae-footer-links li a:hover {
  /* Highlight links on hover with the accent color */
  color: var(--accent-color);
}

/* General Link/Text Color in Contact Section */
.sae-footer p a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.sae-footer p a:hover {
  color: var(--accent-color);
}

/* Icon Spacing */
.sae-footer .bi {
  color: var(--accent-color); /* Color the icons with an accent color */
  font-size: 1.1rem;
}

/* Credit Text Styling */
.sae-design-credit strong {
  color: var(--accent-color);
}

.mass{
  color: orange;
}



.page-header-section {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}

.page-header-section .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(11, 75, 138, 0.65);
  z-index: -1;
}

.breadcrumb-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: #ffa500; /* Accent hover color */
}

.about-classic-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.about-shape {
  position: absolute;
  top: -50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(0, 71, 171, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.about-img-box img {
  transition: transform 0.6s ease;
}

.about-img-box:hover img {
  transform: scale(1.08);
}

.section-title {
  position: relative;
}

.section-title .title-line {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #C00000; /* Accent classic underline */
  border-radius: 2px;
}

#about ul li {
  margin-bottom: 8px;
  font-weight: 500;
}


.icon-box {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 71, 171, 0.1);
}

#why-choose {
  background: #ffffff;
}

.feature-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
}

.section-title .title-line {
  display: block;
  width: 60px;
  height: 3px;
  background: #C00000;
  margin: 10px auto 0;
  border-radius: 2px;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
}
.title-line {
  display: block;
  width: 60px;
  height: 3px;
  background: #C00000;
  margin: 10px auto 0;
  border-radius: 2px;
}

.service-modern {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}
.service-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
}
.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,71,171,0.08);
}
.title-line {
  display: block;
  width: 60px;
  height: 3px;
  background: #C00000;
  margin: 10px auto 0;
  border-radius: 2px;
}

.highlight-img img {
  transition: transform 0.5s ease;
}
.highlight-img img:hover {
  transform: scale(1.05);
}
.highlight-content h2 {
  position: relative;
}
.highlight-content h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #C00000;
  margin-top: 10px;
  border-radius: 2px;
}

.video-card video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-card:hover video {
  transform: scale(1.05);
}
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.title-line {
  display: block;
  width: 60px;
  height: 3px;
  background: #C00000;
  margin: 10px auto 0;
  border-radius: 2px;
}

.video-thumb {
  overflow: hidden; /* ensures zoom stays inside the container */
}

.video-thumb img {
  transition: transform 0.4s ease; /* smooth zoom effect */
  display: block;
  width: 100%;
  height: auto;
}

.video-thumb:hover img {
  transform: scale(1.1); /* zoom in on hover */
}

.title-line {
  display: block;
  width: 60px;
  height: 3px;
  background: #C00000;
  margin: 10px auto 0;
  border-radius: 2px;
}
.classic-service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.classic-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.classic-service-card h5 {
  font-size: 1.2rem;
}
.classic-service-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Service image container */
.service-img-box {
  width: 100%;
  min-height: 400px;
  height: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Service image styling */
.service-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* List items spacing */
ul.list-unstyled li {
  margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .service-img-box {
    min-height: 300px;
  }
}

@media (max-width: 575px) {
  .service-img-box {
    min-height: 250px;
  }
}

.title-line {
  display: block;
  width: 60px;
  height: 3px;
  background: #C00000;
  margin: 10px auto 0;
  border-radius: 2px;
}
.service-img-box {
  width: 100%;
  min-height: 400px;
  height: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.service-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-img-box img:hover {
  transform: scale(1.05);
}
ul.list-unstyled li {
  margin-bottom: 20px;
}

.service-img-box {
  width: 100%;
  min-height: 400px;
  height: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.service-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-img-box img:hover {
  transform: scale(1.05);
}
ul.list-unstyled li {
  margin-bottom: 20px;
}

.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

/* Floating button style */
.float-btn {
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  cursor: pointer;
  animation: float 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.1);
}

.floating-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 575px) {
.float-btn{
   width: 80px;
  height: 80px;
}
}


/* Mobile specific */
@media (max-width: 432px) {
  .custom-navbar .nav-logo {
    width: 65px; /* smaller logo */
    height: 65px;
  }

  .custom-navbar .logoname {
    font-size: 0.85rem; /* smaller text */
  }

  .custom-navbar .navbar-nav {
    text-align: center;
  }

  .custom-navbar .nav-item {
    margin-bottom: 0.3rem; /* spacing between links */
  }

  .custom-navbar .nav-link {
    font-size: 0.85rem;
    padding: 0.4rem 0.5rem;
  }

  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }

  .navbar-collapse {
    background-color: #f8f9fa; /* light bg for collapsed menu */
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
  }
}