
    body {
      scroll-behavior: smooth;
    }
  /* =========================================================
   TECHMATE IT - Navbar Styling (Fixed / Sticky + Mobile Menu)
   ========================================================= */

/* ===== Base Navbar ===== */
.custom-navbar {
  position: sticky; /* Keeps navbar visible at top during scroll */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background: rgba(10, 10, 20, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(to right, #007bff, #6610f2);
  border-image-slice: 1;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 12px 0;
}

/* ===== Navbar Scroll Effect ===== */
.custom-navbar.scrolled {
  background: rgba(15, 15, 25, 0.98);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  padding: 8px 0;
}

/* ===== Navbar Brand ===== */
.custom-navbar .navbar-brand {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.custom-navbar .navbar-brand:hover {
  color: #00b4ff;
}

/* ===== Navbar Links ===== */
.navbar-nav .nav-link {
  color: #dddddd !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffffff !important;
}

/* Underline Hover / Active Effect */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 50%;
  bottom: 0;
  background: linear-gradient(90deg, #007bff, #6610f2);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

/* ===== Mobile Sidebar Menu ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 260px;
  height: 100vh;
  background: rgba(15, 15, 25, 0.98);
  backdrop-filter: blur(8px);
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.3);
  padding: 80px 25px 25px;
  transition: right 0.4s ease;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mobile-menu.open {
  right: 0;
}

/* ===== Mobile Menu Links ===== */
.mobile-menu .nav-link {
  color: #dddddd;
  font-size: 1.1rem;
  margin: 12px 0;
  transition: color 0.3s ease;
  text-decoration: none;
}

.mobile-menu .nav-link:hover,
.mobile-menu .nav-link.active {
  color: #007bff;
}

/* ===== Close Button ===== */
.close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #007bff;
}

/* ===== Responsive Fix ===== */
@media (min-width: 992px) {
  .mobile-menu {
    display: none; /* Hide sidebar on desktop */
  }
}


  /* ===== Hero Base ===== */
  .hero {
    position: relative;
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1920&q=80')
      center/cover no-repeat;
    color: #fff;
    overflow: hidden;
    padding: 120px 0;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 50, 0.85), rgba(0, 30, 90, 0.85));
    z-index: 1;
  }

  .hero .container {
    position: relative;
    z-index: 2;
  }

  /* ===== Typography ===== */
  .hero h1 {
    font-size: 3rem;
    line-height: 1.3;
  }

  .text-gradient {
    background: linear-gradient(90deg, #00b4ff, #7a42ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero p {
    color: #e5e5e5;
    max-width: 600px;
  }

  /* ===== Buttons ===== */
  .hero-buttons .btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
  }

  .btn-primary {
    background: linear-gradient(90deg, #007bff, #6610f2);
    border: none;
  }

  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
  }

  .btn-outline-light {
    color: #fff;
    border-color: #fff;
  }

  .btn-outline-light:hover {
    background: #fff;
    color: #007bff !important;
    transform: translateY(-3px);
  }

  /* ===== Floating Image ===== */
  .floating-img {
    max-width: 90%;
    height: auto;
    animation: float 4s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  /* ===== Responsive Adjustments ===== */
  @media (max-width: 992px) {
    .hero {
      text-align: center;
      padding: 100px 0 60px;
      min-height: auto;
    }

    .hero h1 {
      font-size: 2.2rem;
    }

    .hero p {
      font-size: 1rem;
      margin: 0 auto 25px;
    }

    .floating-img {
      max-width: 70%;
      margin: 0 auto 30px;
    }
  }

  @media (max-width: 576px) {
    .hero h1 {
      font-size: 1.8rem;
    }

    .hero p {
      font-size: 0.95rem;
    }

    .floating-img {
      max-width: 85%;
    }

    .hero-buttons .btn {
      width: 100%;
      margin-bottom: 10px;
    }
  }

  /* ===== Why Choose Us Section ===== */
.why-section {
  background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
}

.why-section .section-title {
  font-weight: 700;
  font-size: 2.2rem;
  color: #0d1b2a;
  position: relative;
  display: inline-block;
}

.why-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #6610f2);
  margin: 10px auto 0;
  border-radius: 2px;
}

.feature-box {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.icon-box {
  background: linear-gradient(135deg, #007bff, #6610f2);
  color: #ffffff;
  font-size: 2rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: transform 0.3s ease;
}

.feature-box:hover .icon-box {
  transform: scale(1.1);
}

.feature-box h5 {
  color: #0d1b2a;
}

.feature-box p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== Responsive Fixes ===== */
@media (max-width: 767px) {
  .why-section .section-title {
    font-size: 1.8rem;
  }

  .feature-box {
    padding: 30px 20px;
  }

  .icon-box {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }
}

/* ===== Enhanced Courses Section ===== */
.courses-section {
  background: radial-gradient(circle at top left, #f9faff 0%, #eef2ff 100%);
  position: relative;
  overflow: hidden;
}

.courses-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  top: -100px;
  right: -150px;
  background: radial-gradient(circle, rgba(102, 16, 242, 0.1), transparent 70%);
  z-index: 0;
}

.courses-section .section-title {
  font-weight: 700;
  font-size: 2.3rem;
  color: #0f172a;
  position: relative;
  z-index: 1;
}

.courses-section .section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #6610f2);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ==== Card Design ==== */
.course-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  z-index: 1;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* ==== Icon Glow Effect ==== */
.card-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.25), transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: all 0.4s ease;
}

.card-icon-wrapper i {
  position: relative;
  font-size: 2.5rem;
  color: #007bff;
  z-index: 1;
  transition: color 0.3s ease;
}

.course-card:hover .card-icon-wrapper i {
  color: #6610f2;
}

.course-card:hover .icon-glow {
  background: radial-gradient(circle, rgba(102, 16, 242, 0.25), transparent 70%);
}

/* ==== Text ==== */
.course-card h5 {
  font-weight: 600;
  color: #111827;
}

.course-card p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
  min-height: 80px;
}

