@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Poppins: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&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
 --Dark-Purple:#4B0076;
 --Bright-Orange:#FFA500;
 --Light-Gray:#F5F5F5;
 --Dark-Black:#222222;
 --Vibrant-Purple:#7300B0;
 --Footer:#2E2E2E;
 /*--prinary-font:"Mulish", sans-serif;*/
 /*--secondary-font:"Poppins", sans-serif;*/
 --white-color: white;
 --cd-dark-blue: #ffffff;
 --cd-blue: #3e1dbd;
 --cd-orange: #ff6b00;
 --primary-color: #4B0076;
 --secondary-color: #FF6B00;
 --text-color: #333333;
 --light-gray: #f8f9fa;
 --border-color: #e9ecef;
 --transition-speed: 0.3s;
 --hover-color: #FF8533;
 --success-color: #28a745;
 --danger-color: #dc3545;
 --warning-color: #ffc107;
 --info-color: #17a2b8;
 --white: #ffffff;
 --gray-100: #f8f9fa;
 --gray-200: #e9ecef;
 --gray-300: #dee2e6;
 --gray-400: #ced4da;
 --gray-500: #adb5bd;
 --gray-600: #6c757d;
 --gray-700: #495057;
 --gray-800: #343a40;
 --gray-900: #212529;
}
body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      color: var(--text-color);
      background-color: #fff;
      line-height: 1.6;
      overflow-x: hidden;
    }
    
