/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/*==================================================Top bar============================================*/

.top-bar {
  background: #113F72;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  font-size: 14px;
  font-family: 'Cambo', serif;
  height: 42px;
  flex-wrap: wrap;
}

.top-bar .contact-info span {
  margin-right: 15px;
  display: inline-block;
}

.top-bar .social-icons a {
  color: white;
  margin-left: 10px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .top-bar {
    display: none;
  }}

/*====================================================Navbar===========================================*/
.navbar {
  width: 100%;
  background: #0d63b5;
  border-radius: 30px;
  height: 110px;
  font-family: 'Cambo', serif;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
}

.logo img {
  height: 90px;
  width:auto;
}
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.nav-menu a:hover {
  background: #ffffff33;
  color: #fff;
}
.nav-menu a.active {
  background: #fff;
  color: #0d63b5;
  font-weight: bold;
}

/*================================================Hamburger============================================*/
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive */
@media (max-width: 768px) {
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 550px;
    background: rgba(13, 99, 181, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    z-index: 1000;
}

.nav-menu.open {
    right: 0;
}

.nav-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
}

.nav-menu a {
    font-size: 18px;
    padding: 12px 20px;
    color: #fff;
    text-align: center;
    width: 100%;
    transition: background 0.3s ease;
}

.nav-menu a:hover {
    background: #ffffff33;
}

.nav-menu a.active {
    background: #fff;
    color: #0d63b5;
    font-weight: bold;
}

.hamburger {
    display: flex;
}
}

@media (min-width: 769px) and (max-width: 1024px) {
.navbar {
    height: 90px;
    border-radius: 20px;
}

.logo img {
    height: 70px;
}

.nav-menu ul {
    gap: 15px;
}

.nav-menu a {
    font-size: 12px;
    padding: 8px 12px;
}

.navbar-container {
    padding: 0 15px;
}
}
@media(max-width:1024px){
  .nav-menu ul{
  margin-left:-150px;
  }
}