/* ==== Gradient Button ==== */
.btn-gradient {
  background: linear-gradient(90deg, #007bff, #6610f2);
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #0056d2, #4c0fc5);
  transform: scale(1.06);
}

/* ==== Responsive ==== */
@media (max-width: 768px) {
  .courses-section .section-title {
    font-size: 1.8rem;
  }

  .course-card {
    padding: 30px 20px;
  }

  .card-icon-wrapper i {
    font-size: 2rem;
  }

  .icon-glow {
    width: 70px;
    height: 70px;
  }
}

/* ===== Services Section (Light Modern) ===== */
.services-section {
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  color: #222;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0d1b2a;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #6610f2);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ===== Service Card ===== */
.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 25px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* ===== Icon Circle ===== */
.icon-circle {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #007bff, #6610f2);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(102, 16, 242, 0.3);
}

.service-card:hover .icon-circle {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(102, 16, 242, 0.4);
}

/* ===== Text ===== */
.service-card h4 {
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 30px 20px;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }
}

/* ===== CTA Section ===== */
.cta-section {
  position: relative;
  padding: 120px 20px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Background image with dark overlay */
.cta-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  filter: brightness(0.35) blur(1px);
  z-index: 0;
}

/* Gradient motion overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(102, 16, 242, 0.3), rgba(0, 123, 255, 0.4));
  mix-blend-mode: screen;
  animation: floatGradient 10s ease-in-out infinite alternate;
  z-index: 1;
  opacity: 0.7;
}

/* Overlay animation */
@keyframes floatGradient {
  0% {
    transform: translate(0%, 0%) scale(1);
  }
  100% {
    transform: translate(10%, -10%) scale(1.1);
  }
}

/* ===== Content ===== */
.cta-section .container {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.cta-text {
  max-width: 700px;
  margin: 20px auto 30px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #f5f5f5;
}

/* ===== Button ===== */
.btn-cta {
  display: inline-block;
  position: relative;
  background: linear-gradient(90deg, #007bff, #6610f2);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 14px 45px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 0 25px rgba(102, 16, 242, 0.5);
  overflow: hidden;
}

/* Glow animation */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 20px rgba(102, 16, 242, 0.5); }
  50% { box-shadow: 0 0 40px rgba(0, 123, 255, 0.8); }
  100% { box-shadow: 0 0 20px rgba(102, 16, 242, 0.5); }
}

.btn-cta {
  animation: pulseGlow 2.5s infinite ease-in-out;
}

.btn-cta:hover {
  transform: translateY(-4px) scale(1.05);
  background: linear-gradient(90deg, #0056d2, #500cf2);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .cta-section {
    padding: 100px 15px;
  }

  .cta-title {
    font-size: 2.2rem;
  }

  .cta-text {
    font-size: 1.05rem;
  }

  .btn-cta {
    font-size: 1rem;
    padding: 12px 35px;
  }
}

@media (max-width: 576px) {
  .cta-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  .cta-text {
    font-size: 0.95rem;
  }
}

/* ===== Team Section ===== */
.team-section {
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  position: relative;
}

.team-section .section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #5a5a5a;
  max-width: 650px;
  margin: 0 auto;
}

/* ===== Team Cards ===== */
.team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  padding-bottom: 25px;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

/* ===== Team Image ===== */
.team-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.team-img img {
  width: 100%;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.1);
}

/* ===== Overlay ===== */
.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 123, 255, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.4s ease;
  border-radius: inherit;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

/* ===== Social Links ===== */
.social-links a {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #fff;
  color: #007bff;
  transform: scale(1.15);
}

/* ===== Text ===== */
.team-card h5 {
  font-weight: 700;
  margin-top: 15px;
  color: #0d1b2a;
}

.team-card p {
  color: #6c757d;
  font-size: 0.95rem;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .team-card {
    margin-bottom: 20px;
  }

  .team-section .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .team-card h5 {
    font-size: 1.1rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin: 0 5px;
  }
}