/* Standardized Heading Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333333;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 24px !important;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 24px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1.5rem;
}

/* Mobile Responsive Heading Styles */
@media (max-width: 768px) {
    h1, h2, h3, h4, h5, h6, .section-title {
        font-size: 20px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    h1, h2, h3, h4, h5, h6, .section-title {
        font-size: 18px;
        margin-bottom: 1rem;
    }
    }
    
h1{
    font-weight: 700 !important;
    font-family: var(--prinary-font);
    color: var(--Dark-Purple);
    font-size: 40px !important;
}
h2{
    font-weight: 600;
    font-family: var(--prinary-font);
    color: var(--Dark-Purple);
    font-size: 32px;
}
h3{
    font-weight: 600;
    font-family: var(--prinary-font);
    color: var(--Dark-Purple);
    font-size: 28px;
}
p{
    font-size: 18px;
    font-family: var(--prinary-font);
    color: var(--Dark-Black);
    font-weight: 400;
}
.heading h3{
    font-size:28px;
    font-weight: bold !important;
}
.main-button {
    background-color: #FFA500;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.main-button:hover {
    background-color: #FF8700;
    transform: scale(1.05);
}
/* -----------------header seion start here---------------------------- */
.navbar {
    background-color: var(--white-color);
    padding: 0.8rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    padding: 0;
    margin-right: 2rem;
}

.navbar-brand img {
    width: 160px;
    height: 35px;
    object-fit: contain;
}

.navbar-brand img {
    height: 40px;
}
.nav-link {
    color: #333;
    font-weight: 500;
}
.nav-link:hover {
    color: #ff6b00 !important;
}
.searchform {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.searchform .input-group {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.searchform .input-group:hover {
    border-color: #4B0076;
    box-shadow: 0 2px 8px rgba(75, 0, 118, 0.1);
}

.searchform .input-group:focus-within {
    border-color: #4B0076;
    box-shadow: 0 2px 8px rgba(75, 0, 118, 0.15);
}

.searchform input {
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: #333;
    background: transparent;
}

.searchform input::placeholder {
    color: #94a3b8;
}

.searchform .input-group-text {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.searchform .input-group-text:hover {
    color: #4B0076;
}

.search-results-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 8px;
    z-index: 1000;
    border: 1px solid #e0e0e0;
}

.search-results-header {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.search-results-header h6 {
    margin: 0;
    color: #4B0076;
    font-size: 0.9rem;
    font-weight: 600;
}

.search-results-list {
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.search-result-item:hover {
    background-color: #f8f9fa;
    color: #4B0076;
}

.search-result-item i {
    color: #94a3b8;
    margin-right: 12px;
    font-size: 0.9rem;
}

/* Mobile Search Styles */
@media (max-width: 991px) {
    .searchform {
        max-width: 100%;
    }
    
    .searchform .input-group {
        border-radius: 12px;
    }
    
    .searchform input {
        font-size: 0.95rem;
        padding: 0.6rem 0.8rem;
    }
    
    .searchform .input-group-text {
        padding: 0.6rem 0.8rem;
    }
}

@media (max-width: 576px) {
    .searchform .input-group {
        border-radius: 10px;
    }
    
    .searchform input {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
    
    .searchform .input-group-text {
        padding: 0.5rem 0.75rem;
    }
    
    .search-results-container {
        border-radius: 10px;
    }
    
    .search-result-item {
        padding: 0.6rem 0.8rem;
    }
}

.searchform .input-group {
    border: 1px solid #ced4da;
    border-radius: 20px;
    overflow: hidden;
  }

  .searchform input {
    border: none;
    padding-left: 15px;
  }

  .searchform .input-group-text {
    background-color: transparent;
    border: none;
    padding-right: 15px;
  }

  @media (max-width: 991px) {
    .navbar-collapse {
      margin-top: 1rem;
    }
    .searchform {
      width: 100%;
      margin-top: 1rem;
    }
   
  }
  @media (max-width:991px) {
    .second-nav{
        display: none;
    }
  }
.searchform input:focus {
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
.second-nav {
    background-color: var(--Dark-Purple);
    padding: 10px 0;
}
.second-nav .nav-link {
    font-size: 15px;
    font-family: var(--secondary-font);
    color: var(--white-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.second-nav .nav-link:hover {
    color: #ff6b00 !important;
}
.searchform {
width: 250px;
}

.searchform .input-group {
border: 1px solid #ced4da;
border-radius: 20px;
overflow: hidden;
}

.searchform input {
border: none;
padding-left: 15px;
}

.searchform .input-group-text {
background-color: transparent;
border: none;
padding-right: 15px;
}

/*----------------------------- hero sction start here-------------------- */
.hero {
    position: relative;
}
.search-bar-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.search-bar-container h2 {
    color: var(--black-color);
    font-size: 30px;
    font-family: var(--primary-font);
    font-weight: 700;
    margin-bottom: 20px;
}

.search-bar input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}


        .main-nav {
            background: #fff;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand img {
            height: 40px;
            width: auto;
        }

        .searchform .input-group {
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
        }

        .searchform .form-control {
            border: none;
            padding: 12px 15px;
            font-size: 15px;
        }

        .searchform .input-group-text {
            background: #fff;
            border: none;
            color: #666;
            padding-right: 15px;
        }

        .cd-review-link {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .cd-review-link i {
            color: #ff6b00;
        }

        .offer-badge {
            margin-top: 4px;
        }

        .cd-offer-link {
            text-decoration: none;
            font-size: 13px;
        }

        .offer-text {
            color: #666;
            margin-right: 5px;
        }

        .offer-amount {
            color: #4B0076;
            font-weight: 600;
        }

        .login-btn {
            background: #4B0076;
            color: #fff;
            border: none;
            padding: 8px 20px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .login-btn:hover {
            background: #3a0059;
            transform: translateY(-1px);
        }

        .nav-link-course {
            color: var(--cd-blue) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-link-course:hover {
            color: var(--cd-orange) !important;
        }

        /* ✅ Responsive Fixes */
        @media (max-width: 768px) {
            .goal-city-wrapper {
                flex-direction: column;
                gap: 8px;
            }
        }

        .custom-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }

        /* ✅ Second Navigation Fixes */
        

        /*filter*/

        /* Card Styling */
    .college-card {
      background-color: #fff;
      /* padding: 2rem; */
      border: 0.5px solid gray;
      border-radius: 2px;
      
      /* margin-bottom: 2rem; */
    }
    /* Filter Button Styling */
    .filter-btn {
      background-color: #fff;      
      color: #000;                 
      border: 1px solid gray;      
      border-radius: 50px;
      margin: 0.3rem;
      padding: 0.5rem 1rem;
      font-weight: bold;          
      transition: color 0.3s ease; 
    }
    .filter-btn:hover {
      color: #fff;
      border: 2px solid gray;
      background-color: #4B0076;
    }
    /* Image Styling for College and Ranking Logos */
    .college-logo, .ranking-logo {
      width: 50px;
      height: 50px;
      object-fit: cover;
      margin-right: 0.75rem;
      border-radius: 50%;
      border: 2px solid #ddd;
    }
    /* Table Styling */
    .table thead {
      background-color: #ff9800;
      color: #fff;
    }
    .table tbody tr:hover {
      background-color: #ff9800;
      color: #fff;
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    .table th, .table td {
      vertical-align: middle !important;
      border-top: none;
      border-bottom: 1px solid #dee2e6;
    }
    
    
    /*subscribe mail*/
            .newsletter-section {
            padding: 50px 0;
            text-align: center;
        }

        .newsletter-section h3 {
            font-weight: bold;
        }

        .form-control, .btn {
            height: 50px;
            border-radius: 5px;
        }

        .btn-submit {
            background-color: #ff7f00;
            color: white;
            border: none;
        }

        .btn-submit:hover {
            background-color: #e66900;
        }

        .input-group-text {
            background-color: #f8f9fa;
            border-right: none;
            border-radius: 5px 0 0 5px;
        }

        .form-control {
            border-left: none;
        }

        .input-group .form-control:focus {
            box-shadow: none;
            border-color: #ff7f00;
        }
        .form-control, .form-select, .btn, .input-group-text {
        height: 50px;
        border-radius: 5px;
    }
    
    
    
        footer ul li {
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        footer h6 {
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        footer a {
            text-decoration: none;
            color: #666;
        }

        footer a:hover {
            color: #ff7f00;
        }

        .hover-orange:hover {
            color: #ff7f00 !important;
            text-decoration: underline;
        }
    /* Hero Section Responsive Styling */
    .hero {
      position: relative;
      overflow: hidden;
    }

    /*.carousel-item {*/
    /*  height: 70vh;*/
    /*  min-height: 400px;*/
    /*}*/

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

    .search-bar-container {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      max-width: 800px;
      z-index: 2;
      text-align: center;
    }

    #element {
      color: #fff;
      font-size: 2.5vw;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .search-bar {
      position: relative;
      margin: 0 auto;
    }

    .search-bar .form-control {
      height: 60px;
      border-radius: 30px;
      padding: 15px 30px;
      font-size: 18px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    /* Mobile Responsive Adjustments */
    @media (max-width: 768px) {
      .carousel-item {
        height: 50vh;
        min-height: 300px;
      }

      #element {
        font-size: 6vw;
        margin-bottom: 15px;
      }

      .search-bar .form-control {
        height: 50px;
        padding: 10px 20px;
        font-size: 14px;
      }

      .search-bar-container {
        width: 95%;
        padding: 0 15px;
      }
    }

    @media (max-width: 576px) {
      .carousel-item {
        height: 40vh;
        min-height: 250px;
      }

      #element {
        font-size: 7vw;
      }
    }

    @media (max-width: 768px) {
      .container h1.fw-bold {
        font-size: 1.5rem;
        margin-bottom: 1rem;
      }
    }
    
    /*exlore*/
    
    /* Use Poppins throughout the page */
   

    /* Example custom classes */
    .bg-compare {
      background-color: #f9f9f9;
      padding: 16px;
      border-bottom: 1px solid #e0e0e0;
    }
    .custom-badge {
      background-color: #f0f0f0;
      border-radius: 16px;
      font-size: 14px;
      padding: 4px 12px;
      margin: 4px 8px 4px 0;
      white-space: nowrap;
    }
    .text-blue {
      color: var(--primary-color) !important;
    }
    .filter-btn {
      margin-right: 8px;
      margin-bottom: 8px;
    }
    /* Adjust some spacing to match Poppins styling better */
    .card-title {
      font-size: 1rem; /* ~16px in Poppins */
    }
    .card h5, .card-title {
      font-weight: 600 !important;
    }


/*new css*/

    h4 {
      font-weight: 600;
      margin-bottom: 1.5rem;
    }
    /* Carousel arrows */
    .carousel-control-prev,
    .carousel-control-next {
      width: 35px;
      height: 35px;
      top: 50%;
      transform: translateY(-50%);
      background-color: #f0f0f0;
      border-radius: 50%;
      border: none;
      opacity: 1;
      color: #333;
    }
    .carousel-control-prev:hover,
    .carousel-control-next:hover {
      background-color: #000;
      color: #fff;
    }
    /* Study Goal Card styling */
    .study-goal-card {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      flex: 1;
      margin: 0 10px;
      min-width: 200px;
      max-width: 300px;
    }
    .study-goal-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    /* Icon circle styling */
    .icon-circle {
      width: 60px;
      height: 60px;
      background: #f8f9fa;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      transition: all 0.3s ease;
    }
    .icon-circle i {
      font-size: 24px;
      color: #0e2a47;
    }
    .study-goal-card h5 {
      font-size: 1.1rem;
      margin-bottom: 10px;
      color: #0e2a47;
    }
    .college-count {
      font-size: 0.9rem;
      color: #666;
      margin-bottom: 10px;
    }
    .program-list {
      font-size: 0.85rem;
      color: #888;
    }
    .program-list div {
      margin: 5px 0;
    }
    /* Dark Section Background */
    .section-dark {
      background-color: #FFFFFF; /* Adjust as needed */
      color: #1A1A2E;
    }
    
    /* Section Title */
    .section-title {
      color: #f65; 
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }
    
    /* Pill List Wrapper */
    .pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem; /* Space between pills */
    }
    
    /* Individual Pill Links */
    .pill-link {
      display: inline-block;
      padding: 0.4rem 1rem;
      border: 1px solid #1A1A2E;
      border-radius: 50px; /* Makes the link pill-shaped */
      color: #1A1A2E;
      text-decoration: none;
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    
    /* Hover State */
    .pill-link:hover {
      color: #ff6b00 !important;
      background-color: rgba(255, 107, 0, 0.1);
    }

        .study-place-card {
            width: 140px;
            height: 140px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border: 1px solid #e0e0e0;
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 0 8px;
            background-color: #fff;
        }

        .study-place-card:hover {
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transform: translateY(-3px);
        }

        .study-place-card i {
            font-size: 40px;
            color: #1e3a8a;
        }

        .study-place-card span {
            font-size: 16px;
            font-weight: 500;
            margin-top: 10px;
            color: #333;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 40px;
            height: 40px;
            background-color: #f0f0f0;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
            color: #333;
            border: none;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background-color: #1e3a8a;
            color: #fff;
        }

        /* ✅ Increased Bottom Space */
       

        .category-btn {
            background-color: #f8f8f8;
            border: none;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            color: #333;
            margin-right: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .category-btn.active,
        .category-btn:hover {
            background-color: #000;
            color: #fff;
        }

        .course-card {
            border: 1px solid #e0e0e0;
            border-radius: 2px;
            padding: 16px;
            transition: box-shadow 0.3s ease;
            background-color: #fff;
            margin: 0 8px;
            min-width: 220px;
        }

        .course-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transform: translateY(-3px);
        }

        .course-badge {
            background-color: #e0e0e0;
            color: #000;
            font-size: 12px;
            padding: 4px 8px;
            border-radius: 2px;
            display: inline-block;
            margin-bottom: 10px;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 40px;
            height: 40px;
            background-color: #f0f0f0;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
            color: #333;
            border: none;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background-color: #000;
            color: #fff;
        }

        .course-overview {
            font-size: 14px;
            color: #1e3a8a;
            font-weight: 500;
            cursor: pointer;
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
   

        .exam-card {
            border: 1px solid #e0e0e0;
            border-radius: 2px;
            padding: 16px;
            transition: box-shadow 0.3s ease;
            background-color: #fff;
            margin: 0 8px;
            min-width: 240px;
        }

        .exam-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transform: translateY(-3px);
        }

        .exam-badge {
            background-color: #e0e0e0;
            color: #000;
            font-size: 12px;
            padding: 4px 8px;
            border-radius: 2px;
            display: inline-block;
            margin-bottom: 10px;
        }

        .exam-logo {
            width: 40px;
            height: 40px;
            object-fit: cover;
            margin-bottom: 8px;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 40px;
            height: 40px;
            background-color: #f0f0f0;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
            color: #333;
            border: none;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background-color: #000;
            color: #fff;
        }

        .exam-link {
            font-size: 14px;
            color: #1e3a8a;
            font-weight: 500;
            cursor: pointer;
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

    h4 {
      font-weight: 600;
      margin-bottom: 1.5rem;
    }
    /* Tabs (Exam Alerts, College Alerts, Admission Alerts) */
    .news-tab {
      border: 1px solid #e0e0e0;
      background-color: #fff;
      color: #333;
      font-size: 14px;
      padding: 6px 16px;
      border-radius: 2px;
      margin-right: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    .news-tab.active {
      background-color: #000;
      color: #fff;
      border-color: #000;
    }
    .news-tab:hover {
      color: #ff6b00 !important;
    }
    /* Card styling */
    .news-card {
      width: 220px; /* match approximate width from screenshot */
      border: 1px solid #e0e0e0;
      border-radius: 2px;
      background-color: #fff;
      padding: 16px;
      margin: 0 8px;
      transition: box-shadow 0.2s ease;
    }
    .news-card:hover {
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .news-card h6 {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .news-card p {
      font-size: 14px;
      margin-bottom: 8px;
      line-height: 1.4;
    }
    .read-more {
      font-size: 14px;
      color: #007bff;
      text-decoration: none;
    }
    .read-more:hover {
      color: #ff6b00 !important;
    }
    /* Carousel arrows */
    .carousel-control-prev, .carousel-control-next {
      width: 35px;
      height: 35px;
      top: 50%;
      transform: translateY(-50%);
      background-color: #f0f0f0;
      border-radius: 50%;
      border: none;
      opacity: 1;
      color: #333;
    }
    .carousel-control-prev:hover, .carousel-control-next:hover {
      background-color: #000;
      color: #fff;
    }
  /*new art*/
    h4 {
      font-weight: 600;
      margin-bottom: 1.5rem;
    }
    /* Carousel arrows */
    .carousel-control-prev, .carousel-control-next {
      width: 35px;
      height: 35px;
      top: 50%;
      transform: translateY(-50%);
      background-color: #f0f0f0;
      border-radius: 50%;
      border: none;
      opacity: 1;
      color: #333;
    }
    .carousel-control-prev:hover, .carousel-control-next:hover {
      background-color: #000;
      color: #fff;
    }
    /* Country Card styling */
    .country-card {
      width: 260px; /* approximate width from screenshot */
      border: 1px solid #e0e0e0;
      border-radius: 2px;
      background-color: #fff;
      padding: 16px;
      margin: 0 8px;
      transition: box-shadow 0.2s ease;
    }
    .country-card:hover {
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .country-card .icon {
      width: 50px;
      height: 50px;
      margin-bottom: 8px;
      display: block;
    }
    .country-card h5 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 4px;
    }
    .country-card .college-count {
      font-size: 14px;
      color: #555;
      margin-bottom: 16px;
    }
    .stats {
      display: flex;
      gap: 16px;
      margin-bottom: 12px;
    }
    .stat-item {
      font-size: 14px;
    }
    .stat-item span {
      display: block;
      font-weight: 600;
      color: #000;
    }
    .guides-title {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .guide-link {
      font-size: 14px;
      color: #007bff;
      text-decoration: none;
      display: block;
      margin-bottom: 4px;
    }
    .guide-link:hover {
      color: #ff6b00 !important;
    }

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity var(--transition-speed);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-speed);
  z-index: 1000;
  border: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

/* Toast Notifications */
.toast {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.toast-header {
  border-bottom: 1px solid var(--border-color);
}

/* Form Improvements */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(14, 42, 71, 0.25);
}

.btn-submit {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all var(--transition-speed);
}

.btn-submit:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* Card Improvements */
.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card-body {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #333;
}

.card-text {
  color: #666;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.card-footer {
  background: none;
  border-top: 1px solid #eee;
  padding: 1rem;
  margin-top: auto;
}

/* Responsive Card Styles */
@media (max-width: 1200px) {
  .card-img-top {
    height: 180px;
  }
}

@media (max-width: 992px) {
  .card-img-top {
    height: 160px;
  }
  
  .card-title {
    font-size: 1.1rem;
  }
  
  .card-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .card-img-top {
    height: 140px;
  }
  
  .card-body {
    padding: 1rem;
  }
  
  .card-title {
    font-size: 1rem;
  }
  
  .card-text {
    font-size: 0.85rem;
  }
  
  .card-footer {
    padding: 0.75rem;
  }
}

@media (max-width: 576px) {
  .card-img-top {
    height: 120px;
  }
  
  .card-body {
    padding: 0.75rem;
  }
  
  .card-title {
    font-size: 0.95rem;
  }
  
  .card-text {
    font-size: 0.8rem;
  }
  
  .card-footer {
    padding: 0.5rem;
  }
}

/* Card Grid Layout */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px;
}

@media (max-width: 1200px) {
  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 992px) {
  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 10px;
  }
}

/* Navigation Improvements */
.nav-link {
  position: relative;
  color: var(--text-color);
  transition: color var(--transition-speed);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width var(--transition-speed);
}

.nav-link:hover::after {
  width: 100%;
}

/* Carousel Improvements */
.carousel-item {
  transition: transform 0.6s ease-in-out;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
  height: 40px;
  width: 40px;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsive Improvements */
@media (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .card {
    margin-bottom: 20px;
  }
  
  .nav-link {
    padding: 10px 0;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accessibility Improvements */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Focus Styles */
*:focus {
  outline: none !important;
}

/* Add subtle focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
.btn:focus,
.form-control:focus,
.nav-link:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* Custom focus style for form elements */
.form-control:focus {
  border-color: #e0e0e0;
}

/* Remove focus outline from buttons */
.btn:focus,
.navbar-toggler:focus,
.carousel-control-prev:focus,
.carousel-control-next:focus {
  box-shadow: none !important;
}

/* Remove focus styles from navigation links */
.nav-link:focus,
.dropdown-item:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Remove focus outline from offcanvas close button */
.btn-close:focus {
  box-shadow: none !important;
  opacity: 1;
}

/* Remove focus outline from search input */
.cd-search:focus {
  box-shadow: none !important;
  border-color: #e0e0e0;
}

/* Remove focus outline from dropdown toggles */
.dropdown-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Print Styles */
@media print {
  .no-print {
    display: none;
  }
  
  body {
    font-size: 12pt;
  }
  
  .container {
    width: 100%;
    max-width: none;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --text-color: #ffffff;
    --light-gray: #1a1a1a;
    --border-color: #333333;
  }
  
  body {
    background: var(--gray-900);
  }
  
  .card {
    background: var(--gray-800);
  }
  
  .form-control {
    background: var(--gray-800);
    border-color: var(--border-color);
    color: var(--text-color);
  }
  
  .toast {
    background: var(--gray-800);
    color: var(--text-color);
  }
}

/* Review Section Styling */
.cd-review-link {
    color: #333;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    padding: 0;
    display: inline-block;
}

.cd-review-link:hover {
    color: #ff6b00;
    transform: translateY(-1px);
}

.cd-review-link i {
    margin-right: 4px;
    transition: transform 0.3s ease;
}

.cd-review-link:hover i {
    transform: translateX(2px);
}

/* Offer Badge Styling */
.offer-badge {
    margin-top: 0;
    background-color: #f0e6ff;
    padding: 2px 8px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(75, 0, 118, 0.05);
    transition: all 0.3s ease;
}

.offer-badge:hover {
    background-color: #fff3e0;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.1);
}

.cd-offer-link {
    font-size: 0.8rem;
    color: #4B0076;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cd-offer-link:hover {
    color: #ff6b00;
}

.offer-text {
    color: #4B0076;
    font-weight: normal;
    transition: color 0.3s ease;
}

.offer-amount {
    font-weight: 700;
    color: #4B0076;
    transition: color 0.3s ease;
}

.offer-badge:hover .offer-text,
.offer-badge:hover .offer-amount {
    color: #ff6b00;
}

/* Login Button Styling */
.login-btn {
    background-color: #f0e6ff;
    border: none;
    padding: 4px 12px;
    border-radius: 6px;
    color: #4B0076;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background-color: #fff3e0;
    color: #ff6b00;
    transform: translateY(-1px);
}

.login-btn i {
    color: #4B0076;
    transition: color 0.3s ease;
}

.login-btn:hover i {
    color: #ff6b00;
}

/* Login Section Styling */
.login-section {
    position: relative;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    background: #f0e6ff;
    border: none;
    color: #4B0076;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #fff3e0;
    color: #ff6b00;
    transform: translateY(-1px);
}

.login-btn i {
    font-size: 1.4rem;
    color: #4B0076;
    transition: all 0.3s ease;
}

.login-btn:hover i {
    color: #ff6b00;
    transform: scale(1.1);
}

/* Login Dropdown Styling */
.login-dropdown {
    min-width: 320px;
    padding: 20px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.login-dropdown .dropdown-header {
    text-align: center;
    margin-bottom: 20px;
}

.login-dropdown .dropdown-header h5 {
    color: #4B0076;
    font-weight: 600;
    margin-bottom: 8px;
}

.login-dropdown .dropdown-header p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.login-dropdown .dropdown-item {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.login-dropdown .dropdown-item:hover {
    background: #fff3e0;
    color: #ff6b00;
}

.login-dropdown .btn-choose-goal {
    width: 100%;
    padding: 12px;
    background: #ff6b00;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    margin: 16px 0;
    transition: all 0.3s ease;
}

.login-dropdown .btn-choose-goal:hover {
    background: #e65a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
}

.login-dropdown .login-footer {
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.login-dropdown .login-footer a {
    color: #4B0076;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-dropdown .login-footer a:hover {
    color: #ff6b00;
      text-decoration: underline;
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .login-dropdown {
        min-width: 280px;
        padding: 16px;
    }
    
    .login-btn {
        padding: 6px 12px;
    }
    
    .login-btn i {
        font-size: 1.2rem;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 991px) {
    .main-nav {
        padding: 10px 0;
    }

    .custom-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .navbar-brand img {
        height: 35px;
    }
    
    .cd-search {
        max-width: 100%;
    }

    /* Goal & City Section */
    .goal-city-wrapper {
        flex-direction: column;
        gap: 8px;
        margin: 10px 0;
    }

    .bg-cd-blue {
        width: 100%;
        padding: 8px;
    }

    /* Search Bar */
    .cd-search {
        width: 100%;
        margin: 10px 0;
    }

    /* Review & Offer Section */
    .d-flex.flex-column.align-items-start {
        margin: 10px 0;
        width: 100%;
        align-items: center !important;
    }

    .cd-review-link {
        font-size: 0.9rem;
        padding: 8px 0;
    }

    .offer-badge {
        width: 100%;
        text-align: center;
    }

    /* Login Section */
    .login-section {
        margin: 10px 0;
    }

    .login-btn {
        width: 100%;
        justify-content: center;
        padding: 10px;
    }

    .login-btn i {
        font-size: 1.2rem;
    }

    /* Dropdown Menu */
    .login-dropdown {
        width: 90%;
        margin: 0 auto;
        min-width: 280px;
        padding: 15px;
    }

    /* Second Navigation */
    .second-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 8px 0;
    }

    .second-nav .nav {
        flex-wrap: nowrap;
        padding: 0 15px;
    }

    .second-nav .nav-item {
        flex: 0 0 auto;
        margin-right: 15px;
    }

    .second-nav .nav-link {
        white-space: nowrap;
        font-size: 14px;
        padding: 6px 12px;
    }

    /* Hide scrollbar but keep functionality */
    .second-nav::-webkit-scrollbar {
        display: none;
    }
    .second-nav {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 30px;
    }

    .cd-review-link {
        font-size: 0.85rem;
    }

    .cd-offer-link {
        font-size: 0.8rem;
    }

    .login-btn span {
        font-size: 0.9rem;
    }

    .second-nav .nav-link {
        font-size: 13px;
        padding: 5px 10px;
    }
}

/* Goal & City Section */
.bg-cd-blue {
    background-color: transparent !important;
    border-radius: 6px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 63px;
}

.text-orenge {
    color: var(--secondary-color) !important;
}

/* Dropdown Styling */
.dropdown-toggle {
    color: #4B0076 !important;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    padding: 8px 12px;
}

.dropdown-toggle:hover {
    color: #ff6b00 !important;
    background: transparent;
}

.dropdown-toggle i {
    color: #4B0076;
    transition: color 0.3s ease;
}

.dropdown-toggle:hover i {
    color: #ff6b00;
}

.dropdown-menu {
    border-color: var(--border-color);
    border-radius: 8px;
    padding: 8px;
    background: white;
}

.dropdown-item {
    color: #4B0076;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--gray-100);
    color: var(--primary-color);
}

/* Vertical Separator */
.vr {
    border-color: #4B0076 !important;
    opacity: 1 !important;
    height: 45px !important;
    margin: 0 6px;
}

/* Mobile Offcanvas Menu Styling */
.offcanvas {
    background-color: var(--white);
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.offcanvas-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.offcanvas-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.btn-close {
    padding: 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
    background-color: transparent;
    border: 0;
    opacity: 0.5;
    transition: opacity 0.15s linear;
}

.offcanvas-body {
    padding: 1rem;
    overflow-y: auto;
}

/* Mobile Search Offcanvas Specific Styles */
#searchOffcanvas {
    height: 100vh !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

#searchOffcanvas .offcanvas-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
    padding: 1rem;
}

#searchOffcanvas .offcanvas-body {
    padding: 1rem;
    height: calc(100vh - 80px); /* Subtract header height */
    overflow-y: auto;
}

#searchOffcanvas .search-input-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

#searchOffcanvas .search-input-container:hover {
    border-color: #4B0076;
    box-shadow: 0 0 0 2px rgba(75, 0, 118, 0.1);
}

#searchOffcanvas .search-input-container:focus-within {
    border-color: #4B0076;
    box-shadow: 0 0 0 3px rgba(75, 0, 118, 0.15);
}

#searchOffcanvas .search-input-container .input-group {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

#searchOffcanvas .search-input-container .input-group:hover {
    border-color: #4B0076;
    box-shadow: 0 0 0 2px rgba(75, 0, 118, 0.1);
}

#searchOffcanvas .search-input-container .input-group:focus-within {
    border-color: #4B0076;
    box-shadow: 0 0 0 3px rgba(75, 0, 118, 0.15);
}

#searchOffcanvas .search-input-container .input-group input {
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    color: #333;
    background: transparent;
}

#searchOffcanvas .search-input-container .input-group input::placeholder {
    color: #999;
}

#searchOffcanvas .search-input-container .input-group-text {
    background: transparent;
    border: none;
    color: #666;
    padding: 0.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

#searchOffcanvas .search-input-container .input-group-text:hover {
    color: #4B0076;
}

#searchOffcanvas .search-input-container .input-group {
    border: 1px solid #ced4da;
    border-radius: 20px;
    overflow: hidden;
  }

  #searchOffcanvas .search-input-container .input-group input {
    border: none;
    padding-left: 15px;
  }

  #searchOffcanvas .search-input-container .input-group-text {
    background-color: transparent;
    border: none;
    padding-right: 15px;
  }

  @media (max-width: 991px) {
    #searchOffcanvas .search-input-container {
        max-width: 100%;
    }
    
    #searchOffcanvas .search-input-container .input-group {
        border-radius: 6px;
    }
}

@media (max-width: 576px) {
    #searchOffcanvas .search-input-container {
        border-radius: 6px;
    }
    
    #searchOffcanvas .search-input-container .input-group {
        border-radius: 4px;
    }
    
    #searchOffcanvas .search-input-container .input-group input {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
    
    #searchOffcanvas .search-input-container .input-group-text {
        font-size: 0.9rem;
    }
}

#searchOffcanvas .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

#searchOffcanvas .btn-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.5rem;
    margin: 0;
    opacity: 0.5;
}

#searchOffcanvas .search-section {
    margin-bottom: 2rem;
}

#searchOffcanvas .recent-search-item,
#searchOffcanvas .popular-search-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
}

#searchOffcanvas .recent-search-item:hover,
#searchOffcanvas .popular-search-item:hover {
    background-color: #f8f9fa;
}

