

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Faculty+Glyphic&family=Fira+Sans+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}


body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overflow-x: hidden !important;
}
h1,h2,h3,h4,h5,h6 {
    font-family: "Anton", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
}


.btn-blue {
    background-color: #004995 !important;
    color: #fff !important;
    font-size: 13px !important;
}



/* --- Banner Section Layout --- */
    .banner-section {
        width: 100%;
        overflow: hidden;
        background: #f8f9fa;
        position: relative;
    }

    .carousel-item {
        height: 500px; /* Desktop Height */
        background-color: #000;
    }

    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* --- Modern Custom Arrows --- */
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.3s ease;
        opacity: 1; /* Always visible */
        border: 1px solid rgba(255, 255, 255, 0.3);
        margin: 0 25px;
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        background: #ffffff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        opacity: 1;
    }

    /* Arrow Icon Color Logic */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 22px;
        height: 22px;
        filter: brightness(0) invert(1); /* Default White Arrows */
        transition: filter 0.3s ease;
    }

    .carousel-control-prev:hover .carousel-control-prev-icon,
    .carousel-control-next:hover .carousel-control-next-icon {
        filter: brightness(0) invert(0); /* Turns Black on White hover */
    }

    /* --- Modern Pill Indicators --- */
    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #ffffff;
        opacity: 0.5;
        margin: 0 6px;
        border: none;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .carousel-indicators .active {
        opacity: 1;
        width: 28px; /* Expands to pill shape */
        border-radius: 10px;
    }

    /* --- Responsiveness --- */
    @media (max-width: 992px) {
        .carousel-item { height: 400px; }
    }

    @media (max-width: 768px) {
        .carousel-item { height: 300px; }
        .carousel-control-prev, .carousel-control-next { 
            width: 40px; height: 40px; margin: 0 10px; 
        }
    }

    @media (max-width: 480px) {
        .carousel-item { height: 220px; }
        .carousel-control-prev, .carousel-control-next { display: none; } /* Hide arrows on tiny screens */
    }








    /* Mimicking the background texture/style */
        .challenge-card {
            border: none;
            border-radius: 0;
            text-align: center;
            height: 100%;
            transition: transform 0.3s ease;
        }

        .card-header-img {
            background-color: #ffffff;
            background-image: url('https://www.transparenttextures.com/patterns/white-paperboard.png'); /* Subtle paper texture */
            /* padding: 60px 20px; */
            min-height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-bottom: 1px solid #eee;
        }

        /* Typography Styling */
        .text-take-the {
            color: #d14d42; /* Reddish tone */
            font-family: 'Playfair Display', serif;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 1.2rem;
            margin-bottom: 0;
        }

        .text-main-category {
            color: #0d4a8d; /* Deep blue */
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-style: italic;
            line-height: 0.8;
            margin-top: -5px;
        }

        .text-challenge {
            color: #f6b352; /* Yellow/Orange */
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-style: italic;
            margin-top: -10px;
        }

        .card-body h5 { font-weight: 800; font-size: 1.1rem; }
        .card-body p { font-size: 0.85rem; color: #666; line-height: 1.6; }
        
        .btn-learn-more {
            background-color: #0d4a8d;
            color: white;
            border-radius: 4px;
            padding: 5px 20px;
            font-size: 0.8rem;
            text-transform: none;
        }
        
        .btn-learn-more:hover { background-color: #083463; color: white; }



        .bg-purple {
    background-color: #004995;
}






/* Section Background and Typography */
.offerings-section {
    background-color: #00428d; /* Deep blue from image */
    color: white;
    padding: 80px 0;
    font-family: 'Roboto', sans-serif;
}

.section-title {
    font-family: 'Anton', sans-serif; /* Use a heavy condensed font */
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 50px;
}

/* Card Styling */
.offering-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px 30px;
    height: 100%;
    text-align: center;
}

/* Icon Halo Effect */
.icon-glow {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 2.5rem;
}

.card-heading {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}












.accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-btn {
  width: 100%;
  background: #03458f;
  color: white;
  font-weight: 600;
  padding: 15px 50px;
  text-align: left;
  position: relative;
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s ease;
}

.accordion-btn::before {
  content: "+";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: #d62828;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  font-size: 18px;
  font-weight: bold;
}

.accordion-btn.active::before {
  content: "-";
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #f8f8f8;
  color: #333;
  transition: max-height 0.3s ease;
  padding: 0 20px;
  font-size: 14px;
}

.accordion-content p {
  margin: 10px 0;
  padding: 10px 0;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 20px;
  }
}














    .display-4 {

        font-size: 2.5rem !important;

    }