/* Brand Colors */
:root {
    --primary-color: #0072bc; /* Logo Blue */
    --primary-light: #2196f3; /* Lighter Blue */
    --primary-dark: #005490; /* Darker Blue */
    --accent-color: #ff6b00; /* Logo Orange */
    --accent-light: #ff8533; /* Lighter Orange */
    --accent-dark: #cc5500; /* Darker Orange */
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-light: #f5f9ff;
    --background-dark: #004677;
  }
  
  body {
    font-family: "Arial", sans-serif;
    
  }

  .nave-mane-contaner{
    /* padding-bottom: 0px; */
    /* border: 1px solid red; */
    /* height: 19.6vh; */
    /* margin-top: -0px;
     */
  }

   /* @media (max-width: 768px) {
      .nave-mane-contaner {

        height: 25vh;
    
      }
    } */


  /* @media (max-width: 768px) {
      .nave-mane-contaner {
        height: 22vh;
        
      }
    } */

     .drop-coler-bg{
    background-color: #ff7f27;
    color: rgb(245, 241, 241);
    
  }

  .drop-coler-bg:hover {
    background-color: rgba(255, 255, 255, 0.363);
    border-radius: 4px;
    color: white;
}
  
  .drop-coler{
    background-color: rgba(0, 0, 0, 0.466);
    /* color: white; */
  }

    .drop-coler:hover {
    background-color: rgba(0, 0, 0, 0.473);
    border-radius: 4px;
    color: white;
}

.drop-coler-item{
   /* for now thare no need */
   color: white;

}

.drop-coler-item:hover{
  background-color: #ff7d27;
    border-radius: 4px;
}

.top-bar {
    background-color: #0a3b6c;
    color: white;
    padding: 5px;
    font-size: 14px;
    position: static;
    /* height: 6vh; */
}

 /* @media (max-width: 768px) {
      .top-bar {
    height: 9vh;    
      }
    } */

.top-bar a {
    color: white;
    text-decoration: none;
}

/* .social-icons a {
    margin-left: 10px;
    color: white;
}

.social-icons i {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
} */
/* 
.social-icons i:hover {
    transform: translateY(-2px);
}

Main Header Styles
.main-header {
    position: relative;
    overflow: hidden;
} */

/* Logo Section */
.logo-section {
    background-color: #0257a7;
    /* height: 100px; */
    position: relative;
    /* top: -14px; */
    /* border: 1px solid black; */
}

 @media (max-width: 768px) {
      .logo-section {
        height: 100px;
        top: 0;
        
      }
    }

.logo-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    width: 80px;
    height: 100%;
    background-color: #0257a7;
    transform: skewX(20deg);
    z-index: 1;
    border: white;
    /* border-right: 2px solid white; */
    /* border: 1px solid red; */
}

.logo-container {
    /* position: relative; */
    /* border: 1px solid red; */
    height: 100%;
    /* display: flex; */
    /* align-items: center; */
    padding-left: 25px;
    /* z-index: 2; */
    
}

 @media (max-width: 768px) {
      .logo-container {
        height: 90px;
        /* border: 1px solid yellow; */
        text-align: center;
        height: 55;
        
      }
    }

.logo {
    position: absolute;
    top: -15px;
    height: 85px;
    /* left: 30px; */
    /* margin-top: 3px; */
    filter: drop-shadow(1px 1px 3px white);
    box-shadow: white;
}
 @media (max-width: 768px) {
      .logo {
        position: absolute;
        margin-top: 20px;
        
        margin-left: -22px;
        /* border: 1px solid red; */
        z-index: 55;
      }
    }

/* Navigation Section */
.nav-section {
    background-color: #ff7f27;
    height: 100px;
    /* top: -10px; */
    
    border-top: 12px solid #0a3b6c;
}

    @media (max-width: 768px) {
      .nav-section {
        border-top: 10px solid #ff7f27;
        z-index: 50;
      }
    }

.main-nav {
    height: 100%;
}

.navbar-nav {
    height: 100%;
    align-items: center;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .logo-section, .nav-section {
        height: auto;
    }
    
    .logo-section::after {
        display: none;
    }
    
    .logo-container {
        justify-content: center;
        padding: 10px;
    }
    
    .navbar-collapse {
        background-color: #ff7f27;
        padding: 10px;
    }
}