#searchOffcanvas .recent-search-item i,
#searchOffcanvas .popular-search-item i {
    margin-right: 1rem;
    color: #6c757d;
    font-size: 1.1rem;
}

#searchOffcanvas .recent-search-item span,
#searchOffcanvas .popular-search-item span {
    color: #333;
    font-size: 1rem;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    #searchOffcanvas {
        background-color: #1a1a1a;
    }

    #searchOffcanvas .offcanvas-header {
        background-color: #1a1a1a;
        border-bottom-color: #333;
    }

    #searchOffcanvas .search-input-container .input-group input {
        background-color: #2d2d2d;
        border-color: #333;
        color: #fff;
    }

    #searchOffcanvas .recent-search-item,
    #searchOffcanvas .popular-search-item {
        border-bottom-color: #333;
    }

    #searchOffcanvas .recent-search-item:hover,
    #searchOffcanvas .popular-search-item:hover {
        background-color: #2d2d2d;
    }

    #searchOffcanvas .recent-search-item span,
    #searchOffcanvas .popular-search-item span {
        color: #fff;
    }
}

/* Notification Icon Styles */
.notification-icon {
  position: relative;
  padding: 0.5rem;
  color: #fff;
  transition: all 0.3s ease;
}

.notification-icon:hover {
  color: #ffa500;
  transform: scale(1.1);
}

