
:root {
  --darkPink: #0B2E33;
  --white: #ffffff;
  --lightPink:#2DCD7C;
   --gray:#93B1B5;
}
    html {
      scroll-behavior: smooth;
        overflow-x: hidden;
    }
/* body{
  overflow: hidden;
} */
    /* Top bar styling */
    .top-bar {
      background-color:var(--darkPink);
      color: var(--white);
      font-size: 0.875rem;
      padding: 0.3rem 1rem;
    }

    .social-icons a {
      color: white;
      margin-right: 15px;
    }

    /* Main navbar */
    .main-nav {
      background-color:var(--white);
      height: 80px;
    }

    .main-nav .nav-link {
      color: var(--darkPink);
      font-weight: 500;
      margin-right: 1rem;
      position: relative;
    }

    .main-nav .nav-link:hover,
    .main-nav .nav-link.active {
      color: var(--darkPink);
    }

    .report-btn {
      background-color: var(--darkPink);
      color: var(--white);
      padding: 0.5rem 1.25rem;
      border: none;
      border-radius: 4px;
      font-weight: 500;
    }

    .search-icon {
      background-color: var(--darkPink);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 1rem;
      color: white;
    }

    .navbar-brand {
      font-weight: bold;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--darkPink) !important;
    }

    .logo{
      height: 70px;
      width: 90px;
    }

    /* Dropdown Menu Styling */
    .dropdown-menu {
      display: block;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      pointer-events: none;
      background-color: var(--gray);
     
      padding: 0;
      border-radius: 0;
      border: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      min-width: 200px;
      z-index: 1000;
    }

    /* Show dropdown */
    .dropdown:hover .dropdown-menu,
    .nav-item.dropdown.show .dropdown-menu {
      max-height: 1000px;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }

    /* Dropdown item styling */
    .dropdown-menu .dropdown-item {
       color: var(--darkPink);
      padding: 10px 20px;
      background-color: var(--white);
      transition: background-color 0.3s ease, padding-left 0.3s ease;
      border-left: 3px solid transparent;
    }

    /* Hover effect */
    .dropdown-menu .dropdown-item:hover {
      background-color: rgba(255, 255, 255, 0.1);
      border-left: 3px solid var(--darkPink);
      padding-left: 23px;
    }









    
/* -----------footer--------------------- */
/* 
 .footer {
      background-color: var(--darkPink);
      color: white;
      padding: 60px 0 20px;
      position: relative;
    }

    .footer .footer-logo {
      font-size: 1.8rem;
      font-weight: bold;
      display: flex;
      align-items: center;
      color: white;
      margin-bottom: 15px;
    }

    .footer .footer-logo i {
      color: var(--lightPink);
      font-size: 2rem;
      margin-right: 10px;
    }

    .footer .footer-text {
      margin-bottom: 20px;
      color: #cfd8dc;
    }

    .footer ul {
      list-style: none;
      padding-left: 0;
    }

    .footer ul li {
      margin-bottom: 10px;
      color: #cfd8dc;
    }

    .footer ul li a {
      color: #cfd8dc;
      text-decoration: none;
    }

    .footer ul li a:hover {
      text-decoration: underline;
    }

    .footer .social-icons i {
      font-size: 20px;
      margin-right: 15px;
      color: white;
      background-color: rgba(255,255,255,0.08);
      padding: 10px;
      border-radius: 50%;
      transition: 0.3s;
    }

    .footer .social-icons i:hover {
      background-color: var(--lightPink);
    }

    .footer .contact-info i {
      color: var(--lightPink);
      margin-right: 8px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 15px;
      text-align: center;
      color: #cfd8dc;
    }

    .scroll-top-btn {
      position: absolute;
      right: 30px;
      bottom: 20px;
      background: var(--lightPink);
      border: none;
      padding: 10px 12px;
      border-radius: 4px;
      color: var(--darkPink);
      font-size: 16px;
      cursor: pointer;
    }

    .scroll-top-btn:hover {
      background: #45a049;
    }

    
    .footer::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 120px;
      background: url('https://i.imgur.com/mtqCtyV.png') no-repeat center bottom;
      opacity: 0.05;
      pointer-events: none;
    } */


    /* footer section  */
    
 .footer {
      background-color: var(--darkPink);
      color: white;
      padding: 60px 0 20px;
      position: relative;
    }

    .footer .footer-logo {
     height: 150px;
     margin-bottom: 20px;
    }

    

    .footer .footer-text {
      margin-bottom: 20px;
      color: #cfd8dc;
    }

    .footer ul {
      list-style: none;
      padding-left: 0;
    }

    .footer ul li {
      margin-bottom: 10px;
      color: #cfd8dc;
    }

    .footer ul li a {
      color: #cfd8dc;
      text-decoration: none;
    }

    .footer ul li a:hover {
      text-decoration: underline;
      color: #2DCD7C;
    }

    .footer .footer-social-icons i {
      font-size: 20px;
      margin-right: 15px;
      color: white;
      background-color: rgba(255,255,255,0.08);
      padding: 15px;
      border-radius: 50%;
      transition: 0.3s;
    }

    .footer .footer-social-icons i:hover {
      background-color: var(--lightPink);
    }

    .footer .contact-info i {
      color: var(--lightPink);
      margin-right: 8px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 15px;
      text-align: center;
      color: #cfd8dc;
    }

    .scroll-top-btn {
      position: absolute;
      right: 30px;
      bottom: 20px;
      background: var(--lightPink);
      border: none;
      padding: 10px 12px;
      border-radius: 4px;
      color: var(--darkPink);
      font-size: 16px;
      cursor: pointer;
    }

    .scroll-top-btn:hover {
      background: #45a049;
    }

    /* Optional background graphic mimic */
    /*.footer::before {*/
    /*  content: "";*/
    /*  position: absolute;*/
    /*  bottom: 0;*/
    /*  left: 0;*/
    /*  right: 0;*/
    /*  height: 120px;*/
    /*  background: url('https://i.imgur.com/mtqCtyV.png') no-repeat center bottom;*/
    /*  opacity: 0.05;*/
    /*  pointer-events: none;*/
    /*}*/
