/* ==============================
   Brand Colors Override
   Primary: #0b104d
   Secondary: #ff3b30
   Only overriding Bootstrap primary & secondary utilities
============================== */

:root {
  --bs-primary: #9de7f2;
  --bs-primary-rgb: 157, 231, 242;

  --bs-secondary: #2c3e50;
  --bs-secondary-rgb: 44, 62, 80;
}


/* Text Colors */
.text-primary { color: #9de7f2 !important; }
.text-secondary { color: #2c3e50 !important; }

/* Background Colors */
.bg-primary { background-color: #9de7f2 !important; }
.bg-secondary { background-color: #2c3e50 !important; }

/* Border Colors */
.border-primary { border-color: #9de7f2 !important; }
.border-secondary { border-color: #2c3e50 !important; }

/* Buttons */
.btn-primary {
  background-color: #9de7f2;
  border-color: #9de7f2;
}

.btn:focus-visible
{
  background-color: #2c3e50;
  border-color: #2c3e50;
  color: white !important;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
  background-color: #2c3e50;
  border-color: #2c3e50;
  color: white !important;
}

.btn-secondary {
  background-color: #2c3e50;
  border-color: #2c3e50;
}
.btn-secondary:hover {
  background-color: #cc2f26;
  border-color: #cc2f26;
}

.text-primary{
  color:  #9de7f2 !important;
}

/* Navbar */
.navbar.bg-primary { background-color: #9de7f2 !important; }
.navbar.bg-secondary { background-color: #2c3e50 !important; }

/* Tables */
.table-primary {
  --bs-table-bg: rgba(var(--bs-primary-rgb), 0.1);
  --bs-table-striped-bg: rgba(var(--bs-primary-rgb), 0.15);
  --bs-table-hover-bg: rgba(var(--bs-primary-rgb), 0.2);
  --bs-table-border-color: rgba(var(--bs-primary-rgb), 0.4);
  color: #9de7f2;
}
.table-secondary {
  --bs-table-bg: rgba(var(--bs-secondary-rgb), 0.1);
  --bs-table-striped-bg: rgba(var(--bs-secondary-rgb), 0.15);
  --bs-table-hover-bg: rgba(var(--bs-secondary-rgb), 0.2);
  --bs-table-border-color: rgba(var(--bs-secondary-rgb), 0.4);
  color: #2c3e50;
}

/* Badges */
.badge.bg-primary { background-color: #9de7f2 !important; }
.badge.bg-secondary { background-color: #2c3e50 !important; }

/* Alerts */
.alert-primary {
  color: #9de7f2;
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  border-color: rgba(var(--bs-primary-rgb), 0.25);
}
.alert-secondary {
  color: #2c3e50;
  background-color: rgba(var(--bs-secondary-rgb), 0.1);
  border-color: rgba(var(--bs-secondary-rgb), 0.25);
}

/* Cards */
.card.border-primary { border-color: #9de7f2 !important; }
.card.border-secondary { border-color: #2c3e50 !important; }

/* Headings */
h1, h2, h3, h4, h5, h6 {
  /*color: #9de7f2;*/
}
 :root {
            --primary-color: #9de7f2;
            --secondary-color: #2c3e50;
            --accent-color: #ff6b6b;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            color: var(--dark-color);
            overflow-x: hidden;
        }

        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
        }

        .navbar-brand {
            font-weight: 700;
            color: var(--secondary-color);
            font-size: 1.8rem;
        }

        .navbar-brand span {
            color: var(--primary-color);
        }

        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-color);
        }

        .btn-primary {
            background-color: var(--primary-color);
            border: none;
            color: var(--secondary-color);
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .navi {
            padding: 3px 10px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .carousel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .carousel-cell {
            width: 100%;
            height: 100%;
        }

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

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
        }

        #shareDropdown a {
            height: fit-content;
        }

        .text-primary {
            color: #9de7f2 !important;
        }

         .footer {
            padding: 70px 0 30px;
            background-color: var(--secondary-color);
            color: white;
        }

        .footer h5 {
            font-weight: 600;
            margin-bottom: 25px;
            font-size: 1.2rem;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 12px;
        }

        .footer ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer ul li a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .social-icons {
            display: flex;
            margin-top: 20px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }

        .social-icons a i {
            color: white;
            font-size: 1.2rem;
        }

        .copyright {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }

        .page-header {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(157, 231, 242, 0.2) 0%, rgba(255, 255, 255, 1) 100%);
            text-align: center;
        }

        .page-header h1 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .page-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .about-section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .mission-vision {
            background-color: var(--primary-color);
            padding: 80px 0;
            border-radius: 20px;
            margin: 80px 0;
        }

        .mission-card, .vision-card {
            background-color: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.3s ease;
        }

        .mission-card:hover, .vision-card:hover {
            transform: translateY(-10px);
        }

        .mission-icon, .vision-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .mission-icon i, .vision-icon i {
            font-size: 2.5rem;
            color: var(--secondary-color);
        }

        .values-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(157, 231, 242, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
        }

        .value-card {
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            background-color: white;
            height: 100%;
            text-align: center;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .value-icon i {
            font-size: 2rem;
            color: var(--secondary-color);
        }

        .value-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .team-section {
            padding: 100px 0;
        }

        .team-card {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            text-align: center;
            margin: 15px 0;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .team-img {
            width: 150px;
            height: 150px;
            background-color: var(--primary-color);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .team-img i {
            font-size: 4rem;
            color: var(--secondary-color);
        }

        .team-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--secondary-color);
        }

        .team-card p {
            color: #666;
            margin-bottom: 20px;
        }

        .stats-section {
            padding: 80px 0;
            background-color: var(--primary-color);
            text-align: center;
        }

        .stat-item {
            padding: 30px;
        }

        .stat-item h2 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .stat-item p {
            font-size: 1.2rem;
            color: var(--secondary-color);
        }

        .footer {
            padding: 70px 0 30px;
            background-color: var(--secondary-color);
            color: white;
        }

        .footer h5 {
            font-weight: 600;
            margin-bottom: 25px;
            font-size: 1.2rem;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 12px;
        }

        .footer ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer ul li a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .social-icons {
            display: flex;
            margin-top: 20px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }

        .social-icons a i {
            color: white;
            font-size: 1.2rem;
        }

        .copyright {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }

        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.5rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .mission-card, .vision-card, .value-card, .team-card {
                padding: 25px;
            }
        }



 .btn-animated {
      position: relative;
      padding: 12px 30px;
      font-size: 18px;
      font-weight: bold;
      color: white;
      background: linear-gradient(45deg, #0b444d, #0e5f6b);
      border: none;
      border-radius: 50px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: popIn 0.5ms ease forwards, pulse 2s infinite;
    }

    /* Hover effect */
    .btn-animated:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 20px rgba(157, 231, 242, 0.6);
      animation: none; /* stop pulsing on hover */
    }

    /* Shine effect */
    .btn-animated::after {
      content: "";
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: rgba(255, 255, 255, 0.4);
      transform: skewX(-25deg);
    }

    .btn-animated:hover::after {
      animation: shine 0.75s forwards;
    }

    /* On load pop effect */
    @keyframes popIn {
      0% {
        transform: scale(0.5);
        opacity: 0;
      }
      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    /* Pulse animation */
    @keyframes pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(157, 231, 242, 0.7);
      }
      50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(157, 231, 242, 0.7);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(157, 231, 242, 0.7);
      }
    }

    /* Shine effect animation */
    @keyframes shine {
      0% {
        left: -75%;
      }
      100% {
        left: 125%;
      }
    }