/* Notification Badge */
.notification-badge {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #ff6b00;
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

@media (prefers-color-scheme: dark) {
  .notification-badge {
    border-color: #0e2a47;
    box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.4);
  }
  
  .notification-badge:hover {
    box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.6);
  }
}

/* Notification Offcanvas Styles */
#notificationOffcanvas {
  width: 100%;
  max-width: 400px;
  background-color: #fff;
}

#notificationOffcanvas .offcanvas-header {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

#notificationOffcanvas .offcanvas-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

#notificationOffcanvas .offcanvas-body {
  padding: 0;
  overflow-y: auto;
}

.notification-list {
  padding: 0.5rem;
}

.notification-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s ease;
}

.notification-item:last-child {
  border-bottom: none;
}

.notification-item:hover {
  background-color: var(--gray-200);
}

.notification-item.unread {
  background-color: var(--gray-100);
}

.notification-item.unread:hover {
  background-color: var(--gray-200);
}

.notification-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0e6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.notification-icon-wrapper i {
  color: #4B0076;
  font-size: 1.1rem;
}

.notification-content {
  flex-grow: 1;
}

.notification-content h6 {
  margin: 0 0 0.25rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
}

.notification-content p {
  margin: 0 0 0.25rem 0;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.notification-content small {
  font-size: 0.8rem;
  color: #999;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  #notificationOffcanvas {
    background-color: #1a1a1a;
  }

  #notificationOffcanvas .offcanvas-header {
    border-bottom-color: #333;
  }

  #notificationOffcanvas .offcanvas-title {
    color: #fff;
  }

  .notification-item {
    border-bottom-color: #333;
  }

  .notification-item:hover {
    background-color: var(--gray-700);
  }

  .notification-item.unread {
    background-color: var(--gray-700);
  }

  .notification-item.unread:hover {
    background-color: var(--gray-600);
  }

  .notification-content h6 {
    color: #fff;
  }

  .notification-content p {
    color: #ccc;
  }

  .notification-content small {
    color: #888;
  }
}

