@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root {
  --primary-color: rgb(10, 73, 139);
  --secondary-color: rgb(240, 22, 30);
  --background-color: rgba(244, 248, 236, 1);
  --text-color: rgba(0, 0, 0, 1);
  --white-color: rgba(255, 255, 255, 1);
  --footer-bg-color: rgba(38, 70, 71, 1);
  --grey-color: rgb(218, 218, 218);
}
::-webkit-scrollbar {
  width: 5px;
}

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

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

::-webkit-scrollbar-thumb:hover {
  background: #4f54a0;
}

/* =====================================
   LANDING PAGE NAVBAR
===================================== */

.landing-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 15px 0;
  transition: all 0.4s ease;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.landing-navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}


.navbar-logo {
  display: inline-block;
}

.navbar-logo img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

.landing-navbar.scrolled .navbar-logo img {
  height: 50px;
}

/* Mobile */

@media (max-width: 768px) {
  .navbar-logo img {
    height: 60px;
  }

  .landing-navbar.scrolled .navbar-logo img {
    height: 50px;
  }
}

/* =====================================
   Home Banner
===================================== */

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/banner/banner.jfif");
  background-size: cover;
  background-position: center;
  color: #fff;
  top: 75px;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(240, 22, 30, 0.12);
  border-radius: 50%;
  top: -150px;
  right: -120px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  margin-bottom: 25px;
  font-weight: 600;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--secondary-color);
}

.hero-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-start {
  background: var(--secondary-color);
  color: #fff;
  padding: 14px 35px;
  border-radius: 12px;
  font-weight: 700;
}

.btn-start:hover {
  background: #d91318;
  color: #fff;
}

.btn-outline-custom {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 35px;
  border-radius: 12px;
  font-weight: 700;
}

.btn-outline-custom:hover {
  background: #fff;
  color: var(--primary-color) !important;
}

.hero-highlights {
  display: flex;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.highlight-box {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 20px;
  min-width: 150px;
}

.highlight-box h3 {
  color: var(--secondary-color);
  font-weight: 800;
  margin-bottom: 5px;
}

.highlight-box p {
  margin: 0;
  font-size: 14px;
}

/* FORM */

.enquiry-form {
  background: #fff;
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.enquiry-form h3 {
  color: var(--primary-color);
  font-weight: 800;
}

.enquiry-form .form-control,
.enquiry-form .form-select {
  height: 45px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

.enquiry-form textarea.form-control {
  height: auto;
}

.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.submit-btn {
  background: var(--secondary-color);
  color: #fff;
  height: 45px;
  border-radius: 12px;
  font-weight: 700;
}

.submit-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 0px 0px 100px 0px;
  }

  .hero-content {
    text-align: center;
    margin-bottom: 50px;
  }

  .hero-content h1 {
    font-size: 2.7rem;
  }

  .hero-highlights {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-section::before {
    display: none;
  }

  .enquiry-form {
    padding: 25px;
  }
}

/* ==========================================
   ABOUT SWAMI LOGIPOOL
========================================== */

.about-swami {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 100px 0;
}

.about-swami::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  left: -250px;
  top: -250px;
  background: rgba(10, 73, 139, 0.05);
  border-radius: 50%;
}

/* =====================
   IMAGE AREA
===================== */

.about-image-wrapper {
  position: relative;
}

.main-about-image {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.experience-box {
  position: absolute;
  right: -20px;
  bottom: 30px;
  background: var(--primary-color);
  color: #fff;
  padding: 25px 30px;
  border-radius: 20px;
  text-align: center;
  min-width: 180px;
  box-shadow: 0 15px 35px rgba(10, 73, 139, 0.3);
}

.experience-box h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 900;
}

.experience-box span {
  font-size: 14px;
  display: block;
}

/* =====================
   CONTENT AREA
===================== */

.section-tag {
  display: inline-block;
  background: rgba(240, 22, 30, 0.1);
  color: var(--secondary-color);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.3;
  margin-bottom: 20px;
}

.section-title span {
  color: var(--secondary-color);
}

.about-text {
  font-size: 16px;
  color: #666;
  line-height: 1.9;
}

/* =====================
   FEATURE CARDS
===================== */

.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  height: 100%;
  transition: all 0.35s ease;
  border: 1px solid #eef1f5;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: rgba(10, 73, 139, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 28px;
  color: var(--primary-color);
}