/* For medium to large desktops: 1025px to 1599px */
@media (min-width: 1025px) and (max-width: 1599px) {
  .navbar-container {
    padding: 0 15px;
  }

  .logo img {
    height: 80px;
  }

  .nav-menu ul {
    gap: 20px;
  }

  .nav-menu a {
    font-size: 15px;
    padding: 9px 14px;
  }
}
/*=============================================Home page==============================================*/
/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  background: #f9f9f9;
}
.hero-text {
  flex: 1;
  padding-right: 20px;
}
.hero-text h1 {
  font-size: 32px;
  margin-bottom: 20px;
  font-family: Cambo;
  text-align: center;
  color: #113F72;
margin-top: -20px;
}
.hero-text p {
  font-size: 24px;
  margin-bottom: 25px;
  font-family:  Libre Medium;
  text-align: center;
  color: #0D63B5;
}
.hero-buttons {
  display: flex;
  gap: 15px;
}
.btn {
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}
.btn.primary {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d47a1, #08306b);
  color: white;
  width: 316px;
  height: 47px;
  border-radius:40px;
  font-family: Abhaya Libre Medium;
  font-size: 20px;
  box-shadow: 5px 10px 4px #98A0B7;
  margin-top: 20px;
}
.btn.secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0D63B5;
  color: white;
   width: 316px;
  height: 47px;
  border-radius: 40px;
  font-family: Abhaya Libre Medium;
  font-size: 20px;
  box-shadow: 5px 10px 4px #98A0B7;
  margin-top: 20px;
}
.btn:hover {
    transform: scale(1.05);
  background: linear-gradient(135deg, #08306b, #061f44);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
@keyframes lineGlow {
  0%, 100% { box-shadow: 0 0 10px #fff, 0 0 20px #42a5f5; }
  50% { box-shadow: 0 0 20px #fff, 0 0 30px #1e88e5; }
}
.hero-slider-image img {
 
  max-width: 500px;
  height:200px;
  border-radius: 0px;
  margin-right: 30px;
  margin-left: 1px;
  margin-top: -100px;
  
}
.hero-slider {
  position: relative;
  width: 100%;
  max-height: 350px;
  overflow: hidden;
}

.hero-slide {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  object-fit: cover;
  transition: opacity 1s ease-in-out;
  opacity: 0;
}

.hero-slide.active {
  display: block;
  opacity: 1;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 30px 15px;
    text-align: center;
  }

  .hero-text {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
.btn.primary,
  .btn.secondary {
    width: 90%;
    height: 60px;
    font-size: 20px;
    border-radius: 30px;
  }

  .hero-slider-image img {
    max-width: 90%;
    height: auto;
    margin: 0 auto;
    margin-top: -50px;
    border-radius: 20px;
  }

  .hero-slider {
    max-height: none;
    width: 100%;
  }

  .hero-slide {
    position: relative;
  }
}
/*===End Mobile Res*/
.about-section {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
  background: #ffffff;
}

.about-box {
  background: linear-gradient(135deg, #1565c0, #1e88e5, #42a5f5);
  color: #fff;
  padding: 50px 40px;
  max-width: 1200px;
  width: 100%;
  border-radius: 60px;
  text-align: center;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
  margin-bottom: -50px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.35);
}

/* Headings */
.about-box h2 {
  font-family: Cambo, serif;
  font-size: 32px;
  margin-bottom: 25px;
  position: relative;
}

.about-box h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #fff;
  margin: 10px auto 0;
  border-radius: 2px;
  animation: lineGlow 2s infinite;
}

/* Paragraphs */
.about-box p {
  font-family: 'Abhaya Libre Medium', serif;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #f0f8ff;
  text-shadow: 0 0 5px rgba(255,255,255,0.2);
}

/* Button */
.about-btn {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, #0d47a1, #08306b);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-family: 'Abhaya Libre Medium', serif;
  font-size: 20px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, background 0.4s ease, box-shadow 0.3s ease;
  transform: scale(1); /* ensure default scale */
  display: inline-block; 
}

.about-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #08306b, #061f44);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}


/* Subtle glowing line under heading */
@keyframes lineGlow {
  0%, 100% { box-shadow: 0 0 10px #fff, 0 0 20px #42a5f5; }
  50% { box-shadow: 0 0 20px #fff, 0 0 30px #1e88e5; }
}

/* Responsive */
@media screen and (max-width: 768px) {
  .about-box {
    padding: 30px 20px;
    border-radius: 40px;
  }

  .about-box h2 {
    font-size: 28px;
  }

  .about-box p {
    font-size: 18px;
  }

  .about-btn {
    font-size: 18px;
    padding: 8px 20px;
  }
}

/* Tablets and Smaller */
@media (max-width: 991px) {
  .about-box {
    padding: 30px;
    border-radius: 40px;
  }

  .about-box h2 {
    font-size: 36px;
  }

  .about-box p {
    font-size: 22px;
  }

  .about-btn {
    font-size: 22px;
    padding: 10px 18px;
  }
}

/* Mobile Phones */
@media (max-width: 600px) {
  .about-section {
    padding: 30px 15px;
  }

  .about-box {
    padding: 20px;
    border-radius: 30px;
    box-shadow: 10px 10px 5px #134d5c;
  }

  .about-box h2 {
    font-size: 28px;
  }

  .about-box p {
    font-size: 14px;
  }

  .about-btn {
    font-size: 18px;
    padding: 8px 16px;
    margin-bottom: 30px;
  }
}
/*===End-Mobile-Res==*/
/* Services Section */
.services-section {
  text-align: center;
  padding: 60px 20px;
}

.section-title {
  font-size: 28px;
  color: #113F72;
  margin-bottom: 10px;
  font-family: cambo;
  margin-top: 20px;
}

.services-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service-card {
   background-color: #ffffff;
   border: 1px solid #ddd;
  border-radius: 15px;
  padding: 20px 10px;
  min-height: 120px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
max-width: 80%;
}
.service-card img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #113f72;
  text-decoration: none;

}
.service-card p {
  font-size: 16px;
  line-height: 1.6;
  color:#0D63B5 ;
}
.service-card{
  position: relative;
  background-color: #ffffff; 
  overflow: hidden; 
}

.service-card::before {
  content: "";
  position: absolute;
  bottom: 0; 
  left: 0;
  width: 100%;
  height: 0; 
  background-color: #f0f6fc; 
  z-index: 0; 
  transition: height 0.3s linear; 
}

.service-card:hover::before {
  height: 100%; 
}

.service-card * {
  position: relative; 
  z-index: 1;
}

.Service-btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
   background: linear-gradient(135deg, #0d47a1, #08306b);
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  transition: 0.3s;
  font-family: Abhaya Libre Medium;
  font-size: 20px;
   margin-left: auto; 
    display: block;    
  width: fit-content;
   margin-right: 180px;
}
.Service-btn:hover {
    transform: scale(1.05);
  background: linear-gradient(135deg, #08306b, #061f44);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
@media (max-width: 768px) {
  .services-section {
    padding: 40px 15px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .services-container {
    gap: 20px;
  }

  .service-card {
    padding: 25px 20px;
    min-height: 180px;
  }

  .service-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }

  .service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 14px;
    line-height: 1.4;
  }

  .Service-btn {
    font-size: 22px;
    padding: 8px 16px;
    margin-right: auto;
    margin-left: auto;
    display: block;
    width: fit-content;
  }
}
/* Why Choose Us */
.choose-us {
  padding: 60px 20px;
  background: #f5f7fa; /* optional soft background for contrast */
}

.choose-box {
  max-width: 90%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #1565c0, #1e88e5, #42a5f5);
  color: #fff;
  border-radius: 25px;
  padding: 40px;
  margin: -80px auto 0 auto; 
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

.choose-text {
  max-width: 50%;
  font-family: Cambo, sans-serif;
  font-size: 18px;
}

.choose-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}
.choose-box h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #fff;
  margin: 10px auto 0;
  border-radius: 2px;
  animation: lineGlow 2s infinite;
}
.choose-text ul {
  margin: 20px 0;
  padding-left: 30px;
  font-family: Cambo, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.choose-text ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.choose-text ul li::before {
  position: absolute;
  left: 0;
  color: #d6e1f0;
  font-weight: bold;
}

.choose-image img {
  margin-left: 10px;
  max-width: 500px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.learn-btn {
  display: inline-block;
  padding: 10px 25px;
  margin-top: 20px;
  background: linear-gradient(135deg, #0d47a1, #08306b);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: transform 0.3s ease, background 0.4s ease, box-shadow 0.3s ease;
  font-family: 'Abhaya Libre Medium', serif;
  font-size: 18px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.learn-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #08306b, #061f44);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

@media (max-width: 767px) {
  .choose-box {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .choose-image {
    display: none;
  }

  .choose-text {
    max-width: 100%;
    font-size: 24px;
  }

  .choose-text h2 {
    font-size: 32px;
  }

  .choose-text ul {
    padding-left: 20px;
    font-size: 18px;
    text-align: left;
  }

  .learn-btn {
    font-size: 20px;
    padding: 8px 16px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .choose-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    margin-top: -40px;
  }

  .choose-text {
    max-width: 100%;
    font-size: 28px;
  }

  .choose-text h2 {
    font-size: 36px;
  }

  .choose-text ul {
    font-size: 20px;
    padding-left: 20px;
    text-align: left;
  }

  .choose-image img {
   display: none;
  }

  .learn-btn {
    font-size: 22px;
    padding: 8px 18px;
    margin-top: 15px;
  }
}

/*==End-Mobile-Res==*/
/* CTA */
.cta {
  text-align: center;
  padding: 60px 20px;
  background: #f2f7fc;
  margin-top: -60px;
  font-family: cambo;
}
.cta h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.cta p {
  font-size: 18px;
  margin-bottom: 30px;
}
.btn-contact{
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, #0d47a1, #08306b);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-family: 'Abhaya Libre Medium', serif;
  font-size: 20px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, background 0.4s ease, box-shadow 0.3s ease;
  transform: scale(1); /* ensure default scale */
  display: inline-block; 
}
.btn-contact:hover{
 transform: scale(1.05);
  background: linear-gradient(135deg, #08306b, #061f44);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}


/* Subtle glowing line under heading */
@keyframes lineGlow {
  0%, 100% { box-shadow: 0 0 10px #fff, 0 0 20px #42a5f5; }
  50% { box-shadow: 0 0 20px #fff, 0 0 30px #1e88e5; }
}
/*=============================================About Us Page===========================================*/
.about {
  text-align: center;
  padding: 60px 20px;
  background-color: #ffffff;
}
.about h1 {
  font-family: Cambo;
  font-size: 32px;
  margin-bottom: 20px;
  color: #113F72;
  margin-top: -40px;
}
.about p {
  font-size: 24px;
  color: #0D63B5;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
  font-family: Libre Medium;
}
/* Mission Section */
.mission {
  max-width: 70%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
border-radius: 25px;
  padding: 40px;
 margin: -40px auto 0 auto; 
  text-align: center;
  padding: 60px 20px;
background: linear-gradient(135deg, #1565c0, #1e88e5, #42a5f5);
box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

.mission h2 {
  font-family: Cambo;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 32px;
  margin-top: 10px;
  margin: 0;
}
.mission h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #fff;
  margin: 10px auto 0;
  border-radius: 2px;
  animation: lineGlow 2s infinite;
}
.mission p {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 24px;
  color: #ffffff;
  font-family: Libre Medium;
}
/* Story Section */
.story {
  max-width: 80%;
  height: 400px;
  margin: 60px auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: -50px;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 180px; /* changed from 30px to 50px */
}

.story-image {
  width: 20%;
  height: 80%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-left: 30px;
}

.feedback-text {
  flex: 1;
}

.s-headline {
  font-size: 32px;
  color: #113f72;
  margin-bottom: 15px;
  font-weight: bold;
  font-family: Cambo;
  margin-top: -80px;
}

.story p {
  font-size: 24px;
  color: #0d63b5;
  line-height: 1.3; 
  font-family: Libre Medium;
   text-align: justify;
   justify-content: right;
}
/*===== Contact Section ========*/
.contact {
  display: flex;
  justify-content: space-between; 
  align-items: flex-start;
  gap: 20px;
  padding: 30px 30px;
  flex-wrap: wrap;
  background:#d8e5f1;
  margin-top: -120px;
}
.contact-text {
  max-width: 400px;
  margin: 0;
  text-align: center; 
  margin-top:0;
}
.contact-text h2 {
  color: #113F72;
  margin-bottom: 20px;
  font-family: Cambo;
  font-size: 32px;
  margin: 0 30px 20px 0;
  margin-left: 100px;
  text-align: center;
}
.contact-text p {
  font-family: 'Libre Medium';
  font-size: 24px;
  color: #0D63B5;
  line-height: 1.6;        
  max-width: 600px; 
  margin-left: 100px;
  text-align: center;
}
/*=====form====*/
.contact-form {
  background: #eaf0f5;
  padding: 15px; 
  border-radius: 10px;
  width: 600px; 
  max-width: 90%; 
  margin-left: auto;
  margin-right: 30px;
}

.contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 2px; 
  font-size: 16px; 
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 6px; 
  margin-bottom: 8px; 
  border-radius: 5px;
  border: 1px solid #ccc;
  font-family: Libre Medium;
  font-size: 16px; 
  background-color: #fff;
  color: #333;
}

.contact-form button {
  width: 100%;
  background: #1a4fa3;
  color: #fff;
  padding: 8px; 
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: linear-gradient(135deg, #08306b, #061f44);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* Subtle glowing line under heading */
@keyframes lineGlow {
  0%, 100% { box-shadow: 0 0 10px #fff, 0 0 20px #42a5f5; }
  50% { box-shadow: 0 0 20px #fff, 0 0 30px #1e88e5; }
}

/* General adjustments for mobile */
@media (max-width: 768px) {
  
  /* About Section */
  .about {
    padding: 40px 15px;
  }
  .about h1 {
    font-size: 26px;
    margin-top: -20px;
  }
  .about p {
    font-size: 18px;
    max-width: 100%;
    line-height: 1.4;
  }

  /* Mission Section */
  .mission {
    flex-direction: column;
    max-width: 95%;
    padding: 40px 20px;
    margin: -20px auto 20px auto;
  }
  .mission h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .mission p {
    font-size: 18px;
    max-width: 100%;
  }

  /* Story Section */
  .story {
    max-width: 95%;
    height: auto;
    padding: 20px;
    margin-bottom: 20px;
  }
  .story-content {
    flex-direction: column;
    gap: 20px;
  }
  .story-image {
    width: 50%;
    height: auto;
    margin-left: 0;
    margin-bottom: 15px;
  }
  .feedback-text {
    flex: unset;
    text-align: center;
  }
  .s-headline {
    font-size: 26px;
    margin-top: 0;
  }
  .story p {
    font-size: 18px;
    line-height: 1.4;
    text-align: justify;
  }

  /* Contact Section */
  .contact {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 15px;
    margin-top: 0;
  }
  .contact-text {
    max-width: 100%;
    margin-left: 0;
    text-align: center;
  }
  .contact-text h2 {
    font-size: 26px;
    margin-left: 0;
  }
  .contact-text p {
    font-size: 18px;
    max-width: 100%;
    margin-left: 0;
  }

  /* Contact Form */
  .contact-form {
    width: 100%;
    margin-right: 0;
    padding: 15px;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 14px;
    padding: 5px;
  }
  .contact-form button {
    font-size: 16px;
    padding: 8px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {

  /* About Section */
  .about {
    padding: 50px 20px;
  }
  .about h1 {
    font-size: 28px;
    margin-top: -20px;
  }
  .about p {
    font-size: 20px;
    max-width: 90%;
  }

  /* Mission Section */
  .mission {
    flex-direction: column;
    max-width: 90%;
    padding: 50px 25px;
    margin: -30px auto 30px auto;
  }
  .mission h2 {
    font-size: 28px;
  }
  .mission p {
    font-size: 20px;
    max-width: 100%;
  }

  /* Story Section */
  .story {
    max-width: 90%;
    height: auto;
    padding: 30px;
    margin-bottom: 30px;
  }
  .story-content {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }
  .story-image {
    width: 10%;
    height: auto;
    margin-left: 0;
  }
  .feedback-text {
    flex: unset;
    text-align: center;
  }
  .s-headline {
    font-size: 28px;
    margin-top: 0;
  }
  .story p {
    font-size: 20px;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 40px;
  }

  /* Contact Section */
  .contact {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 25px 20px;
    margin-top: -60px;
  }
  .contact-text {
    max-width: 90%;
    margin-left: 0;
    text-align: center;
  }
  .contact-text h2 {
    font-size: 28px;
    margin-left: 0;
  }
  .contact-text p {
    font-size: 20px;
    max-width: 100%;
    margin-left: 0;
  }

  /* Contact Form */
  .contact-form {
    width: 90%;
    margin-right: 0;
    padding: 15px;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 15px;
    padding: 6px;
  }
  .contact-form button {
    font-size: 17px;
    padding: 8px;
  }

}

@media (min-width: 1025px) and (max-width: 1599px) {
.about,.mission {
    padding: 60px 40px;
}

.about h1,
.mission h2,
.s-headline,
.contact-text h2 {
    font-size: 30px;
    margin-top: -30px;
}

.about p,
.mission p,
.story p,
.contact-text p {
    font-size: 22px;
    line-height: 1.5;
    padding: 0 30px;
}

.story {
    height: auto;
    padding: 40px;
    margin: 50px auto;
    
}

.story-content {
    flex-direction: row;
    gap: 100px;
    text-align: left;
    margin-bottom: 20px;
}

.story-image {
    width: 180px;
    height: 180px;
    margin-left: 0;
    margin-top: -60px;
}

.contact {
    flex-direction: row;
    align-items: flex-start;
    padding: 50px;
    margin-top: -80px;
    gap: 40px;
}

.contact-text {
    max-width: 500px;
    margin-left: 0;
    text-align: center;
    margin-top: 180px;
}

.contact-form {
    width: 600px;
    padding: 30px;
    margin-left: auto;
    margin-right: 0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    font-size: 16px;
    padding: 10px;
}

.contact-form button {
    font-size: 16px;
    padding: 12px;
}
}
/*========================================Services Page=================================================*/
/* Services section */
.services {
  text-align: center;
  padding: 50px 20px;
  min-height: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.services h1 {
  font-family: Cambo;
  font-size: 28px;
  color: #113f72;
  margin-top: -70px;
}
.services .subtitle {
  font-family: Libre Medium;
  font-size: 24px;
  color: #0D63B5;
  max-width: 700px;
  margin: 0 auto 40px;
}
/* Responsive Adjustments */

.services-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap:40px;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
}
.service-card-new {
  background-color: #fff;
  border: 1px solid #111111;
  border-radius: 15px;
  padding: 40px 30px;
  min-height: 280px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card-new img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}
.service-card-new h3 {
  font-size: 32px;
  margin-bottom: 12px;
  color: #113f72;
}
.service-card-new p {
  font-size: 16px;
  line-height: 1.6;
  color:#0D63B5 ;
}
.service-card-new {
  position: relative;
  background-color: #ffffff; 
  overflow: hidden; 
}

.service-card-new::before {
  content: "";
  position: absolute;
  bottom: 0; 
  left: 0;
  width: 100%;
  height: 0; 
  background-color: #f0f6fc; 
  z-index: 0; 
  transition: height 0.3s linear; 
}

.service-card-new:hover::before {
  height: 100%; 
}

.service-card-new * {
  position: relative; 
  z-index: 1;
}


.service-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 20px;
  background-color: #0D63B5;
  color: white;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease;
}
.service-btn:hover {
  background-color: #0d78ce;
}
.service-card-new {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 30px 20px;
  width:550px;
  height: 600px;
}
.service-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.service-card-new img {
  width:400px;
  height: 300px;
  margin-bottom: 15px;
object-fit: contain;
}
.service-card-new h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #113f72;
}
.service-card-new p {
  color: #0D63B5;
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 540px) {

  /* Main Services Section */
  .services {
    padding: 60px 15px;
    min-height: auto;
    margin-top: 20px;
  }

  .services h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .services .subtitle {
    font-size: 18px;
    line-height: 1.4;
    max-width: 90%;
    margin: 0 auto 30px;
  }

  /* Services Container */
  .services-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    max-width: 100%;
  }

  /* Each Card */
  .service-card-new {
    width: 100%;
    height: auto;
    padding: 20px 15px;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  }

  .service-card-new img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    margin: 0 auto 15px;
  }

  .service-card-new h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .service-card-new p {
    font-size: 14px;
    line-height: 1.5;
    padding: 0 5px;
  }

  .service-btn {
    font-size: 13px;
    padding: 8px 18px;
  }

  /* Animation Delay Tweaks for smoother load */
  .services,
  .services h1,
  .services .subtitle,
  .services-container {
    animation-delay: 0.3s !important;
  }
}
@media (max-width: 767px) {

  /* Services Section */
  .services {
    padding: 60px 20px;
    min-height: auto;
    margin-top: 20px;
  }

  .services h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .services .subtitle {
    font-size: 20px;
    line-height: 1.4;
    max-width: 100%;
    margin: 0 auto 30px;
    padding: 0 10px;
  }

  /* Services Container */
  .services-container {
    grid-template-columns: 1fr; 
    gap: 25px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
  }

  /* Service Card */
  .service-card-new {
    width: 100%;
    height: auto;
    padding: 20px 15px;
  }

  .service-card-new img {
    width: 100%;
    height: auto;
    max-width: 250px;
    margin: 0 auto 15px;
    object-fit: contain;
  }

  .service-card-new h3 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .service-card-new p {
    font-size: 16px;
    line-height: 1.5;
    padding: 0 10px;
  }

  .service-btn {
    font-size: 14px;
    padding: 8px 18px;
  }

  /* Animation Delay Adjustments */
  .services,
  .services h1,
  .services .subtitle,
  .services-container {
    animation-delay: 0.3s !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {

  /* Services Section */
  .services {
    padding: 70px 30px;
    min-height: auto;
  }

  .services h1 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .services .subtitle {
    font-size: 24px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.4;
  }

  /* Services Container */
  .services-container {
    grid-template-columns: 1fr 1fr; /* Two columns for tablets */
    gap: 30px;
    max-width: 90%;
    margin: 0 auto;
  }

  /* Service Card */
  .service-card-new {
    width: 100%;
    height: auto;
    padding: 25px 20px;
    border-radius: 12px;
  }

  .service-card-new img {
    width: 300px;
    height: 200px;
    object-fit: contain;
    margin: 0 auto 15px;
  }

  .service-card-new h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .service-card-new p {
    font-size: 16px;
    line-height: 1.5;
    padding: 0 10px;
  }

  .service-btn {
    font-size: 14px;
    padding: 8px 18px;
  }

  /* Animation Timing Adjustments */
  .services,
  .services h1,
  .services .subtitle,
  .services-container {
    animation-delay: 0.4s !important;
  }
}
@media (min-width: 1025px) and (max-width: 1280px) {

  .services {
    padding: 80px 40px;
    min-height: auto;
  }

  .services h1 {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .services .subtitle {
    font-size: 28px;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.5;
  }

  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 95%;
    margin: 0 auto;
  }

  .service-card-new {
    width: 100%;
    height: auto;
    padding: 30px 25px;
    border-radius: 12px;
  }

  .service-card-new img {
    width: 350px;
    height: 240px;
    object-fit: contain;
    margin-bottom: 15px;
  }

  .service-card-new h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .service-card-new p {
    font-size: 16px;
    line-height: 1.6;
  }

  .service-btn {
    font-size: 15px;
    padding: 8px 20px;
  }

  /* Animation Delay Adjustments */
  .services,
  .services h1,
  .services .subtitle,
  .services-container {
    animation-delay: 0.4s !important;
  }
}
@media (min-width: 1281px) and (max-width: 1599px) {

  .services {
    padding: 90px 50px;
    min-height: auto;
  }

  .services h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .services .subtitle {
    font-size: 24px;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.5;
  }
  .services-wrapper{
    margin-bottom: -50px;
  }
  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: -20px;
  }

  .service-card-new {
    width: 100%;
    height: auto;
    padding: 40px 30px;
  }

  .service-card-new img {
    width: 400px;
    height: 280px;
    margin-bottom: 20px;
    object-fit: contain;
  }

  .service-card-new h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .service-card-new p {
    font-size: 14px;
    line-height: 1.3;
  }

  .service-btn {
    font-size: 12px;
    padding: 10px 22px;
  }

  /* Animation Timing */
  .services,
  .services h1,
  .services .subtitle,
  .services-container {
    animation-delay: 0.4s !important;
  }
}
/*======================================================Contact Page==================================*/
* {
  box-sizing: border-box;
}

.contact-section {
  padding: 50px 20px;
   background-color: #f9f9f9;
  text-align: center;
  width: 100%;
}
.contact-section h1 {
  font-size: 32px;
  color: #113f72;
  margin-bottom: 10px;
  font-family: Cambo;
  margin-top: -80px
}
.contact-section .intro {
  color: #0d63b5;
  font-size: 24px;
  max-width: 700px;
  margin: 0 auto 40px;
  font-family: Libre Medium;
  margin-top: -60px;
}
.contact-container {
  max-width: 100%;
  margin: auto;
  padding: 50px 20px;
  margin-top: -50px;
  margin-bottom: -40px;
}

.contact-info-box {
  max-width: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 0 auto;
}

.contact-box {
  flex: 1;
  min-width: 250px;
  background: linear-gradient(135deg, #1565c0, #1e88e5, #42a5f5);
  color: #fff;
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.5s ease;
  position: relative;
  overflow: hidden;
}

.contact-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
  background: linear-gradient(135deg, #1e88e5, #1565c0, #42a5f5);
}

.contact-img {
  width: 60%;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.contact-box:hover .contact-img {
  transform: scale(1.1) rotate(-5deg);
}

.contact-detail {
  display: inline-block;
  margin-top: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}

.contact-detail:hover {
  color: #dfe7f0; 
  transform: scale(1.1);
  text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

/* Optional: subtle pulsing effect for icons or details */
.contact-detail::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  margin: 8px auto 0;
  border-radius: 50%;
  background-color: #fff;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1); opacity: 0.6; }
}

.form-map-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
  margin-top: 60px;
}

.contact-form {
  flex: 1;
  min-width: 40%;
  margin-top: 20px;
  margin-left: 40px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-form label {
  display: block;
  text-align: left;
  margin-bottom: 5px;
  font-weight: bold;
  margin-left: 10px;
}

input, textarea {
  padding: 10px;
  font-size: 16px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  padding: 12px;
  background-color: #0d47a1;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background-color: #093170;
}

.map-container {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.map-container h2 {
  margin-bottom: 20px;
  font-size: 36px;
  color: #113f72;
}

.map-container iframe {
  width: 80%;
  height: 500px;
  border-radius: 8px;
  border: none;
}

.info-columns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.info-item {
  cursor: pointer;
}

.info-logo {
  width: 150px;
  height: auto;
}

/* Responsive tweaks */
@media (max-width: 540px) {

  /* Contact Section Layout */
  .contact-section {
    padding: 40px 15px;
    text-align: center;
  }

  .contact-section h1 {
    font-size: 28px;
    margin-top: -20px;
    margin-bottom: 15px;
  }

  .contact-section .intro {
    font-size: 18px;
    margin-top: -10px;
    margin-bottom: 30px;
    max-width: 90%;
    line-height: 1.4;
  }

  /* Contact Info Boxes */
  .contact-info-box {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 100%;
    box-shadow: none;
  }

  .contact-box {
    width: 100%;
    padding: 20px 15px;
    border-radius: 12px;
  }

  .contact-img {
    width: 80%;
    max-width: 180px;
    margin: 0 auto 10px;
  }

  .contact-detail {
    font-size: 15px;
    margin-top: 10px;
  }

  /* Form and Map Wrapper */
  .form-map-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .contact-form {
    width: 100%;
    margin-left: 0;
    padding: 0 10px;
  }

  .contact-form label {
    font-size: 14px;
    margin-left: 0;
  }
  .contact-detail{
    font-size: 12px;
  }
  input,
  textarea {
    font-size: 14px;
    padding: 8px;
  }

  button {
    font-size: 12px;
    padding: 10px;
  }

  /* Map Container */
  .map-container {
    width: 100%;
  }

  .map-container h2 {
    font-size: 24px;
  }

  .map-container iframe {
    width: 100%;
    height: 200px;
  }

  /* Info Columns (logos, etc.) */
  .info-columns {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
  }

  .info-logo {
    width: 100px;
  }
}
@media (max-width: 539px) {
  .contact-section h1 {
    font-size: 28px;
    margin-top: -80px;
  }
  .contact-section .intro {
    font-size: 20px;
    margin-top: -50px;
  }

  .contact-info-box {
    flex-direction: column;
    max-width: 100%;
    gap: 15px;
  }

  .contact-box {
    padding: 15px;
    font-size: 14px;
  }

  .contact-img {
    width: 40%;
  }

  .form-map-wrapper {
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
  }

  .contact-form {
    margin-left: 0;
    min-width: 100%;
  }

  .map-container iframe {
    width: 100%;
    height: 300px;
  }

  .map-container h2 {
    font-size: 24px;
  }

  input, textarea {
    font-size: 14px;
  }

  button {
    font-size: 14px;
  }
}
@media (min-width: 540px) and (max-width: 1024px) {
  .contact-section h1 {
    font-size: 32px;
    margin-top: -80px;
  }

  .contact-section .intro {
    font-size: 22px;
    margin-top: -30px;
  }

  .contact-info-box {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    max-width: 100%;
  }

  .contact-box {
    padding: 15px;
    min-width: 150px;
    font-size: 14px;
  }

  .contact-img {
    width: 50%;
  }

  .form-map-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .contact-form {
    margin-left: 0;
    min-width: 100%;
  }

  .map-container iframe {
    width: 100%;
    height: 300px;
  }

  .map-container h2 {
    font-size: 28px;
  }

  .info-logo {
    width: 120px;
  }
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .contact-section h1 {
    font-size: 36px;
    margin-top: -60px;
  }

  .contact-section .intro {
    font-size: 26px;
    margin-top: -40px;
  }

  .contact-info-box {
    gap: 15px;
    max-width: 90%;
  }

  .contact-box {
    min-width: 220px;
    padding: 16px;
    font-size: 14px;
  }

  .contact-img {
    width: 50%;
  }

  .form-map-wrapper {
    gap: 30px;
    margin-top: 40px;
  }

  .contact-form {
    margin-left: 20px;
  }

  .map-container iframe {
    width: 90%;
    height: 350px;
  }

  .map-container h2 {
    font-size: 30px;
  }

  .info-logo {
    width: 130px;
  }
}
@media (min-width: 1281px) and (max-width: 1599px) {
  .contact-section h1 {
    font-size: 32px;
    margin-top: -70px;
  }

  .contact-section .intro {
    font-size: 24px;
    margin-top: -50px;
  }

  .contact-info-box {
    max-width: 85%;
    gap: 20px;
  }

  .contact-box {
    min-width: 240px;
    padding: 18px;
    font-size: 15px;
  }

  .contact-img {
    width: 55%;
  }

  .form-map-wrapper {
    gap: 35px;
  }

  .map-container iframe {
    width: 85%;
    height: 380px;
  }

  .map-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .info-logo {
    width: 140px;
  }
}
.whatsapp-float-text {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(45deg, #25d366, #1aa751, #20b358, #25d366);
  background-size: 400% 400%;
  color: #fff;
  border-radius: 50px;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  overflow: hidden;
  animation: float 3s ease-in-out infinite, gradientShift 8s ease infinite;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* WhatsApp Icon */
.whatsapp-float-text i {
  font-size: 24px;
  margin-right: 12px;
  transition: transform 0.3s;
  color: #fff;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff;
}

/* Text always visible */
.whatsapp-float-text span {
  display: inline-block;
  opacity: 1; /* Always visible */
  transform: translateX(0);
  transition: transform 0.3s;
}

/* Hover Effects */
.whatsapp-float-text:hover {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6), 0 0 15px #25d366, 0 0 30px #20b358;
}

.whatsapp-float-text:hover i {
  transform: rotate(30deg);
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}

/* Animated Gradient Background */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Pulsing Ring */
.whatsapp-float-text::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: rgba(37, 211, 102, 0.4);
  top: 0;
  left: 0;
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1); opacity: 0.5; }
}
/*===================================================Blog Page=========================================*/
/* Blog Section */
.blog-section {
  padding: 40px 20px;
  max-width: 100%;
  background-color: #ffffff;
}

.blog-section h1 {
  text-align: center;
  margin-bottom: 20px;
  font-family: cambo;
  font-size: 30px;
  color: #093170;
  margin-top: -30px;
}

.intro {
  text-align: center;
  max-width: 80%;
  margin: 0 auto 40px;
  font-size: 24px;
 color: #0d63b5;
   font-family: Libre Medium;
}
.header-blog {
  background: linear-gradient(135deg, #1565c0, #1e88e5, #42a5f5);
  color: #ffffff;
  padding: 2rem;
  text-align: center;
  max-width: 60%;
  height: 150px;
  margin: 0 auto; 
  margin-top: -50px;
}
.header-h1{
  font-family: Cambo;
  font-size: 30px;
  font-weight: bold;
  margin-top: 10px;
}
.header-blog h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #fff;
  margin: 10px auto 0;
  border-radius: 2px;
  animation: lineGlow 2s infinite;
}
.header-p{
   font-family: Libre Medium;
   font-size: 24px;
   color:#ffffff;
}
.articles-h1{
  font-size: 28px;
  color: #113f72;
  font-weight: bold;
  font-family: Cambo;
 align-items: left;
 margin-top: 30px;
 margin-left: 60px;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.blog-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  max-width: 350px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 50%;
  height: 150px;
  border-radius: 6px;
  margin-bottom: 15px;
  display: block;
  margin: 0 auto 15px;
}

.blog-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0d63b5;
  text-align: center;
}

.blog-card p {
  font-size: 14px;
   color: #093170;
}
.side-by-side {
  display: flex;
  gap: 5%;
  padding: 2rem;
  flex-wrap: wrap;
}

.categories {
  flex: 0 0 45%;
  background: linear-gradient(135deg, #1565c0, #1e88e5, #42a5f5);
  padding: 1.5rem;
  border-radius: 30px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s ease;
}
.categories:hover {
  transform: translateY(-5px);
}
.category-h2{
  font-size: 24px;
  color: #ffffff;
  font-weight: bold;
  font-family: Cambo;
 text-align: center;
}
.categories h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #fff;
  margin: 10px auto 0;
  border-radius: 2px;
  animation: lineGlow 2s infinite;
}
.category-ul{
font-size: 18px;
color: #ffffff;
font-family: Libre Medium; 
align-items: flex-start;
 justify-content: center;
margin-left: 50px;
}
.help-section {
  flex: 0 0 50%;
  background: linear-gradient(135deg, #1565c0, #1e88e5, #42a5f5);
  padding: 1.5rem;
  border-radius: 30px;
 box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s ease;
}
.help-section:hover {
  transform: translateY(-5px);
}
.help-h2{
  font-size: 32px;
  color: #ffffff;
  font-weight: bold;
  font-family: Cambo;
  text-align: center;
  margin-bottom: 20px;
}
.help-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #fff;
  margin: 10px auto 0;
  border-radius: 2px;
  animation: lineGlow 2s infinite;
}
.help-p{
font-size: 40px;
color: #ffffff;
font-family: Libre Medium; 
align-items: flex-start;
margin-bottom: 40px;
margin-left: 10px;
}
.help-btn {
  display: block;
  margin: 0 auto 20px auto;
  padding: 30px 44px;      
  font-size: 24px;         
  border-radius: 60px;      
  background-color: #ffffff;
  color: #113f72;
  border: none;
  cursor: pointer;
}

.help-btn:hover {
  background-color: #e2e4e9;
  color: #ffffff;
  transform: scale(1.05);
  background: linear-gradient(135deg, #08306b, #061f44);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
/* Subtle glowing line under heading */
@keyframes lineGlow {
  0%, 100% { box-shadow: 0 0 10px #fff, 0 0 20px #42a5f5; }
  50% { box-shadow: 0 0 20px #fff, 0 0 30px #1e88e5; }
}

form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

input[type="email"] {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.blog-bottom {
  max-width: 60%;
  margin: 0 auto; 
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  box-sizing: border-box;
  margin-top: -10px;
  margin-bottom: 20px;
}
.news-h1{
  font-size: 40px;
  color: #113f72;
  font-weight: bold;
  font-family: Cambo;
  
}
.newsletter-description {
 font-size: 24px;
 color: #0d63b5;
 font-family: Libre Medium;
 line-height: 1.5;
}
.news-h2{
color: #113f72;
font-family: cambo;
margin-top: 10px;
}

/* Responsive tweaks */
@media (max-width: 539px) {
  .blog-section h1 {
    font-size: 30px;
  }

  .intro {
    font-size: 18px;
    max-width: 90%;
  }

  .header-blog {
    max-width: 100%;
    height: auto;
    padding: 1rem;
  }
  .header-h1 {
    font-size: 28px;
  }
  .header-p {
    font-size: 20px;
  }

  .articles-h1 {
    font-size: 28px;
    margin-left: 20px;
  }

  .blog-grid {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .blog-card {
    max-width: 90%;
  }
  .blog-card img {
    width: 40%;
    height: auto;
  }

  .side-by-side {
    flex-direction: column;
    gap: 20px;
    padding: 1rem;
  }

  .categories, .help-section {
    flex: 1 1 100%;
    padding: 1rem;
    border-radius: 20px;
  }
  .category-h2, .help-h2 {
    font-size: 30px;
  }
  .category-ul {
    font-size: 20px;
    margin-left: 20px;
  }
  .help-p {
    font-size: 20px;
  }
  .help-btn {
    padding: 15px 25px;
    font-size: 16px;
  }

  .blog-bottom {
    max-width: 90%;
    flex-direction: column;
    text-align: center;
  }
  .news-h1 {
    font-size: 28px;
  }
  .newsletter-description {
    font-size: 18px;
  }
}
@media (min-width: 540px) and (max-width: 1024px) {
  .blog-section h1 {
    font-size: 36px;
  }

  .intro {
    font-size: 26px;
    max-width: 85%;
  }

  .header-blog {
    max-width: 90%;
    height: auto;
    padding: 1.5rem;
  }
  .header-h1 {
    font-size: 36px;
  }
  .header-p {
    font-size: 24px;
  }

  .articles-h1 {
    font-size: 32px;
    margin-left: 40px;
  }

  .blog-grid {
    justify-content: center;
    gap: 25px;
  }
  .blog-card {
    max-width: 45%;
  }
  .blog-card img {
    width: 70%;
    height: auto;
  }

  .side-by-side {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .categories, .help-section {
    width: 80%;
    padding: 1.5rem;
  }
  .category-h2, .help-h2 {
    font-size: 36px;
  }
  .category-ul {
    font-size: 24px;
    margin-left: 30px;
  }
  .help-p {
    font-size: 26px;
  }
  .help-btn {
    padding: 20px 30px;
    font-size: 18px;
  }

  .blog-bottom {
    max-width: 80%;
    text-align: center;
    flex-direction: column;
  }
  .news-h1 {
    font-size: 32px;
  }
  .newsletter-description {
    font-size: 20px;
  }
}
 @media (min-width: 1025px) and (max-width: 1599px) {
  .blog-section {
    padding: 60px 40px;
  }

  .blog-section h1 {
    font-size: 32px;
  }

  .intro {
    font-size: 24px;
    max-width: 75%;
  }

  .header-blog {
    max-width: 60%;
    height: 180px;
    padding: 2rem;
  }
  .header-h1 {
    font-size: 28px;
  }
  .header-p {
    font-size: 20px;
  }

  .articles-h1 {
    font-size: 28px;
    margin-left: 50px;
  }

  .blog-grid {
    justify-content: center;
    gap: 40px;
  }
  .blog-card {
    max-width: 30%;
  }
  .blog-card img {
    width: 60%;
    height: 180px;
  }

  .side-by-side {
    flex-direction: row;
    gap: 4%;
    padding: 2rem;
  }

  .categories, .help-section {
    flex: 0 0 46%;
    padding: 2rem;
  }
  .category-h2, .help-h2 {
    font-size: 32px;
  }
  .category-ul {
    font-size: 28px;
    margin-left: 40px;
  }
  .help-p {
    font-size: 30px;
  }
  .help-btn {
    padding: 25px 35px;
    font-size: 20px;
  }

  .blog-bottom {
    max-width: 70%;
    flex-direction: row;
  }
  .news-h1 {
    font-size: 28px;
  }
  .newsletter-description {
    font-size: 22px;
  }
}
/*===========================================Pricing-Page===============================================*/
.hero-box {
  width: 100%;
  min-height: 250px;  
  background-color: #f9f9f9; 
  padding: 40px 20px;
  box-sizing: border-box;
  text-align: center;
}
.hero-box h1 {
  color: #113f72;      
  font-size: 32px;       
  font-family: Cambo, serif;    
  margin: 50px auto 20px auto;
  margin-top: -5px;
}

.hero-box p {
  color: #0d63b5;      
  font-size: 20px;     
  font-family: 'Libre Medium', serif;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.box-buttons-split {
  display: flex;
  justify-content: center;
  width: 30%;
  margin: 20px auto 0; 
  gap: 20px;
  flex-wrap: wrap;
}

.box-btn {
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: 0.3s;
}

.blue-btn {
  background-color: #0d63b5;
  color: white;
  border: none;
}

.white-btn {
  background-color: white;
  color: #113f72;
  border: 2px solid #0d63b5;
}

.blue-btn:hover,
.white-btn:hover {
  background-color: #03203b;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  color:#ffffff;
  border-color: #03203b ;
}


/* Subtle glowing line under heading */
@keyframes lineGlow {
  0%, 100% { box-shadow: 0 0 10px #fff, 0 0 20px #42a5f5; }
  50% { box-shadow: 0 0 20px #fff, 0 0 30px #1e88e5; }
}
.four-box-section {
  margin-top: 20px;
  width: 100%;
  padding: 40px 0;
  background: linear-gradient(135deg, #1565c0, #1e88e5, #42a5f5);
  border-radius: 50px;
}

.four-box-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  box-sizing: border-box;
  flex-wrap: wrap; /* allow boxes to wrap on smaller screens */
  box-sizing: border-box;
}
.four-box {
  width: 20%;
  height: 450px;
  background-color: #ffffff;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  box-sizing: border-box;
}
.four-box:hover {
  transform: translateY(-8px); /* move up slightly */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* add subtle shadow */
  background-color: #d6e1f0;
}
.four-box h1 {
  font-size: 20px;
  color: #113f72;
  margin-bottom: 10px;
  text-align: center;
  margin-top: 10px;
  font-family: cambo;
}
.box-subtitle {
  font-size: 12px;
  color: #0d63b5;
  margin-top: 5px;
  text-align:center;
  font-family: 'Libre Medium', sans-serif;
  font-weight: bold;
}
.feature-list {
 list-style: disc;
  padding-left: 0;
  margin-top: 10px;
  color: #0f3b64;
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
  display: inline-block;
  margin-bottom: 5px;
}
.pricing-box {
  background-color: #ffffff;
  color: #113f72;
  padding: 5px 5px;
  margin: 5px auto;
  border-radius: 5px;
  font-weight: 600;
  width: fit-content;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.request-box {
  background-color: #ffffff;
  color: #113f72;
  padding: 10px 20px; 
  margin: 10px auto;  
  border-radius: 6px;
  font-weight: 600;
  width: fit-content;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-top: 20px;
}
.choose-plan-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #0d63b5;
  color: white;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Libre Medium', sans-serif;
  margin-bottom: 10px;
  font-size: 12px;
   box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, background 0.4s ease, box-shadow 0.3s ease;
  transform: scale(1); /* ensure default scale */
  display: inline-block; 
}
.choose-plan-btn:hover {
 
  transform: scale(1.05);
  background: linear-gradient(135deg, #08306b, #061f44);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* Subtle glowing line under heading */
@keyframes lineGlow {
  0%, 100% { box-shadow: 0 0 10px #fff, 0 0 20px #42a5f5; }
  50% { box-shadow: 0 0 20px #fff, 0 0 30px #1e88e5; }
}
  .pricing-box,
  .request-box {
    font-size: 12px;
    padding: 10px;
    width: 90%;
  }
/* Keep existing modal background and content */
.modal {
  display: none; 
  position: fixed; 
  z-index: 9999; 
  padding-top: 100px; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.5);
  font-size: 14px;
}

.modal-content {
  background-color:#f2f7fc;
  margin: auto;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  position: relative;
  text-align: center; 
}
.plan-form-h2{
  color: #113f72;
  margin-top: -30px;
  font-size: 18px;
  margin-bottom: 20px;
}
/* Close Button */
.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  
}

/* Logo */
.modal-logo {
  display: block;
  margin: 0 auto 20px auto;
  max-width: 120px;
}

/* Form container using 2-column layout */
.modal-content form {
  display: grid;
  grid-template-columns: 120px 1fr; 
  grid-row-gap: 15px;
  grid-column-gap: 10px;
  align-items: center;
}

/* Labels */
.modal-content label {
  text-align: left;
  font-weight: bold;
   color: #113f72;
}

/* Inputs and select */
.modal-content input,
.modal-content select {
  padding: 10px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
   color: #113f72;
}

/* Full-width submit button spanning both columns */
.modal-content button {
  grid-column: 1 / -1;
  padding: 12px;
  font-size: 14px;
  background-color: #1a4fa3;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.modal-content button:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #08306b, #061f44);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* Subtle glowing line under heading */
@keyframes lineGlow {
  0%, 100% { box-shadow: 0 0 10px #fff, 0 0 20px #42a5f5; }
  50% { box-shadow: 0 0 20px #fff, 0 0 30px #1e88e5; }
}

.add-heading{
  text-align: left;
  color: #113f72;
  font-size: 28px;
  margin-bottom: 20px;
  margin-top: 30px;
  font-family: Cambo;
  margin-left: 100px;
}
.add-detail{
  margin-top: 10px;
  font-size: 18px;
  margin-left: 200px;
  list-style: none;
  color: #14538d;
font-family:'Libre Medium', sans-serif;
}
.checkmark {
  margin-right: 10px; 
  color:  #14538d;
}
html {
  scroll-behavior: smooth;
}
.comparison-table-section {
  scroll-margin-top: 140px; 
}
.comparison-table-section {
  text-align: center;
  margin: 80px auto;
  max-width: 1000px;
  padding: 0 20px;
   margin-top: 30px;
   
}
.comparison-table-section h2 {
  font-size: 28px;
  color: #113f72;
  margin-bottom: 10px;
  font-family: cambo;
}
.table-container {
  overflow-x: auto; 
}
.table-container {
  overflow-x: auto;
  width: 100%;
}
.comparison-table {
  width: 800px;
  min-width: 500px; 
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}
.comparison-table th, .comparison-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #ddd;
  text-align: center;
  font-size: 14px;
  font-family:'Libre Medium', sans-serif;
}
.comparison-table th {
   background: linear-gradient(135deg, #1565c0, #1e88e5, #42a5f5);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: #0d47a1;
  text-align: left;
}

.comparison-table tr:hover {
  background-color: #f5f9ff;
}
@media (max-width: 768px) {
.hero-box h1 {
    font-size: 28px;
}

.hero-box p {
    font-size: 20px;
    padding: 0 10px;
}

.box-buttons-split {
    width: 90%;
    flex-direction: column;
    gap: 10px;
}

.four-box {
    width: 90%;
    height: auto;
    margin-bottom: 20px;
}

.four-box-container {
    gap: 20px;
}

  .modal {
    padding-top: 60px; 
    font-size: 13px;
  }

  .modal-content {
    width: 90%;          
    max-width: none;    
    padding: 20px;
    border-radius: 8px;
  }

  .plan-form-h2 {
    font-size: 16px;
    margin-top: -20px;
    margin-bottom: 15px;
  }

  .modal-logo {
    max-width: 80px;
    margin-bottom: 15px;
  }

  /* Stack form elements vertically instead of 2-column */
  .modal-content form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .modal-content label {
    text-align: left;
    font-size: 14px;
  }

  .modal-content input,
  .modal-content select {
    font-size: 14px;
    padding: 10px;
  }

  .modal-content button {
    font-size: 15px;
    padding: 12px;
  }

  .close {
    top: 5px;
    right: 10px;
    font-size: 24px;
  }

.add-heading {
    font-size: 32px;
    margin-left: 20px;
}

.add-detail {
    font-size: 20px;
    margin-left: 10px;
}

.comparison-table-section h2 {
    font-size: 24px;
}

.comparison-table th,
.comparison-table td {
    font-size: 11px;
    padding: 8px;
}

.table-container {
    overflow-x: auto;
}

.comparison-table {
    min-width: 80%;
    margin-bottom: -30px;
}
}

@media (min-width: 769px) and (max-width: 1240px) {
.hero-box h1 {
    font-size: 36px;
}

.hero-box p {
    font-size: 24px;
    max-width: 700px;
}

.box-buttons-split {
    width: 60%;
    gap: 15px;
}

.four-box {
    width: 40%;
    height: auto;
    padding: 20px;
    margin-bottom: 20px;
}

.four-box h1 {
    font-size: 28px;
}

.box-subtitle {
    font-size: 14px;
}

.feature-list {
    font-size: 13px;
}

.add-heading {
    font-size: 36px;
    margin-left: 40px;
}

.add-detail {
    font-size: 22px;
    margin-left: 60px;
}

.comparison-table-section h2 {
    font-size: 32px;
}

.comparison-table th,
.comparison-table td {
    font-size: 14px;
    padding: 10px 12px;
}

.comparison-table td:first-child {
    font-size: 15px;
}

.table-container {
    padding: 0 10px;
}
}
@media (min-width: 1025px) and (max-width: 1280px) {
.hero-box h1 {
    font-size: 38px;
}

.hero-box p {
    font-size: 26px;
    max-width: 800px;
}

.box-buttons-split {
    width: 50%;
    gap: 15px;
}

.four-box {
    width: 20%;
    height: auto;
    padding: 20px;
}

.four-box h1 {
    font-size: 30px;
}

.box-subtitle {
    font-size: 14px;
}

.feature-list {
    font-size: 13px;
}

.add-heading {
    font-size: 40px;
    margin-left: 60px;
}

.add-detail {
    font-size: 24px;
    margin-left: 100px;
}

.comparison-table-section h2 {
    font-size: 34px;
}

.comparison-table th,
.comparison-table td {
    font-size: 14px;
    padding: 12px 16px;
}

.comparison-table td:first-child {
    font-size: 15px;
}

.table-container {
    padding: 0 10px;
}
}

/*==============================================Industries Page=========================================*/
.services-hero {
  display: flex;
  width: 100%;
  height: 200px; 
  
}
.services-left {
  width: 60%;
  background-color: #f2f7fc; 
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;     
}
.h2{
 color: #113f72;      
  font-size: 32px;       
  font-family: Cambo, serif;    
  margin: 50px auto 20px auto;
  justify-content: center;
  display: flex;
margin-top: 20px;
}
.description{
 color: #0d63b5;
  font-size: 20px;
  font-family: 'Libre Medium', serif;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
  margin-top: -10px;
}
.services-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  background-color: #0d63b5;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  width: 150px;
  justify-content: center;
   margin-bottom: 30px;
   margin-top: -20px;
}
.services-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #08306b, #061f44);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
/* Subtle glowing line under heading */
@keyframes lineGlow {
  0%, 100% { box-shadow: 0 0 10px #fff, 0 0 20px #42a5f5; }
  50% { box-shadow: 0 0 20px #fff, 0 0 30px #1e88e5; }
}
.services-right {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2f7fc; 
  position: relative;
}
.small-image-box {
  width: 45%;
  height: 65%;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
}
.small-image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.industries {
  padding: 10px 10px;
  background-color: #ffffff;
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.Industries-h1 {
  font-size:32px;
  color: #113f72;
  margin-bottom: 30px;
  font-family: Cambo;
  font-weight: bold;
  margin-top: 0px;
  margin-bottom: 20px;
}
/* --- Base styles --- */
.industries-showcase {
  width: 80%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.industries-track {
  display: flex;
  width: max-content; 
  margin: 0 auto; 
   gap: 100px;  
  animation: scrollLeft 20s linear infinite;
}

.industry-card {
  flex: 0 0 auto;   
  max-width: 500px;
  background-color: #fff;
  border-radius: 15px;
  padding: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.6s ease;
  opacity: 0.6;
  transform: scale(0.9);
  
}
.industry-card:hover {
  opacity: 1;                     
  transform: scale(1.05);         
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); 
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
  z-index: 2;                     
}
.industry-card.active {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.picture-box img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 20px;
}

.picture-name {
  font-size: 24px;
  font-weight: bold;
  color: #0d63b5;
  margin-bottom: 5px;
  font-family: cambo;
}

.picture-description {
  font-size: 14px;
  color: #0c315c;
  line-height: 1.6;
 font-family: 'Libre Medium', serif;
}

/* --- Animation keyframes --- */
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}

/* Pause on hover (optional) */
.industries-showcase:hover .industries-track {
  animation-play-state: paused;
}
/*==Mobile Res===*/
/* --- Mobile Responsive for max-width 768px --- */
@media screen and (max-width: 768px) {

  /* Services Hero */
  .services-hero {
    flex-direction: column;
    height: auto; 
    padding: 20px 10px;
  }

  .services-left,
  .services-right {
    width: 100%; 
    margin-bottom: 20px;
  }

  .h2 {
    font-size: 24px;
    margin: 20px auto 15px auto;
  }

  .description {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .services-btn {
    width: 120px;
    padding: 5px 15px;
    margin-bottom: 20px;
    margin-top: 5px;
    font-size: 12px;
  }
  .services-right{
    display: none;
  }
  .small-image-box {
    width: 60%;
    height: auto; 
  }

  .small-image-box img {
    width: 100%;
    height: auto;
  }

  .industries {
    padding: 20px 10px;
  }

  .Industries-h1 {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: -30px;
  }

  .industries-showcase {
    width: 100%;
  }

  .industries-track {
    gap: 20px;
    flex-wrap: nowrap; 
    animation: scrollLeftMobile 25s linear infinite;
  }

  .industry-card {
    max-width: 200px; 
    padding: 15px;
    margin: 0 10px;
  }

  .picture-box img {
    width: 50px;
    height: 50px;
  }

  .picture-name {
    font-size: 16px;
  }

  .picture-description {
    font-size: 10px;
    line-height: 1.4;
  }

  /* Scroll Animation for Mobile */
  @keyframes scrollLeftMobile {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
}
.industry-card:hover {
  opacity: 1;                     
  transform: scale(1.05);         
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); 
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
  z-index: 2;                     
}

/*==================================================FAQ PAGE=======================================*/
.faq {
  max-width: 80%;
  height: 250px;
  margin: 60px auto;
  margin-top: 20px;
  padding: 40px;
 background: linear-gradient(135deg, #1565c0, #1e88e5, #42a5f5);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
 margin-bottom: 20px;
}

.faq-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.faq-image {
  width: 20%;
  height: 80%;
  margin-top: -15px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-text {
  flex: 1;
}

.headlinee {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: bold;
  font-family: Cambo;
  text-align: center;
  margin-top: -40px;
}
.headlinee::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #fff;
  margin: 10px auto 0;
  border-radius: 2px;
  animation: lineGlow 2s infinite;
}

/* Optional: define the lineGlow animation if not already done */
@keyframes lineGlow {
  0% {
    box-shadow: 0 0 5px #fff;
  }
  50% {
    box-shadow: 0 0 15px #fff;
  }
  100% {
    box-shadow: 0 0 5px #fff;
  }
}
.faq-p {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
   font-family: Cambo;
   margin-top: 20px;
}
.faq-container {
  max-width: 800px;
  margin: 10px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}
.faq-container h1{
  font-family: cambo;
  font-size: 28px;
  margin-bottom: 5px;
  margin-top: -15px;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #d8e5f1;
  padding: 15px 44px;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 5px;
  font-size: 16px;
  color: #113f72;
}

.arrow {
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 5px 16px;
  background: #f3f5f8;
  border-left: 5px solid #0d63b5;
  border-right: 5px solid #0d63b5;
  margin-bottom: 10px;
  font-family:cambo;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}
.faq-extra-help {
  text-align: center;
  color: #0d63b5;
  font-family: cambo;
   margin-bottom: 20px;
}
.faq-extra-help h1{
  font-size: 32px;
  color: #113f72;
}
.faq-extra-help p{
  font-size: 20px;
  margin-top: -30px;
}
.faq-extra-help h3{
  font-size: 16px;
  color: #113f72;
}
.phone-link {
  text-decoration: none; 
  color: #113f72;       
  cursor: pointer;       
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #0d63b5;        
}
@media (max-width: 768px) {
  .faq {
    max-width: 95%;
    height: auto;
    padding: 25px;
    margin: 30px auto;
  }

  .faq-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .faq-image {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .headlinee {
    font-size: 26px;
    margin-top: -20px;
  }

  .faq-p {
    font-size: 16px;
    margin-top: 15px;
  }
}
@media (max-width: 768px) {
.faq-container {
    padding: 10px;
    margin: 5px;
}

.faq-container h1 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 10px;
}

.faq-question {
    padding: 20px;
    font-size: 16px;
    flex-direction: row;
}

.arrow {
    font-size: 18px;
}

.faq-answer {
    padding: 10px;
    font-size: 12px;
    font-family: cambo;
}

.faq-extra-help h1 {
    font-size: 20px;
}

.faq-extra-help p {
    font-size: 11px;
    margin-top: -20px;
}

.faq-extra-help h3 {
    font-size: 10px;
}
}

/*=================================================Testimonials=====================================*/
.feedback {
  max-width: 80%;
  height: 300px;
  margin: 60px auto;
  margin-top: 10px;
  padding: 40px;
background: linear-gradient(135deg, #1565c0, #1e88e5, #42a5f5);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.feedback-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.feedback-image {
  width: 20%;
  height: 80%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feedback-text {
  flex: 1;
}

.headline {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: center;
  font-family: Cambo;
}
.headline::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #fff;
  margin: 10px auto 0;
  border-radius: 2px;
  animation: lineGlow 2s infinite;
}
.feedback p {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
   font-family: Cambo;
}
.testimonial-section {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap; 
  padding: 2rem 1rem;
  margin-top: -30px;
}

.testimonial-card {
  flex: 1 1 300px; 
  max-width: 400px; 
  background:#f2f7fc;
  color: #113f72;
  border-radius: 15px;
  padding: 2rem 2rem 3rem 2rem;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.testimonial-content h2 {
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
}

.testimonial-content p {
  font-size: 0.9rem;
  line-height: 1.4;
}

.testimonial-footer {
  text-align: center;
  margin-top: 1.5rem;
}

.avatar {
  width: 50px;
  height: 50px;
  margin: 0 auto 0.5rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stars {
  font-size: 1.2rem;
  color: gold;
  margin-bottom: 0.5rem;
}

.role {
  font-size: 0.85rem;
  font-weight: 600;
}

.quote-marks {
  position: absolute;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.3);
  top: 10px;
  user-select: none;
}

.quote-marks.left {
  left: 15px;
}

.quote-marks.right {
  right: 15px;
  top: auto;
  bottom: 15px;
}
.logo-section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
  color: #113f72;
  font-family: Cambo, serif;
}

/* ===== Container ===== */
.company-logo-container {
  margin: 20px 0 50px 0;
}

/* ===== Logos Wrapper ===== */
.company-logos {
  overflow: hidden;
  width: 100%;
  background: #fff;
  margin: 40px 0 30px 0;
}

/* ===== Slide Animation ===== */
.logos-slide {
  display: flex;
  align-items: center;
  gap: 100px;
  animation: scroll 15s linear infinite;
}

/* ===== Individual Logo Item ===== */
.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, z-index 0.3s ease;
  cursor: pointer;
}

/* Logo Image */
.logo-item img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* ===== Hover / Pop-up Effect ===== */
.logo-item:hover {
  transform: scale(1.2); /* pop-up */
  z-index: 10; /* appear above other logos */
}

.logo-item:hover img {
  transform: scale(1.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.logo-item p {
  opacity: 0; /* hidden */
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Remove hover effect for p entirely */
.logo-item:hover p {
  opacity: 0; /* stay hidden */
  transform: translateY(10px);
}
.logo-item:hover .logo-tooltip {
  opacity: 0;
  visibility: hidden;
}

/* ===== Keyframes for Scrolling ===== */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .logos-slide {
    gap: 60px; /* slightly smaller gaps to fit screen */
    animation: scroll 2s linear infinite; /* ⚡ faster speed */
  }

  .logo-item img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
  }

  .logo-item {
    flex: 0 0 auto;
    text-align: center;
  }
}

/* ===== Small Phones (≤ 480px) ===== */
@media (max-width: 480px) {
  .logos-slide {
    gap: 40px;
    animation: scroll 2s linear infinite; /* ⚡ even faster for small devices */
  }

  .logo-item img {
    width: 100px;
    height: 100px;
  }

  .logo-item p {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .testimonial-section {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    max-width: 90vw;
    margin-bottom: 2rem;
  }
}
/* ====== Responsive Design ====== */
@media (max-width: 768px) {
  .testimonial-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-left {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }
 .logo-section-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .company-logo-container {
    margin: 30px 0;
    padding: 0 10px;
  }

  .company-logos {
    overflow: hidden;
    width: 100%;
  }

  .logos-slide {
    gap: 40px;
    animation: scroll 15s linear infinite;
  }

  .logo-item img {
    width: 120px;          /* Fixed width */
    height: 80px;          /* Fixed height for uniformity */
    object-fit: contain;   /* Keeps logo aspect ratio */
    display: block;
  }

  .logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .logo-item p {
    font-size: 13px;
    margin-top: 6px;
    color: #113f72;
    text-align: center;
  }}

@media (max-width: 768px) {
  .feedback {
    max-width: 95%;
    height: auto;
    padding: 25px;
    margin: 30px auto;
    border-radius: 10px;
  }

  .feedback-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .feedback-image {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .headline {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .headline::after {
    width: 50px;
    height: 2px;
    margin-top: 8px;
  }

  .feedback p {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 10px;
  }
}
 
@media (min-width: 769px) and (max-width: 1024px) {

  .feedback {
    max-width: 90%;
    height: auto;
    padding: 35px;
  }

  .feedback-content {
    flex-direction: row;
    align-items: center;
    gap: 25px;
  }

  .feedback-image {
    width: 25%;
    height: auto;
  }

  .headline {
    font-size: 28px;
  }

  .headline::after {
    width: 55px;
    height: 3px;
  }

  .feedback p {
    font-size: 17px;
  }
}
/*=============================================Common-Services-Section=============================*/
.service-bottom {
  background-color: #f2f7fc;
  padding: 60px 40px;
}
.service-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}
.text-part {
  flex: 1;
  min-width: 300px;
}
.text-part h2 {
  font-size: 28px;
  color: #113f72;
  margin-bottom: 15px;
  font-family: cambo;
}

.text-part p {
  font-size: 18px;
  color: #0d63b5;
  margin-bottom: 25px;
  font-family: cambo;
}
.text-part .btn {
  padding: 12px 25px;
  background-color: #0d63b5;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
}
.image-part {
  flex: 1;
  min-width: 300px;
}
.image-part img {
  max-width: 100%;
  height: auto;
  border-radius: 100px;
  height: 300px;
  margin-left: auto;
  display: block;
  margin-right: 100px;
}
/* Tablet Devices */
@media (max-width: 768px) {
.service-bottom {
    padding: 40px 20px;
}

.service-bottom-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.text-part {
    width: 100%;
    min-width: unset;
}

.text-part h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.text-part p {
    font-size: 16px;
    margin-bottom: 20px;
}

.text-part.btn {
    width: 100%;
    font-size: 16px;
    padding: 10px 20px;
}

.image-part {
    width: 100%;
    min-width: unset;
}

.image-part img {
    height: auto;
    max-width: 80%;
    margin: 0 auto;
    display: block;
    border-radius: 50px;
}
}
/* Small Desktop & Large Screens */
@media (min-width: 1025px) and (max-width: 1599px) {
  .text-part h2 {
    font-size: 28px;
  }

  .text-part p {
    font-size: 17px;
  }

  .image-part img {
    height: 280px;
    margin-right: 50px;
    border-radius: 90px;
  }

  .text-part .btn {
    font-size: 17px;
    padding: 10px 22px;
  }
}

/*=================================================Footer========================================*/
/*==========Footer========*/
.footer {
  background-color: #0d47a1;
  color: #fff;
  padding: 20px 15px;
  width: 100%;
  font-family: cambo;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 100%;
  margin: auto;
  gap: 15px;
}

.footer-column {
  flex: 1 1 200px;
  box-sizing: border-box;
}

.footer-logo {
  max-width: 100px;
  margin: 60px 0 10px 60px;
}

.img-para {
  font-size: 13px;
  margin-top: 4px;
  margin-left: 20px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: bold;
  color: #f0f0f0;
}

.footer-column p {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.1;
}

.footer-column ul li {
  margin-bottom: 5px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 12px;
}

.footer-column ul li a:hover {
  color: #fff;
}

.map iframe {
  width: 100%;
  height: 150px;
  border: none;
}

.social-icons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  color: #fff;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #90caf9;
}

.footer-divider {
  border: none;
  border-top: 1px solid #ffffff;
  margin: 15px 0;
  width: 100%;
  opacity: 0.8;
}

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  color: #fff;
  font-size: 14px;
  font-family: cambo;
}

.site-footer p {
  margin: 0;
}

/*==========Responsive========*/
@media (max-width: 539px) {
  .footer {
    padding: 20px 10px;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0; /* remove large gaps */
  }

  .footer-column {
    width: 100%;
    margin: 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* light divider between sections */
  }

  /* Remove border from last column */
  .footer-column:last-child {
    border-bottom: none;
  }

  .footer-logo {
    width: 100px;
    height: auto;
    margin: 20px auto 5px;
    display: block;
  }

  .img-para {
    font-size: 13px;
    margin: 5px 0;
  }

  .footer-column h4 {
    font-size: 15px;
    margin: 10px 0;
    color: #fff;
  }

  .footer-column p {
    font-size: 13px;
    line-height: 1.4;
    margin: 3px 0;
  }

  .footer-column ul {
    padding: 0;
    margin: 0;
  }

  .footer-column ul li {
    margin: 2px 0;
  }

  .footer-column ul li a {
    font-size: 13px;
  }
  .footer-column p {
    margin-top: 20px;
    line-height: 1.2;
  }

  .map iframe,
  #map-placeholder {
    height: 140px;
  }

  .social-icons {
    margin-top: 8px;
    justify-content: center;
    gap: 10px;
  }

  .social-icons a {
    font-size: 18px;
  }

  .footer-divider {
    margin: 10px 0;
  }

  .site-footer {
    font-size: 13px;
    padding: 8px 0;
    text-align: center;
  }
}
@media (min-width: 540px) and (max-width: 768px) {
  .footer-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
    gap: 20px;
    text-align: left;
  }

  .footer-column {
    flex: 1 1 45%;
    margin-bottom: 20px;
  }

  .footer-logo {
    max-width: 100px;
    margin: 60px 0 10px 40px;
  }

  .img-para {
    font-size: 13px;
    margin-left: 0;
  }

  .footer-column h4 {
    font-size: 16px;
    margin: 10px 0 6px;
  }

  .footer-column p,
  .footer-column ul li a {
    font-size: 13px;
  }

  .map iframe {
    height: 150px;
  }

  .social-icons {
     justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }

  .site-footer {
    font-size: 14px;
    padding: 10px;
    text-align: center;
  }

  .footer-divider {
    margin: 20px 0;
  }
}
@media (min-width: 768px) and (max-width: 912px) {
  .footer-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 30px;
    gap: 20px;
    text-align: left;
  }

  .footer-column {
    flex: 1 1 30%;
    margin-bottom: 20px;
  }

  .footer-logo {
    max-width: 100px;
    margin: 50px 0 10px 40px;
  }

  .img-para {
    font-size: 13px;
    margin-left: 0;
  }

  .footer-column h4 {
    font-size: 16px;
    margin: 10px 0 6px;
  }

  .footer-column p,
  .footer-column ul li a {
    font-size: 13px;
  }

  .map iframe {
    height: 160px;
  }
  .footer-column p{
    line-height: 1.2;
  }
  .social-icons {
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }

  .site-footer {
    font-size: 14px;
    padding: 10px;
    text-align: center;
  }

  .footer-divider {
    margin: 20px 0;
  }
}
@media (min-width: 1280px) and (max-width: 1599px) {
  .footer {
    background-color: #0d47a1;
    color: #fff;
    padding: 20px 15px;
    width: 100%;
    font-family: cambo;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100%;
    margin: auto;
    gap: 15px;
  }

  .footer-column {
    flex: 1 1 200px;
    box-sizing: border-box;
  }

  .footer-logo {
    max-width: 100px;
    margin: 50px 0 10px 60px; /* adjust if needed */
  }

  .img-para {
    font-size: 13px;
    margin-top: 4px;
    margin-left: 20px;
  }

  .footer-column h4 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: bold;
    color: #f0f0f0;
  }

  .footer-column p {
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 6px;
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.1;
  }

  .footer-column ul li {
    margin-bottom: 5px;
  }

  .footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 12px;
  }

  .footer-column ul li a:hover {
    color: #fff;
  }

  .map iframe {
    width: 100%;
    height: 150px;
    border: none;
  }

  .social-icons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .social-icons a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
  }

  .social-icons a:hover {
    color: #90caf9;
  }

  .footer-divider {
    border: none;
    border-top: 1px solid #ffffff;
    margin: 15px 0;
    width: 100%;
    opacity: 0.8;
  }

  .site-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    color: #fff;
    font-size: 14px;
    font-family: cambo;
  }

  .site-footer p {
    margin: 0;
  }
}

/* ===== IMAGE PROMO BANNER (755 x 445) ===== */
#promo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.promo-image-box {
  position: relative;
  width: 755px;          /* original width */
  max-width: 92vw;       /* responsive scaling */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.3);
  animation: promoZoom 0.5s ease;
}

.promo-image-box img {
  width: 100%;
  height: auto;          /* keeps 755:445 ratio */
  display: block;
}

.promo-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 26px;
  padding: 2px 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

@keyframes promoZoom {
  from {
    opacity: 0;
    transform: scale(0.88);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile fine-tuning */
@media (max-width: 480px) {
  .promo-image-box {
    max-width: 95vw;
  }
}

/* Change snowflake appearance */
.snowflake {
    color: #fff;       /* white snow */
    font-size: 25px;   /* small flakes */
    text-shadow: 0 0 3px #aaa;
}

/*Offer */
.offer-box {
  position: fixed;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
background: linear-gradient(135deg, #FFD700, #FFB700);
color: #0d63b5;
  backdrop-filter: blur(10px);
  padding: 10px 15px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-family: 'Segoe UI', sans-serif;
  gap: 10px;
  flex-wrap: wrap; 
  animation: floatBanner 3s ease-in-out infinite;
}
/* Floating animation */
@keyframes floatBanner {
  0%   { transform: translateX(-50%) translateY(0); }
  50%  { transform: translateX(-50%) translateY(-8px); }
  100% { transform: translateX(-50%) translateY(0); }
}
.offer-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.offer-header {
  font-weight: bold;
  color: #ac0505;
  font-family: cambo;
}

.offer-text {
  font-size: 14px;
  color: #333333;
}

#promoBtn {
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  color: #fff;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}

#promoBtn:hover {
  box-shadow: 0 0 12px rgba(34,211,238,0.8);
}

@media (max-width: 480px) {
  .offer-box {
    flex-direction: column;
    text-align: center;
    padding: 8px 10px;
  }
  .offer-text {
    font-size: 12px;
  }
  #promoBtn {
    padding: 5px 10px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .offer-box {
    width: 70%;
    padding: 10px 12px;
  }
  .offer-text {
    font-size: 13px;
  }
  #promoBtn {
    padding: 6px 10px;
    font-size: 13px;
  }
}

/* Large devices (small desktops) */
@media (max-width: 1024px) {
  .offer-box {
    width: 50%;
    padding: 10px 14px;
  }
  .offer-text {
    font-size: 14px;
  }
  #promoBtn {
    padding: 6px 12px;
    font-size: 14px;
  }
}