/* Mobile optimizations */
@media (max-width: 576px) {
  #notificationOffcanvas {
    max-width: 100%;
  }

  .notification-item {
    padding: 0.75rem;
  }

  .notification-icon-wrapper {
    width: 35px;
    height: 35px;
  }

  .notification-content h6 {
    font-size: 0.9rem;
  }

  .notification-content p {
    font-size: 0.85rem;
  }
}

/* User Offcanvas Panel */
.offcanvas-end {
  width: 85%;
  max-width: 400px;
  background-color: #fff;
}

.offcanvas-header {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.offcanvas-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.user-profile {
  padding: 1.5rem 1rem;
  text-align: center;
}

.user-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background-color: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-avatar i {
  font-size: 2.5rem;
  color: #0e2a47;
}

.user-profile h6 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.user-profile p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

.quick-actions {
  padding: 0 1rem;
}

.quick-actions .btn {
  height: 45px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.quick-actions .btn-primary {
  background-color: #0e2a47;
  border-color: #0e2a47;
}

.quick-actions .btn-outline-primary {
  color: #0e2a47;
  border-color: #0e2a47;
}

.menu-section {
  margin-bottom: 1rem;
}

.menu-section .menu-header h6 {
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 1rem;
}

.menu-items {
  display: flex;
  flex-direction: column;
}

.menu-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
  position: relative;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item i {
  font-size: 1rem;
  width: 24px;
  color: #0e2a47;
  margin-right: 0.75rem;
}

.menu-item .ms-auto {
  color: #666;
  font-size: 0.8rem;
}

.menu-item:hover {
  background-color: #f8f9fa;
  color: #ff6b00;
}

.menu-item:hover i {
  color: #ff6b00;
}

.menu-item:hover .ms-auto {
  color: #ff6b00;
}

/* Study Abroad Section Specific Styles */
.menu-section .menu-item .fa-plus {
  font-size: 0.8rem;
  color: #666;
}

.menu-section .menu-item:hover .fa-plus {
  color: #ff6b00;
}

/* Other Popular Links Section Specific Styles */
.menu-section .menu-item .fa-chevron-right {
  font-size: 0.8rem;
  color: #666;
}

.menu-section .menu-item:hover .fa-chevron-right {
  color: #ff6b00;
}

/* Notification Badge */
.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 8px;
  height: 8px;
  background-color: #ff6b00;
  border-radius: 50%;
  border: 2px solid #0e2a47;
}

/* Mobile Navbar */
.navbar-dark {
  background-color: #fff !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-dark .btn {
  color: #0e2a47 !important;
}

.navbar-dark .notification-icon {
  color: #0e2a47 !important;
}

.navbar-dark .navbar-brand {
  padding: 0.5rem 0;
}

/* Search Offcanvas */
.search-input-container {
  position: relative;
  width: 100%;
}

.cd-search {
  padding-right: 40px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  height: 45px;
}

.cd-search:focus {
  box-shadow: none;
  border-color: #ff6b00;
}

.search-button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 45px;
    border: none;
    background: transparent;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
    overflow: hidden;
}

.search-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(75, 0, 118, 0.1), rgba(75, 0, 118, 0.2));
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 8px rgba(75, 0, 118, 0.1);
}

.search-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-button:hover {
    color: #4B0076;
    transform: scale(1.1) rotate(5deg);
}

.search-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 4px 12px rgba(75, 0, 118, 0.15);
}

.search-button:hover::after {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.1)
    );
}

.search-button i {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.search-button:active {
    transform: scale(0.95) rotate(-2deg);
}

.search-button:active::before {
    background: linear-gradient(135deg, 
        rgba(75, 0, 118, 0.2),
        rgba(75, 0, 118, 0.3)
    );
    box-shadow: 0 2px 6px rgba(75, 0, 118, 0.2);
}

.search-button:active i {
    transform: scale(0.9);
}

/* Mobile Search Button Styles */
@media (max-width: 991px) {
    .search-button {
        width: 40px;
    }
    
    .search-button::before {
        width: 32px;
        height: 32px;
    }
    
    .search-button i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .search-button {
        width: 36px;
    }
    
    .search-button::before {
        width: 28px;
        height: 28px;
    }
    
    .search-button i {
        font-size: 0.95rem;
    }
}

.search-results-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-top: 8px;
  z-index: 1000;
  display: none;
}

.search-results-container.show {
  display: block;
}

.search-results-header {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
}

.search-results-header h6 {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  font-weight: 600;
}

.search-results-list {
  max-height: 400px;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}

.search-result-item:hover {
  background-color: #f8f9fa;
  color: #ff6b00;
}

.search-result-item i {
  color: #666;
  margin-right: 12px;
  font-size: 0.9rem;
}

.search-result-item:hover i {
  color: #ff6b00;
}

/* Mobile Menu */
.goal-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: #f8f9fa;
  margin-bottom: 1rem;
  border-radius: 8px;
}

.goal-selector span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}

.goal-selector i {
  color: #666;
}

.offcanvas-search {
  padding: 0 1rem;
  margin-bottom: 1.5rem;
}

.offcanvas-search input {
  height: 45px;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
}

.browse-categories {
  padding: 0 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.category-list {
  padding: 0 1rem;
}

.category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid #eee;
}

.category-item:last-child {
  border-bottom: none;
}

.category-item i {
  color: #666;
  font-size: 0.8rem;
}

.category-item:hover {
  color: #ff6b00;
}

.category-item:hover i {
  color: #ff6b00;
}

.view-more-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.view-more-btn i {
  font-size: 0.8rem;
  color: #666;
}

.view-more-btn:hover {
  color: #ff6b00;
}

.view-more-btn:hover i {
  color: #ff6b00;
}

.category-list-extended {
  display: none;
  padding: 0 1rem;
}

.category-list-extended.show {
  display: block;
}

/* Mobile Menu Offcanvas */
.offcanvas-start {
    width: 100%;
    max-width: 100%;
    background: #fff;
}

.offcanvas-header {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
}

.offcanvas-header .text-orange {
    color: #ff6b00;
    font-weight: 500;
}

.offcanvas-header .text-muted {
    color: #6c757d;
}

