 html {
     scroll-behavior: smooth;
     scroll-padding-top: 90px;
 }

 :root {
     --primary-blue: #004392;
     --primary-orange: #e2690d;
     --bg-offwhite: #fafafa;
     --text-dark: #2d3748;
     --text-muted: #718096;
 }

 body {
     font-family: 'Plus Jakarta Sans', sans-serif;
     background-color: var(--bg-offwhite);
     color: var(--text-dark);
     overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6,
 .navbar-brand {
     font-family: 'Playfair Display', serif;
     color: var(--primary-blue);
 }

 p {
     line-height: 1.8;
     color: var(--text-muted);
 }

 .btn-orange {
     background-color: var(--primary-orange);
     color: white;
     border: none;
     padding: 12px 28px;
     border-radius: 50px;
     font-weight: 600;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(226, 105, 13, 0.3);
 }

 .btn-orange:hover {
     background-color: #c75a09;
     color: white;
     transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(226, 105, 13, 0.4);
 }

 /* Navbar Styles */
 .navbar {
     background-color: rgba(250, 250, 250, 0.95) !important;
     backdrop-filter: blur(10px);
     transition: all 0.3s ease;
 }

 .navbar-brand {
     font-weight: 700;
     font-size: 1.8rem;
 }

 .navbar-brand span {
     color: var(--primary-orange);
 }

 .nav-link {
     color: var(--primary-blue) !important;
     font-weight: 500;
     margin: 0 8px;
     position: relative;
     transition: color 0.3s ease;
 }

 .nav-link:hover,
 .nav-item.show .nav-link,
 .nav-item:hover .nav-link {
     color: var(--primary-orange) !important;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: 0;
     left: 50%;
     transition: all 0.3s ease;
     transform: translateX(-50%);
 }

 .nav-link:hover::after,
 .nav-item.show .nav-link::after,
 .nav-item:hover .nav-link::after {
     width: 80%;
 }

 .dropdown-menu {
     background-color: var(--primary-blue);
     border: none;
     border-radius: 12px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
     padding: 10px 0;
     margin-top: 15px;
 }

 .dropdown-item {
     color: rgba(255, 255, 255, 0.9);
     font-weight: 500;
     font-size: 0.95rem;
     padding: 10px 24px;
     transition: all 0.3s ease;
 }

 .dropdown-item:hover,
 .dropdown-item:focus {
     background-color: rgba(255, 255, 255, 0.1);
     color: var(--primary-orange);
 }

 @media (min-width: 992px) {
     .nav-item.dropdown:hover>.dropdown-menu {
         display: block !important;
         animation: fadeDropdown 0.3s ease forwards;
     }

     .dropdown-menu::before {
         content: '';
         position: absolute;
         top: -20px;
         left: 0;
         width: 100%;
         height: 20px;
         background: transparent;
     }
 }

 @keyframes fadeDropdown {
     0% {
         opacity: 0;
         transform: translateY(15px);
     }

     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @media (max-width: 991px) {
     .navbar-collapse {
         background-color: #fafafa;
         padding: 15px;
         border-radius: 10px;
         box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
         margin-top: 10px;
     }

     .dropdown-menu {
         background-color: var(--primary-blue);
         margin: 5px 10px 15px 10px;
         border-radius: 10px;
         box-shadow: none;
     }

     .nav-link::after {
         display: none;
     }

     .nav-link {
         padding: 12px 10px;
     }
 }

 /* Footer Styles */
 footer {
     background-color: #636363;
     color: white;
     padding: 80px 0 40px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 footer h5 {
     color: white;
     margin-bottom: 20px;
     font-size: 1.2rem;
 }

 footer ul li {
     margin-bottom: 12px;
 }

 footer ul li a {
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     transition: color 0.3s ease;
 }

 footer ul li a:hover {
     color: var(--primary-orange);
 }

 .footer-logo {
     font-family: 'Playfair Display', serif;
     font-size: 1.8rem;
     font-weight: 700;
     margin-bottom: 20px;
     display: inline-block;
 }

 .footer-logo span {
     color: var(--primary-orange);
 }

 .visitor-counter-box {
     background: rgba(0, 0, 0, 0.2);
     padding: 8px 18px;
     border-radius: 30px;
     border: 1px solid rgba(255, 255, 255, 0.05);
     box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
 }

 .counter-number {
     color: white;
     font-weight: 700;
     font-family: 'Plus Jakarta Sans', sans-serif;
     letter-spacing: 1px;
     min-width: 40px;
     text-align: center;
 }