.feature-card h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.feature-card p {
  margin: 0;
  color: #777;
  font-size: 14px;
  line-height: 1.7;
}

/* =====================
   BUTTONS
===================== */

.about-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.about-btn {
  background: var(--secondary-color);
  color: #fff;
  padding: 14px 35px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.3s;
}

.about-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

.about-outline-btn {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 14px 35px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.3s;
}

.about-outline-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 991px) {
  .about-swami {
    padding: 70px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .experience-box {
    display: none;
    right: 15px;
    bottom: 15px;
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
  }

  .feature-card {
    padding: 20px;
  }

  .experience-box {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 20px;
    width: fit-content;
  }
}

/* =====================================
   COURSES SECTION
===================================== */

.courses-section {
  background: #eef0f1;
}

.section-description {
  max-width: 750px;
  margin: auto;
  color: #666;
  line-height: 1.8;
}

/* =====================
   COURSE CARD
===================== */

.course-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  height: 100%;
  border: 1px solid #edf1f7;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* =====================
   COURSE IMAGE
===================== */

.course-image {
  overflow: hidden;
  height: 240px;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.course-card:hover .course-image img {
  transform: scale(1.08);
}

/* =====================
   COURSE CONTENT
===================== */

.course-content {
  padding: 30px;
}

.course-duration {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(240, 22, 30, 0.1);
  color: var(--secondary-color);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 15px;
}

.course-content h4 {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.course-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* =====================
   BUTTON
===================== */

.course-btn {
  color: var(--secondary-color);
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.course-btn i {
  margin-left: 8px;
  transition: 0.3s;
}

.course-btn:hover {
  color: var(--primary-color);
}

.course-btn:hover i {
  transform: translateX(5px);
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 991px) {
  .courses-section {
    padding: 70px 0;
  }

  .course-image {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .course-content {
    padding: 25px;
  }

  .course-content h4 {
    font-size: 20px;
  }

  .course-image {
    height: 200px;
  }
}

/* =====================================
   CAREER CTA SECTION
===================================== */

.career-cta {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/banner/coding-man.jpg");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Overlay Shape */

.career-cta::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.career-cta-content {
  color: #fff;
  position: relative;
  z-index: 2;
}

.career-subtitle {
  display: block;
  font-size: 42px;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 15px;
  opacity: 0.95;
}

.career-cta-content h2 {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 40px;
}

.career-cta-content h2 span {
  color: #ffffff;
}

/* CTA Button */

.career-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;

  background: #fff;
  color: var(--secondary-color);

  text-decoration: none;

  padding: 9px 17px;
  border-radius: 60px;

  font-size: 16px;
  font-weight: 700;

  transition: all 0.3s ease;
}

.career-btn i {
  transition: 0.3s;
}

.career-btn:hover {
  background: var(--secondary-color);
  color: #fff;
  transform: translateY(-3px);
}

.career-btn:hover i {
  transform: translateX(6px);
}

/* Responsive */

@media (max-width: 991px) {
  .career-cta {
    padding: 80px 0;
  }

  .career-subtitle {
    font-size: 32px;
  }

  .career-cta-content h2 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .career-subtitle {
    font-size: 24px;
  }

  .career-cta-content h2 {
    font-size: 30px;
  }

  .career-btn {
    font-size: 18px;
    padding: 15px 28px;
  }
}

/* =====================================
   FOOTER
===================================== */

.landing-footer {
    background: #0f172a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Decorative Shape */

.landing-footer::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255,255,255,.03);
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,.75);
    line-height: 1.9;
    font-size: 16px;
}

/* Social Icons */

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;

    transition: all .3s ease;
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-5px);
}

/* Copyright */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,.70);
    font-size: 14px;
}

/* Mobile */

@media(max-width:576px){

    .footer-content{
        padding:50px 0 40px;
    }

    .footer-logo img{
        height:50px;
    }

    .footer-tagline{
        font-size:14px;
    }

}