.select-goal-section {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.select-goal-section span {
    font-weight: 500;
    color: #333;
}

.select-goal-section i {
    color: #ff6b00;
    cursor: pointer;
}

.search-box-section {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.search-box-section .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    font-size: 0.95rem;
}

.search-box-section .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.category-list {
    padding: 0.5rem 0;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-item:last-child {
    border-bottom: none;
}

.category-item span {
    font-weight: 500;
}

.category-item i {
    color: #666;
    transition: color 0.3s ease;
}

.category-item:hover {
    background: #f8f9fa;
}

.category-item:hover span,
.category-item:hover i {
    color: #ff6b00;
}

.fa-arrow-left {
    color: #333;
    font-size: 1.1rem;
}

.text-dark {
    color: #333;
    font-weight: 500;
}

@media (max-width: 576px) {
    .offcanvas-header {
        padding: 0.75rem;
    }
    
    .category-item {
        padding: 0.6rem 0.8rem;
    }
    
    .search-box-section .form-control {
        padding: 0.6rem 0.8rem 0.6rem 2.2rem;
    }
}

/* All Courses Link */
.all-courses-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  color: #0e2a47;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid #eee;
}

.all-courses-link:hover {
  color: #ff6b00;
}

.all-courses-link i {
  font-size: 0.8rem;
  color: #666;
}

.all-courses-link:hover i {
  color: #ff6b00;
}

/* Career Help Section */
.career-help-section {
  padding: 1rem;
}

.career-help-section .section-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.career-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.career-item i {
  font-size: 1.5rem;
  color: #0e2a47;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.career-item span {
  font-size: 0.85rem;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

.career-item:hover {
  background-color: #fff3e0;
}

.career-item:hover i,
.career-item:hover span {
  color: #ff6b00;
}

@media (max-width: 576px) {
  .career-grid {
    gap: 0.75rem;
  }
  
  .career-item {
    padding: 0.75rem;
  }
  
  .career-item i {
    font-size: 1.25rem;
  }
  
  .career-item span {
    font-size: 0.8rem;
  }
}

.review-offer-badge {
    background-color: #fff3e0;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
}

.review-offer-badge a {
    font-size: 0.85rem;
    font-weight: 500;
    color: #ff6b00 !important;
}

.review-offer-badge .text-muted {
    font-size: 0.85rem;
    opacity: 0.7;
}

.review-offer-badge a:hover {
    color: #e65100 !important;
    text-decoration: underline !important;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .study-goal-card {
    min-width: 180px;
    max-width: 250px;
  }
}

@media (max-width: 992px) {
  .study-goal-card {
    min-width: 160px;
    max-width: 220px;
  }
  
  .icon-circle {
    width: 50px;
    height: 50px;
  }
  
  .icon-circle i {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .study-goal-card {
    min-width: 140px;
    max-width: 200px;
  }
  
  .study-goal-card h5 {
    font-size: 1rem;
  }
  
  .college-count {
    font-size: 0.85rem;
  }
  
  .program-list {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .study-goal-card {
    min-width: 100%;
    max-width: 100%;
    margin: 0 0 15px 0;
  }
  
  .icon-circle {
    width: 45px;
    height: 45px;
  }
  
  .icon-circle i {
    font-size: 18px;
  }
  
  .study-goal-card h5 {
    font-size: 0.95rem;
  }
  
  .college-count {
    font-size: 0.8rem;
  }
  
  .program-list {
    font-size: 0.75rem;
  }
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-control-prev {
  left: -20px;
}

.carousel-control-next {
  right: -20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: #f8f9fa;
}

@media (max-width: 576px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

/* Study Goal Section Styles */
.study-goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
  padding: 15px;
}

.study-goal-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.study-goal-item:hover {
  background-color: #f8f9fa;
  border-color: #ddd;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.study-goal-item i {
  font-size: 24px;
  color: #4B0076;
  margin-right: 15px;
}

.goal-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.goal-title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;
}

.college-count {
  font-size: 14px;
  color: #666;
}

.arrow-icon {
  font-size: 14px !important;
  color: #666 !important;
  margin-left: 10px;
}

.study-goal-item:hover .arrow-icon {
  color: #ff6b00 !important;
}

.more-courses {
  text-align: center;
  padding: 20px 0;
  background-color: #fff3e0;
}

.more-courses-link {
  color: #ff6b00;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.more-courses-link:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .study-goals-grid {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .study-goal-item {
    padding: 12px;
  }

  .goal-title {
    font-size: 15px;
  }

  .college-count {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .study-goals-grid {
    gap: 10px;
    padding: 5px;
  }

  .study-goal-item i {
    font-size: 20px;
    margin-right: 12px;
  }
}

.modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.modal-header {
  padding: 1rem 1rem 0;
}

.modal-body {
  padding: 1.5rem;
}

.registration-form .form-control,
.registration-form .form-select {
  height: 48px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  padding: 0.75rem 1rem;
  font-size: 14px;
}

.registration-form .form-control:focus,
.registration-form .form-select:focus {
  border-color: #ff6b00;
  box-shadow: none;
}

.registration-form .country-code {
  background-color: #f8f9fa;
}

.registration-form .btn-primary {
  background-color: #ff6b00;
  border-color: #ff6b00;
  height: 48px;
  font-weight: 500;
  border-radius: 8px;
}

.registration-form .btn-primary:hover {
  background-color: #e65c00;
  border-color: #e65c00;
}

.terms-text a {
  color: #ff6b00;
}

.terms-text a:hover {
  color: #e65c00;
}

.explore-programs {
    padding: 60px 0;
    background-color: #fff;
}

.explore-programs h1 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.explore-programs .filter-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin: 0 8px 16px 0;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.explore-programs .filter-btn.active {
    background-color: #ff6b00;
    color: #fff;
    border-color: #ff6b00;
}

.explore-programs .filter-btn:hover {
    background-color: #ff6b00;
    color: #fff;
    border-color: #ff6b00;
}

.program-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    margin-bottom: 24px;
}

.program-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.program-card .card-header {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.program-card .card-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.program-card .card-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.custom-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #f0f2f5;
    border-radius: 20px;
    font-size: 13px;
    color: #444;
    transition: all 0.3s ease;
}

.custom-badge:hover {
    background: #e6e8eb;
}

.college-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.college-item:last-child {
    border-bottom: none;
}

.college-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.college-info {
    flex: 1;
}

.college-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
}

.college-course {
    font-size: 12px;
    color: #ff6b00;
}

.view-more-link {
    display: block;
    text-align: right;
    color: #ff6b00;
    font-weight: 500;
    text-decoration: none;
    margin-top: 16px;
    font-size: 14px;
}

.view-more-link:hover {
    color: #e65100;
}

@media (max-width: 768px) {
    .explore-programs h1 {
        font-size: 28px;
    }
    
    .program-card {
        padding: 16px;
    }
    
    .program-card .card-title {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .explore-programs h1 {
        font-size: 24px;
    }
    
    .filter-btn {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .program-card {
        margin-bottom: 16px;
    }
}

/* Explore Programs Section */
.explore-programs {
    background-color: #fff;
    padding: 60px 0;
}

.explore-programs .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.explore-programs .section-title {
    color: #333;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.explore-programs .text-muted {
    font-size: 16px;
    color: #666;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover, .filter-btn.active {
    background-color: #4B0076;
    color: #fff;
    border-color: #4B0076;
    transform: translateY(-2px);
}

.program-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.program-card .card-header {
    background: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.program-card .card-header h4 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.badge-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.program-badge {
    padding: 4px 12px;
    background: #4B0076;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.card-body {
    padding: 20px;
}

.college-list, .exam-list {
    margin-bottom: 20px;
}

.college-item, .exam-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.college-item:last-child, .exam-item:last-child {
    border-bottom: none;
}

.college-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
    border: 1px solid #e0e0e0;
}

.college-info h5, .exam-info h5 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.rank, .cutoff, .date {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.exam-icon {
    width: 40px;
    height: 40px;
    background: #f0e6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.exam-icon i {
    color: #4B0076;
    font-size: 16px;
}

.view-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4B0076;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-more:hover {
    color: #ff6b00;
}

.view-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.view-more:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .explore-programs {
        padding: 40px 0;
    }

    .explore-programs .section-title {
        font-size: 24px;
    }

    .filter-btn {
        padding: 6px 16px;
        font-size: 13px;
    }

    .program-card {
        margin-bottom: 20px;
    }

    .program-card .card-header {
        padding: 15px;
    }

    .program-card .card-header h4 {
        font-size: 16px;
    }

    .card-body {
        padding: 15px;
    }
}

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

    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        margin: -5px;
        flex-wrap: nowrap;
    }

    .filter-btn {
        white-space: nowrap;
        margin: 5px;
    }
}

/* Top Colleges Table Section */
.top-colleges {
    padding: 60px 0;
    background: #fff;
}

.top-colleges .section-header {
    text-align: center;
}

.top-colleges .section-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.top-colleges .text-muted {
    font-size: 16px;
    color: #666;
}

/* Filter Buttons */
.filter-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filter-buttons-container .filter-btn {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-buttons-container .filter-btn:hover,
.filter-buttons-container .filter-btn.active {
    background: #0e2a47;
    color: #fff;
    border-color: #0e2a47;
}

/* Table Styles */
.colleges-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.colleges-table thead th {
    background: #f8f9fa;
    padding: 16px;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
    white-space: nowrap;
}

.colleges-table tbody td {
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
    vertical-align: middle;
}

.colleges-table tbody tr:last-child td {
    border-bottom: none;
}

.colleges-table tbody tr:hover {
    background: #f8f9fa;
}

/* College Logo and Info */
.college-logo-cell {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.college-name-cell {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

/* Rating Stars */
.college-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #ff6b00;
    font-weight: 500;
}

.college-rating i {
    font-size: 14px;
}

/* Location */
.college-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 14px;
}

.college-location i {
    color: #999;
}

/* View Details Button */
.view-details-btn {
    padding: 6px 12px;
    border: 1px solid #0e2a47;
    border-radius: 6px;
    color: #0e2a47;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.view-details-btn:hover {
    background: #0e2a47;
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .colleges-table thead th,
    .colleges-table tbody td {
        padding: 12px;
    }
    
    .college-logo-cell {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .top-colleges {
        padding: 40px 0;
    }
    
    .top-colleges .section-title {
        font-size: 28px;
    }
    
    .filter-buttons-container {
        gap: 8px;
    }
    
    .filter-buttons-container .filter-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .colleges-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .top-colleges {
        padding: 30px 0;
    }
    
    .top-colleges .section-title {
        font-size: 24px;
    }
    
    .filter-buttons-container {
        gap: 6px;
    }
    
    .filter-buttons-container .filter-btn {
        padding: 4px 10px;
        font-size: 12px;
    }
    
    .college-logo-cell {
        width: 32px;
        height: 32px;
    }
}

/* College Ranking Section Styles */
.college-ranking {
    background-color: #f8f9fa;
}

.college-ranking .section-title {
    color: #333;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 0;
}

.view-all-link {
    color: #ff6b00;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: #e65100;
}

.view-all-link i {
    transition: transform 0.3s ease;
}

.view-all-link:hover i {
    transform: translateX(5px);
}

/* Filter Options */
.filter-options .form-select {
    height: 45px;
    border-color: #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
}

.filter-options .form-select:focus {
    border-color: #ff6b00;
    box-shadow: none;
}

/* Rankings Table */
.ranking-table {
    margin-bottom: 0;
}

.ranking-table thead th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
    padding: 15px;
    border-bottom: 2px solid #e0e0e0;
    font-size: 14px;
}

.ranking-table tbody td {
    padding: 15px;
    vertical-align: middle;
    border-bottom: 1px solid #e0e0e0;
}

.rank-badge {
    background-color: #4B0076;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
}

.college-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #e0e0e0;
}

.score-box {
    position: relative;
    width: 100px;
}

.score {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.score-bar {
    height: 4px;
    background-color: #ff6b00;
    border-radius: 2px;
    position: relative;
}

.score-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f0f0f0;
    border-radius: 2px;
    z-index: -1;
}

.rank-change {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
}

.rank-change.positive {
    color: #28a745;
}

.rank-change.negative {
    color: #dc3545;
}

.btn-outline-primary {
    border-color: #4B0076;
    color: #4B0076;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #4B0076;
    border-color: #4B0076;
    color: #fff;
}

/* Pagination */
.showing-results {
    color: #666;
    font-size: 14px;
}

.showing-results span {
    color: #333;
    font-weight: 500;
}

.pagination {
    margin-bottom: 0;
}

.pagination .page-link {
    color: #4B0076;
    border-color: #e0e0e0;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
}

.pagination .page-item.active .page-link {
    background-color: #4B0076;
    border-color: #4B0076;
    color: #fff;
}

.pagination .page-link:hover {
    background-color: #f8f9fa;
    border-color: #e0e0e0;
    color: #4B0076;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #e0e0e0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .college-ranking .section-title {
        font-size: 24px;
    }

    .filter-options .form-select {
        margin-bottom: 10px;
    }

    .ranking-table thead th,
    .ranking-table tbody td {
        padding: 12px;
    }

    .college-logo {
        width: 40px;
        height: 40px;
    }

    .score-box {
        width: 80px;
    }

    .showing-results {
        display: none;
    }
}

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

    .view-all-link {
        font-size: 13px;
    }

    .rank-badge {
        padding: 4px 10px;
        font-size: 12px;
    }

    .btn-outline-primary {
        padding: 4px 12px;
        font-size: 13px;
    }
}