/* ===== Testimonials Section ===== */
.testimonials-section {
  background: linear-gradient(135deg, #f8faff 0%, #eef4ff 100%);
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #0d1b2a;
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
}

/* ===== Testimonial Card ===== */
.testimonial-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

/* ===== Quote Icon ===== */
.quote-icon {
  font-size: 2.5rem;
  color: #007bff;
  opacity: 0.2;
  position: absolute;
  top: 15px;
  left: 25px;
}

/* ===== Text ===== */
.testimonial-text {
  font-style: italic;
  color: #333;
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial-name {
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 0;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #6c757d;
}

/* ===== Stars ===== */
.stars i {
  font-size: 1.1rem;
  margin-right: 2px;
}

/* ===== Background Animation ===== */
.testimonials-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #007bff40, transparent);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite alternate;
}

.testimonials-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #6610f240, transparent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite alternate-reverse;
}

/* Floating Animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(20px);
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 25px 20px;
  }

  .quote-icon {
    font-size: 2rem;
  }
}

/* ===== Contact Modern Section ===== */
.contact-modern {
  position: relative;
  background: linear-gradient(-45deg, #007bff, #6610f2, #6f42c1, #00c6ff);
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
  color: #fff;
  overflow: hidden;
}

/* Animated gradient background */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Title */
.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Contact Info */
.contact-info li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.contact-info i {
  color: #00e5ff;
  margin-right: 10px;
}

.contact-info li:hover {
  opacity: 1;
  transform: translateX(6px);
}

/* Glassmorphic Form */
.contact-glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease;
}

.contact-glass:hover {
  transform: translateY(-6px);
}

/* Form Fields */
.form-floating label {
  color: rgba(255, 255, 255, 0.8);
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: #00e5ff;
  box-shadow: 0 0 8px #00e5ff;
  color: #fff;
}

/* Neon Button */
.btn-neon {
  background: linear-gradient(90deg, #007bff, #6610f2);
  background-size: 200% auto;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(102, 16, 242, 0.5), 0 0 30px rgba(0, 123, 255, 0.4);
  position: relative;
  overflow: hidden;
}

/* Glow animation */
.btn-neon:hover {
  background-position: right center;
  transform: scale(1.07);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.9), 0 0 50px rgba(102, 16, 242, 0.8);
}

/* Ripple effect */
.btn-neon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: 0;
}

.btn-neon:hover::after {
  width: 220%;
  height: 220%;
}

.btn-neon span {
  position: relative;
  z-index: 1;
}


/* Responsive */
@media (max-width: 768px) {
  .contact-title {
    font-size: 2rem;
    text-align: center;
  }

  .contact-info {
    text-align: center;
    margin-bottom: 30px;
  }

  .contact-glass {
    padding: 25px 20px;
  }
}

/* ===== Modern Tech Footer ===== */
.footer-modern {
  background: linear-gradient(135deg, #0a0a1a, #111836, #1a1a40);
  position: relative;
  overflow: hidden;
  color: #ddd;
}

/* Subtle glowing gradient overlay */
.footer-modern::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 123, 255, 0.15), transparent 70%);
  animation: rotateGlow 20s linear infinite;
  z-index: 0;
}

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.footer-modern .container {
  position: relative;
  z-index: 2;
}

/* Section titles */
.footer-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 15px;
  position: relative;
}

.footer-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #6610f2);
  margin: 8px auto 0;
  border-radius: 2px;
}

/* Links */
.footer-links a {
  color: #bbb;
  text-decoration: none;
  display: block;
  padding: 4px 0;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
  color: #00e5ff;
  transform: translateX(5px);
}

/* Contact Info */
.footer-contact li {
  margin: 8px 0;
  font-size: 0.95rem;
}

.footer-contact i {
  background: linear-gradient(to right, #007bff, #6610f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Optional hover animation */
.footer-contact i:hover {
  transform: scale(1.2);
  opacity: 0.9;
}


/* Social Icons */
.social-icons a {
  color: #fff;
  font-size: 1.4rem;
  margin: 0 8px;
  transition: all 0.3s ease;
  display: inline-block;
}

.social-icons a:hover {
  background: linear-gradient(to right, #007bff, #6610f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateY(-3px) scale(1.1);
  text-shadow: 0 0 12px rgba(0, 123, 255, 0.4);
}

/* Divider */
.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-modern {
    text-align: center;
  }
  .footer-title::after {
    margin: 8px auto;
  }
}


/* Default (Desktop/Laptop View) */
.logo-desktop {
  display: inline-block;
  height: 75px; /* adjust as needed */
}

.logo-mobile {
  display: none;
}

/* Mobile/Tablet View */
@media (max-width: 991px) { /* Bootstrap's lg breakpoint */
  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: inline-block;
    height: 60px; /* adjust as needed */
  }
}
