 :root {
     --primary-red: #1A5F7A;
     --primary-blue: #D92332;
     --primary-blue-light: #E8F4F8;
     --primary-red-light: #FFF5F5;
     --dark: #121212;
     --dark-light: #2D2D2D;
     --gray: #6C757D;
     --gray-light: #F8F9FA;
     --white: #FFFFFF;

     --heading-font: 'Playfair Display', serif;
     --body-font: 'Inter', sans-serif;

     --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
     --radius: 8px;
     --radius-lg: 12px;
 }



 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: var(--body-font);
     color: var(--dark);
     background-color: white !important;
     line-height: 1.6;
     overflow-x: hidden !important;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: var(--heading-font);
     font-weight: 700;
     line-height: 1.3;
 }

 a {
     text-decoration: none;
     color: inherit;
     transition: all 0.3s ease;
 }

 img {
     max-width: 100%;
     height: auto;
     display: block;
 }

 .container {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 12px 28px;
     border-radius: 50px;
     font-weight: 600;
     font-size: 16px;
     cursor: pointer;
     transition: all 0.3s ease;
     border: none;
     font-family: var(--body-font);
     gap: 0.5rem;
 }

 .btn-primary {
     background-color: var(--primary-red);
     color: var(--white);
 }

 .btn-primary:hover {
     background-color: #b71c2a;
     transform: translateY(-2px);
     box-shadow: var(--shadow-hover);
 }

 .btn-secondary {
     background-color: var(--primary-blue);
     color: var(--white);
 }

 .btn-secondary:hover {
     background-color: #154b61;
     transform: translateY(-2px);
 }

 .btn-outline {
     background: transparent;
     border: 2px solid var(--white);
     color: var(--white);
 }

 .btn-outline:hover {
     background: rgba(255, 255, 255, 0.1);
     transform: translateY(-2px);
 }

 /* Header & Navigation */
 .site-header {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1000;
     padding: 20px 0;
 }

 .header-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     backdrop-filter: blur(8px);
     border: rgba(0, 0, 0, 0.05) red 1px;
     border-radius: 2rem;
     padding: .8rem 1rem;
     box-shadow: #ffffff44 1px 1px .5rem;
 }

  .header-container div{
    text-wrap: nowrap;
  }

 .site-logo {
     display: flex;
     align-items: center;
     color: var(--white);
     font-family: var(--heading-font);
     font-size: 24px;
     font-weight: 700;
     gap:1%;
 }

 .logo-img {
     height: 50px;
     width: auto;
 }

 .logo-text {
     font-size: 14px;
     opacity: 0.9;
     max-width: 200px;
 }
 
 .main-nav ul {
     display: flex;
     list-style: none;
     gap: 30px;
 }

 .main-nav a {
     color: var(--white);
     font-weight: 500;
     font-size: 16px;
     position: relative;
 }

 .main-nav a:hover {
     color: rgba(255, 255, 255, 0.9);
 }

 .main-nav a::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     background-color: var(--primary-red);
     bottom: -5px;
     left: 0;
     transition: width 0.3s ease;
 }

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

 .mobile-menu-btn {
     display: none;
     background: none;
     border: none;
     color: var(--white);
     font-size: 24px;
     cursor: pointer;
 }

 /* Hero Section - Single Image (100vh) */
 .hero-section {
     position: relative;
     height: 100vh;
     min-height: 600px;
     overflow: hidden;
 }

 .hero-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     height: 100%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     color: var(--white);
     padding: 0 20px;
     max-width: 800px;
     margin: 0 auto;
     text-align: center;
     animation: fadeInUp 1s ease-out;
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .hero-title {
     font-size: 3.5rem;
     margin-bottom: 20px;
     line-height: 1.1;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
 }

 .hero-subtitle {
     font-size: 1.4rem;
     margin-bottom: 20px;
     opacity: 0.9;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
     text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
 }


 /* Footer */
 .site-footer {
     background: rgb(14, 38, 66);
     color: var(--white);
     padding: 60px 0 30px;
     border-top: #ffb100b8 solid;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
     margin-bottom: 40px;
 }

 .footer-section h3 {
     font-size: 1.25rem;
     margin-bottom: 24px;
     color: #ffa723;
 }

 .footer-section p {
     color: rgba(255, 255, 255, 0.7);
     margin-bottom: 16px;
     line-height: 1.7;
 }

 .footer-section ul {
     list-style: none;
 }

 .footer-section ul li {
     margin-bottom: 12px;
 }

 .footer-section ul li a {
     color: rgba(255, 255, 255, 0.7);
 }

 .footer-section ul li a:hover {
     color: var(--primary-red);
     padding-left: 5px;
 }

 .social-links {
     display: flex;
     gap: 15px;
     margin-top: 20px;
 }

 .social-icon {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1) !important;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     transition: all 0.3s ease;
 }

 .social-icon:hover {
     background: var(--primary-red);
     transform: translateY(-3px);
 }

 .btn-small {
     display: inline-block;
     background: var(--primary-red);
     color: var(--white);
     padding: 10px 24px;
     border-radius: var(--radius);
     font-weight: 600;
     margin-top: 10px;
 }

 .btn-small:hover {
     background: #b71c2a;
     transform: translateY(-2px);
 }

 .footer-bottom {
     text-align: center;
     padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     color: rgba(255, 255, 255, 0.6);
     font-size: 14px;
 }

 @media (max-width: 768px) {
     .header-container {
         width: 95%;
     }

     .main-nav.active {
         right: -5% !important;
         display: flex;
     }

     .logo-img {
         scale: .8 ;
     }

     .header-container div {
         font-size: 1.5rem;
     }
    .mobile-menu-btn {
                display: block;
            }
  
             .mobile-menu-btn {
                display: block;
            }
            
            
            .main-nav.active {
                right: 0;
            }
            
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            
            .nav-item {
                width: 100%;
            }
            
            .dropdown-toggle {
                width: 100%;
                justify-content: space-between;
                padding: 15px 0;
            }
            
            .dropdown-menu {
                position: static;
                background: transparent;
                opacity: 1;
                visibility: visible;
                transform: none;
                padding: 0 0 0 20px;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            
            .dropdown-menu.active {
                max-height: 300px;
            }
            
            .dropdown-menu li {
                padding: 0;
            }
            
            .dropdown-menu a {
                padding: 10px 0;
                border: none;
            }
            
            .dropdown-menu a:hover {
                background: transparent;
                padding-left: 5px;
            }
           
 }


 @media (max-width: 425px){
.header-container div{
    font-size: 1.2rem !important;
    text-shadow: 1px 1px black;
}

.logo-img{
    scale: .7;
}

.site-logo{
    gap:5px;
}
        }