@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
/* Mahtab Variables for Color Palette */
:root {
  --primary-color: #1a508f;
  --secondary-color: #b6d5e8;
  --accent-color: #f0eedc;
  --dark-color: #000000;
  --light-color: #ffffff;
  --text-color: #333;
}

/* Global Styles & Smooth Scrolling */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px; /* Offset for fixed navbar */
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--light-color);
  color: var(--text-color);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Section Padding & Headings */
section {
  padding: 80px 0;
}

.section-heading {
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 50px;
  position: relative;
  text-align: center;
}

.section-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Navbar Styling */
.navbar {
  transition: background-color 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled {
  background-color: var(--primary-color) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: clamp(1rem, 0.9vw + 0.8rem, 1.3rem);
}

.navbar-nav .nav-link {
  color: var(--light-color);
  font-weight: 600;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navbar-toggler {
  border: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Hero Section */
#hero {
  /* background-color: var(--primary-color); */
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../img/banner-img.jpg);
  background-blend-mode: darken;
  background-size: cover;
  background-position: center center;
  color: var(--light-color);
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#hero .container{
    padding-top: 120px;
}
#hero h1 {
  font-size: clamp(1.78em, 2.8vw + 0.8rem, 2.8rem);
  font-weight: 800;
}

#hero p {
  font-size: clamp(0.8rem, 0.8vw + 0.7rem, 1.1rem);
  margin-bottom: 1rem;
}

/* Custom Button Styling */
.btn-custom-primary {
  background-color: var(--light-color);
  color: var(--primary-color);
  border: 2px solid var(--light-color);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-custom-primary:hover {
  background-color: transparent;
  color: var(--light-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-custom-secondary {
  background-color: transparent;
  color: var(--light-color);
  border: 2px solid var(--secondary-color);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-custom-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.btn-card {
  background-color: var(--primary-color);
  color: var(--light-color);
  border: 2px solid var(--primary-color);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-card:hover {
  background-color: var(--light-color);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-card-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-card-outline:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

/* Card Styling */
.custom-card {
  background-color: var(--light-color);
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.custom-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.img-placeholder img {
  height: 100%;
  width: 100%;
  max-height: 300px;
  max-width: 300px;
  object-fit: cover;
}

.card-body {
  padding: 1.75rem 0;
}

.card-title {
  color: var(--primary-color);
  font-weight: 600;
}

/* Solutions Section */
#solutions {
  background-color: var(--accent-color);
}

.solution-card {
  padding: 2rem;
}

.solution-card ul {
  list-style: none;
  padding: 0;
}

.solution-card ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.solution-card ul li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Services Section */
.service-card {
  text-align: center;
}
.service-card .img-placeholder img {
  max-height: 200px;
  max-width: 200px;
}
.service-card .card-text {
  padding: 0 1rem;
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Contact Section */
#contact {
  background-color: var(--secondary-color);
}
#contact .section-heading::after {
  background-color: var(--accent-color);
}
.contact-info-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 40px 0 20px;
  text-align: center;
}

.social-icons a {
  color: var(--light-color);
  font-size: 1.5rem;
  margin: 0 12px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--secondary-color);
}

/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#scrollTopBtn.show {
  display: block;
  opacity: 1;
}
#scrollTopBtn:hover {
  transform: scale(1.1);
}

/* Animation Classes */
.hidden {
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-up {
  transform: translateY(50px);
}
.fade-left {
  transform: translateX(-50px);
}
.fade-right {
  transform: translateX(50px);
}
.zoom-in {
  transform: scale(0.9);
}

.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--primary-color);
    text-align: center;
    padding: 2rem 0 1rem;
  }
  .img-placeholder img {
    max-width: 300px;
    max-height: 300px;
  }
}

@media (max-width: 767.98px) {
  html {
    scroll-padding-top: 60px;
  }
  /*#hero {*/
  /*  height: 80vh;*/
  /*}*/
  section {
    padding: 60px 0;
  }
}


.banner-sm-img-sec img.img-fluid {
    padding: 11px;
    border-radius: 20px;
}

.banner-sm-img-sec {
    display: flex;
}

.itinfo-about-section {
  padding: 80px 0;
  background: #f8fafc;
}

.itinfo-content-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.itinfo-content-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.itinfo-content-box h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.itinfo-subtitle {
  display: block;
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 500;
}

.itinfo-content-box p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.itinfo-list {
  padding-left: 0;
  margin: 0;
}

.itinfo-list li {
  list-style: none;
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
  font-size: 15px;
}

.itinfo-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  font-size: 14px;
}

/* Image Box */
.itinfo-image-box {
  overflow: hidden;
  border-radius: 14px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.itinfo-image-box img {
  width: 100%;
  transition: transform 0.5s ease;
}

.itinfo-image-box:hover img {
  transform: scale(1.08);
}

.abt-sec-rd-mre a {
    border-radius: 20px;
    border: 2px solid black;
    padding: 10px 27px 10px 30px;
    text-decoration: none;
    color: black;
        transition: all 0.3s ease;
}

.abt-sec-rd-mre {
    text-align: center;
    margin-top: 40px;
}

.abt-sec-rd-mre a:hover{
    background:#21436a;
    color:#fff;
        transition: all 0.3s ease;
}

.footer-links {
  font-size: 14px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 6px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffc107;
  text-decoration: underline;
}

.footer-links span {
  color: rgba(255, 255, 255, 0.5);
}

.terms-conditions {
  padding: 50px 20px;
  background-color: #f9f9f9;
  font-family: 'Arial', sans-serif;
  color: #333;
}

.tc-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: bold;
}

.tc-section {
  margin-bottom: 30px;
}

.tc-section h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #007BFF;
}

.tc-section p {
  font-size: 16px;
  line-height: 1.6;
}

.tc-note {
  text-align: center;
  font-weight: bold;
  margin-top: 40px;
  color: #555;
}



.privacy-policy {
  padding: 50px 20px;
  background-color: #ffffff;
  font-family: 'Arial', sans-serif;
  color: #333;
}

.pp-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: bold;
}

.pp-section {
  margin-bottom: 30px;
}

.pp-section h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #28a745;
}

.pp-section p {
  font-size: 16px;
  line-height: 1.6;
}

.pp-note {
  text-align: center;
  font-weight: bold;
  margin-top: 40px;
  color: #555;
}


.cancellation-policy {
  padding: 50px 20px;
  background-color: #f4f4f4;
  font-family: 'Arial', sans-serif;
  color: #333;
}

.cp-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: bold;
}

.cp-section {
  margin-bottom: 30px;
}

.cp-section h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #dc3545;
}

.cp-section p {
  font-size: 16px;
  line-height: 1.6;
}

.cp-note {
  text-align: center;
  font-weight: bold;
  margin-top: 40px;
  color: #555;
}


.refund-policy {
  padding: 50px 20px;
  background-color: #ffffff;
  font-family: 'Arial', sans-serif;
  color: #333;
}

.rp-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: bold;
}

.rp-section {
  margin-bottom: 30px;
}

.rp-section h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #17a2b8;
}

.rp-section p, 
.rp-section ul {
  font-size: 16px;
  line-height: 1.6;
}

.rp-section ul {
  margin-left: 20px;
  list-style-type: disc;
}

.rp-note {
  text-align: center;
  font-weight: bold;
  margin-top: 40px;
  color: #555;
}