/* Top Study Places Section */
.top-study-places {
  padding: 2rem 0;
  background-color: #fff;
}

.top-study-places .section-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
}

.study-places-wrapper {
  position: relative;
  margin: 0 -15px;
}

.study-places-scroll {
  display: flex;
  overflow-x: auto;
  padding: 1rem 15px;
  scrollbar-width: none;  /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  scroll-behavior: smooth;
  gap: 1rem;
}

.study-places-scroll::-webkit-scrollbar {
  display: none;  /* Chrome, Safari and Opera */
}

.study-place-item {
  flex: 0 0 auto;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  padding: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.study-place-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.city-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.study-place-item h5 {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .study-place-item {
    width: 130px;
    height: 130px;
  }

  .city-icon {
    width: 50px;
    height: 50px;
  }

  .study-place-item h5 {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .study-place-item {
    width: 120px;
    height: 120px;
  }

  .city-icon {
    width: 45px;
    height: 45px;
  }

  .study-place-item h5 {
    font-size: 13px;
  }
}

/* Login Page Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #fff5f1 0%, #ffe4d4 100%);
}

.login-wrapper {
    display: flex;
    width: 100%;
    max-width: 1200px;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.banner-side {
    width: 50%;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    padding: 60px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    order: 1;
}

.login-box {
    width: 50%;
    padding: 50px;
    background: #ffffff;
    order: 2;
}

.banner-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3') center/cover;
    opacity: 0.1;
    animation: gradualFade 8s infinite alternate;
}

@keyframes gradualFade {
    0% { opacity: 0.05; }
    100% { opacity: 0.15; }
}

.banner-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-align: left;
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.banner-content h3 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.4;
}

.banner-features {
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item i {
    font-size: 2rem;
    margin-right: 1.5rem;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
}

.feature-item p {
    font-size: 1.25rem;
    margin: 0;
    opacity: 0.9;
    font-weight: 500;
}

.login-header {
    text-align: left;
    margin-bottom: 2.5rem;
}

.logo-section {
    margin-bottom: 1.5rem;
}

.logo-section p {
    color: #333;
    font-size: 1.25rem;
    margin: 0;
    font-weight: 500;
}

.login-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e1e1e1;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    border-color: #ff6b00;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
    outline: none;
    background: #ffffff;
}

.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #ff6b00;
}

.forgot-password {
    text-align: right;
    margin: 1rem 0 2rem;
}

.forgot-password a {
    color: #ff6b00;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password a:hover {
    color: #e65c00;
    text-decoration: underline;
}

.sign-in-btn {
    width: 100%;
    padding: 1rem;
    background: #ff6b00;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(255, 107, 0, 0.2);
}

.sign-in-btn:hover {
    background: #e65c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(255, 107, 0, 0.3);
}

.divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(50% - 80px);
    height: 2px;
    background-color: #e1e1e1;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: white;
    padding: 0 1.5rem;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-btn {
    width: 60px;
    height: 60px;
    border: 2px solid #e1e1e1;
    border-radius: 12px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: #ff6b00;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-btn img {
    width: 28px;
    height: 28px;
}

.social-btn i {
    font-size: 28px;
}

.social-btn.apple i {
    color: #000;
}

.social-btn.facebook i {
    color: #1877f2;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
}

.login-footer p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.register-link {
    color: #ff6b00;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.register-link:hover {
    color: #e65c00;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .login-wrapper {
        flex-direction: column;
        max-width: 600px;
    }

    .banner-side,
    .login-box {
        width: 100%;
        order: unset;
    }

    .banner-side {
        padding: 40px;
    }

    .banner-content h1 {
        font-size: 2.5rem;
    }

    .banner-content h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .login-container {
        padding: 0;
    }

    .login-wrapper {
        border-radius: 0;
        box-shadow: none;
    }

    .banner-side {
        padding: 30px 20px;
    }

    .login-box {
        padding: 30px 20px;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content h3 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .feature-item {
        margin-bottom: 1.5rem;
    }

    .feature-item i {
        font-size: 1.75rem;
    }

    .feature-item p {
        font-size: 1.1rem;
    }

    .social-btn {
        width: 50px;
        height: 50px;
    }

    .social-btn img,
    .social-btn i {
        width: 24px;
        height: 24px;
        font-size: 24px;
    }
}

/* Login Footer Styles */
.login-footer-section {
    background-color: #fff;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6b00;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b00;
}

.footer-links a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    color: #666;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
}

.social-icon:hover {
    color: #ff6b00;
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
    color: #666;
    font-size: 0.85rem;
}

@media (max-width: 576px) {
    .login-footer-section {
        padding: 1.5rem 0;
        margin-top: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .social-links {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
}

/* Forgot Password Specific Styles */
.forgot-password-form {
    max-width: 400px;
    margin: 0 auto;
}

.forgot-password-form .form-group {
    margin-bottom: 1.5rem;
}

.forgot-password-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.forgot-password-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.forgot-password-form .form-control:focus {
    border-color: #ff6b00;
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.1);
    outline: none;
}

.forgot-password-form .sign-in-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #ff6b00;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.forgot-password-form .sign-in-btn:hover {
    background-color: #e65c00;
    transform: translateY(-1px);
}

.forgot-password-form .divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.forgot-password-form .divider::before,
.forgot-password-form .divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #ddd;
}