/* @media (max-width: 768px) {
    .contact-info, .social-icons {
        text-align: center;
        margin-bottom: 5px;
    }
    
    .social-icons {
        margin-top: 5px;
    }
    
    .top-bar .col-md-4 {
        text-align: center !important;
    }
} */
.hero-section {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    filter: brightness(95%); /* Darkens the background image */
    border: 3px solid rgb(88, 179, 209);
  }
  
  /* 🔥 Dark Overlay for Better Readability */
  .hero-section .overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark semi-transparent overlay */
    z-index: 1; /* Positioned below the text */
  }
  
  /* 🎯 Hero Content */
  .hero-section .container {
    position: relative;
    z-index: 2; /* Ensure the text stays above the overlay */
    max-width: 800px;
    padding: 20px;
  }
  
  /* 🏆 Title Styling */
  .hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.752);
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-in-out;
  }
  
  /* 📜 Subtitle */
  .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 10px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease-in-out;
  }
  
  /* 🗓 Event Details */
  .hero-details {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 30px;
    animation: fadeInUp 1.4s ease-in-out;
  }
  
  /* ✨ Button Styling */
  .hero-btn {
    background: orange;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 30px;
    border: 2px solid orange;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    animation: fadeInUp 1.6s ease-in-out;
  }
  
  .hero-btn:hover {
    background: white;
    color: orange;
    transform: scale(1.1);
  }
  
  /* 📱 Responsive Design */
  @media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
  
    .hero-subtitle {
        font-size: 1.2rem;
    }
  
    .hero-details {
        font-size: 1rem;
    }
  
    .hero-btn {
        font-size: 1rem;
        padding: 10px 25px;
    }
  }
  
  /* 🎬 Fade-in Animation */
  @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  /* Section Title */
  .mines-the {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
  }
  
  /* Underline Effect */
  .mines-the::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 70px;
    height: 4px;
    background: var(--accent-color);
    transform: translateX(-50%);
    border-radius: 2px;
    transition: width 0.3s ease-in-out;
  }
  
  .mines-the:hover::after {
    width: 100px;
  }
  
  /* Cards */
  .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 114, 188, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 114, 188, 0.2);
  }
  
  .card-title {
    color: var(--primary-color);
    font-weight: 600;
  }
  
  /* Project Categories */
  .project-category {
    transition: all 0.3s ease;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    padding: 10px 20px;
  }
  
  .project-category.active {
    border-bottom: 3px solid var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .project-category:hover {
    color: var(--accent-color);
  }
  
  /* Stats Section */
  .project-stats {
    background-color: rgba(0, 114, 188, 0.05);
    border-radius: 10px;
    padding: 40px 0;
    margin: 60px 0;
  }
  
  .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  .stat-label {
    font-size: 1.2rem;
    color: var(--primary-dark);
  }
  
  /* Partners Section */
  .partner-logos-container {
    display: flex;
    overflow-x: auto;
    padding: 20px 10px;
    gap: 25px;
    /* background-color: white; */
    /* border-radius: 10px; */
  }
  
  .partner-logo {
    /* flex: 0 0 auto; */
    /* height: 100px; */
    width: 15%;
    aspect-ratio: 4/3;
    object-fit: contain;
    transition: transform 0.3s;
    mix-blend-mode: darken;
    
  }
  
  .partner-logo:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
  }
  
  /* Contact Box */
  .contect-us-box {
    background-color: var(--primary-light);
    color: var(--text-light);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 50px;
    box-shadow: 0 5px 15px rgba(0, 114, 188, 0.1);
  }
  
  /* Footer */
  footer {
    background: linear-gradient(135deg, var(--primary-color), var(--background-dark)) !important;
    color: var(--text-light) !important;
    padding: 30px 0 !important;
  }
  
  footer a {
    color: var(--text-light) !important;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
  }
  
  footer a:hover {
    color: var(--accent-color) !important;
    transform: scale(1.2);
  }
  
  /* Progress Bars */
  .progress-bar {
    background-color: var(--primary-color) !important;
  }
  
  /* Badges */
  .badge {
    background-color: var(--primary-light) !important;
    color: var(--text-light) !important;
  }
  
  /* Form Controls */
  .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 114, 188, 0.25);
  }
  
  /* Responsive Design */
  /* @media (max-width: 991px) {
    .navbar {
      background: var(--primary-color);
    }
  
    .navbar-nav .nav-link:hover {
      background: var(--accent-color);
      color: var(--text-light);
    }
  
    .hero-title {
      font-size: 2.5rem;
    }
  
    .mines-the {
      font-size: 2.2rem;
    }
  } */
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* .carousel-inner{
    height: 50vh;
    filter: brightness(95%); Darkens the background image
     border: 1px solid red;
  } */