.forgot-password-form .divider::before {
    left: 0;
}

.forgot-password-form .divider::after {
    right: 0;
}

.forgot-password-form .divider span {
    background-color: white;
    padding: 0 1rem;
    color: #666;
    font-size: 0.9rem;
}

.forgot-password-form .social-login {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.forgot-password-form .social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.forgot-password-form .social-btn:hover {
    border-color: #ff6b00;
    transform: translateY(-2px);
}

.forgot-password-form .social-btn img {
    width: 20px;
    height: 20px;
}

.forgot-password-form .social-btn i {
    font-size: 1.2rem;
    color: #666;
}

.forgot-password-form .social-btn:hover i {
    color: #ff6b00;
}

.forgot-password-form .login-footer {
    text-align: center;
    margin-top: 2rem;
}

.forgot-password-form .login-footer p {
    color: #666;
    margin-bottom: 0;
}

.forgot-password-form .register-link {
    color: #ff6b00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password-form .register-link:hover {
    color: #e65c00;
}

@media (max-width: 576px) {
    .forgot-password-form {
        padding: 0 1rem;
    }

    .forgot-password-form .social-btn {
        width: 36px;
        height: 36px;
    }

    .forgot-password-form .social-btn img {
        width: 18px;
        height: 18px;
    }

    .forgot-password-form .social-btn i {
        font-size: 1.1rem;
    }
}

/* 404 Error Page Styles */
.error-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.error-wrapper {
    max-width: 700px;
    width: 100%;
    background: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.error-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b, #ff8c00);
}

.error-content {
    position: relative;
    z-index: 1;
}

.error-illustration {
    position: relative;
    margin-bottom: 2.5rem;
}

.error-icon {
    font-size: 5rem;
    color: #ff8c00;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    color: #ff8c00;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(255, 140, 0, 0.2);
    position: relative;
    display: inline-block;
}

.error-code::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff8c00, transparent);
}

.error-text {
    margin-bottom: 2.5rem;
}

.error-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.error-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0;
}

.error-actions {
    margin-bottom: 3rem;
}

.error-actions .btn {
    padding: 0.8rem 2rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.error-actions .btn-primary {
    background: linear-gradient(45deg, #ff8c00, #ffa500);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.2);
}

.error-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.3);
}

.error-actions .btn-outline-primary {
    color: #ff8c00;
    border-color: #ff8c00;
}

.error-actions .btn-outline-primary:hover {
    background: linear-gradient(45deg, #ff8c00, #ffa500);
    border-color: transparent;
    transform: translateY(-2px);
}

.error-suggestions {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.error-suggestions h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.suggestion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
}

.suggestion-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.suggestion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    color: #ff8c00;
}

.suggestion-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.suggestion-item:hover .suggestion-icon {
    background: #ff8c00;
    color: white;
}

.suggestion-icon i {
    font-size: 1.5rem;
}

.suggestion-item span {
    font-size: 1rem;
    font-weight: 500;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .error-wrapper {
        padding: 3rem 2rem;
    }

    .error-code {
        font-size: 6rem;
    }

    .error-title {
        font-size: 2rem;
    }

    .error-message {
        font-size: 1.1rem;
    }

    .error-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .error-actions .btn {
        width: 100%;
        margin: 0 !important;
    }

    .suggestion-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .error-wrapper {
        padding: 2rem 1.5rem;
    }

    .error-icon {
        font-size: 4rem;
    }

    .error-code {
        font-size: 5rem;
    }

    .error-title {
        font-size: 1.75rem;
    }

    .error-message {
        font-size: 1rem;
    }

    .error-suggestions {
        padding: 1.5rem;
    }

    .suggestion-grid {
        grid-template-columns: 1fr;
    }

    .suggestion-item {
        padding: 1.25rem;
    }
}

/* Terms & Privacy Pages Styles */
.terms-container,
.privacy-container {
    padding: 4rem 0;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.terms-wrapper,
.privacy-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.terms-title,
.privacy-title {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.terms-title::after,
.privacy-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff8c00, #ffa500);
    border-radius: 2px;
}

.terms-section,
.privacy-section {
    margin-bottom: 2.5rem;
}

.terms-section h2,
.privacy-section h2 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.terms-section h2::before,
.privacy-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #ff8c00;
    border-radius: 50%;
}

.terms-section p,
.privacy-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.terms-section ul,
.privacy-section ul {
    list-style-type: none;
    padding-left: 1.5rem;
}

.terms-section ul li,
.privacy-section ul li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    position: relative;
}

.terms-section ul li::before,
.privacy-section ul li::before {
    content: '•';
    color: #ff8c00;
    position: absolute;
    left: -1.5rem;
}

@media (max-width: 768px) {
    .terms-wrapper,
    .privacy-wrapper {
        padding: 2rem;
    }

    .terms-title,
    .privacy-title {
        font-size: 2rem;
    }

    .terms-section h2,
    .privacy-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .terms-container,
    .privacy-container {
        padding: 2rem 0;
    }

    .terms-wrapper,
    .privacy-wrapper {
        padding: 1.5rem;
    }

    .terms-title,
    .privacy-title {
        font-size: 1.75rem;
    }

    .terms-section h2,
    .privacy-section h2 {
        font-size: 1.2rem;
    }
}

/* Top MBA Colleges Page Styles */
.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
}

.filter-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    margin-top: -20px;
}

.filter-section .form-select {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.filter-section .form-select:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
    background-color: #fff;
}

/* College Card Styles */
.college-card .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    border: none;
    background: #fff;
}

.college-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.college-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.college-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff3e0;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.rank-badge {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 0.5rem;
}

.college-details {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.college-details p {
    margin-bottom: 0.5rem;
    color: #555;
}

.college-actions .btn {
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.college-actions .btn-primary {
    background: #ff6b35;
    border-color: #ff6b35;
}

.college-actions .btn-primary:hover {
    background: #ff5722;
    border-color: #ff5722;
    transform: translateY(-2px);
}

.college-actions .btn-outline-primary {
    color: #ff6b35;
    border-color: #ff6b35;
}

.college-actions .btn-outline-primary:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

/* Sidebar Styles */
.sidebar-card {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.sidebar-card .card-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 1rem;
}

.sidebar-card .card-body {
    padding: 1rem;
}

.sidebar-card .list-unstyled li {
    margin-bottom: 0.75rem;
}

.sidebar-card .list-unstyled li:last-child {
    margin-bottom: 0;
}

.sidebar-card .list-unstyled a {
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.sidebar-card .list-unstyled a:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.sidebar-card .list-unstyled i {
    color: #ff6b35;
    margin-right: 0.5rem;
}

/* Pagination Styles */
.pagination {
    margin-top: 2rem;
}

.pagination .page-link {
    color: #ff6b35;
    border: none;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: #ff6b35;
    color: white;
}

.pagination .page-item.active .page-link {
    background: #ff6b35;
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .college-card .row {
        flex-direction: column;
    }

    .college-logo {
        height: 40px;
        margin-bottom: 1rem;
    }

    .college-details .row {
        flex-direction: column;
    }

    .college-details .col-md-4 {
        margin-bottom: 1rem;
    }

    .college-details .col-md-4:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.75rem;
    }

    .filter-section .row {
        flex-direction: column;
    }

    .filter-section .col-md-3 {
        margin-bottom: 1rem;
    }

    .filter-section .col-md-3:last-child {
        margin-bottom: 0;
    }

    .college-actions {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .college-actions .btn {
        width: 100%;
    }
}

