 :root {
   --primary: #0d9488;
   --primary-light: #14b8a6;
   --primary-dark: #0f766e;
   --accent: #06b6d4;
   --accent-light: #22d3ee;
   --navy: #0c4a6e;
   --navy-dark: #082f49;
   --glass-bg: rgba(255, 255, 255, 0.12);
   --glass-border: rgba(255, 255, 255, 0.2);
   --glass-card: rgba(255, 255, 255, 0.75);
   --glass-card-hover: rgba(255, 255, 255, 0.9);
   --shadow-soft: 0 8px 32px rgba(13, 148, 136, 0.1);
   --shadow-glow: 0 8px 40px rgba(6, 182, 212, 0.15);
   --radius: 20px;
   --radius-sm: 12px;
 }

 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 body {
   font-family: 'Inter', sans-serif;
   background: #f0fdfa;
   color: #1e293b;
   overflow-x: hidden;
   -webkit-font-smoothing: antialiased;
 }

 /* ===== ANIMATED BACKGROUND BLOBS ===== */
 .bg-blobs {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
   z-index: 0;
   overflow: hidden;
 }

 .blob {
   position: absolute;
   border-radius: 50%;
   filter: blur(80px);
   opacity: 0.3;
   animation: blobFloat 20s infinite ease-in-out;
 }

 .blob-1 {
   width: 600px;
   height: 600px;
   background: linear-gradient(135deg, #14b8a6, #06b6d4);
   top: -200px;
   right: -100px;
   animation-delay: 0s;
 }

 .blob-2 {
   width: 500px;
   height: 500px;
   background: linear-gradient(135deg, #06b6d4, #0ea5e9);
   bottom: -150px;
   left: -100px;
   animation-delay: -7s;
 }

 .blob-3 {
   width: 400px;
   height: 400px;
   background: linear-gradient(135deg, #2dd4bf, #a7f3d0);
   top: 50%;
   left: 50%;
   animation-delay: -14s;
 }

 @keyframes blobFloat {

   0%,
   100% {
     transform: translate(0, 0) scale(1);
   }

   25% {
     transform: translate(80px, -60px) scale(1.1);
   }

   50% {
     transform: translate(-40px, 80px) scale(0.95);
   }

   75% {
     transform: translate(60px, 40px) scale(1.05);
   }
 }



 .hero-badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.2);
   padding: 8px 20px;
   border-radius: 50px;
   font-size: 14px;
   margin-bottom: 24px;
   animation: fadeInUp 0.8s ease;
 }

 .hero-badge .dot {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: #34d399;
   animation: pulse 2s infinite;
 }



 /* ── Floating Particles ── */
 .hero-particles {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 2;
   pointer-events: none;
   overflow: hidden;
 }

 .hero-particles span {
   position: absolute;
   width: 4px;
   height: 4px;
   background: rgba(255, 255, 255, 0.3);
   border-radius: 50%;
   animation: particleFloat linear infinite;
 }

 .hero-particles span:nth-child(1) {
   left: 10%;
   width: 3px;
   height: 3px;
   animation-duration: 15s;
   animation-delay: 0s;
 }

 .hero-particles span:nth-child(2) {
   left: 25%;
   width: 5px;
   height: 5px;
   animation-duration: 20s;
   animation-delay: -3s;
 }

 .hero-particles span:nth-child(3) {
   left: 45%;
   width: 3px;
   height: 3px;
   animation-duration: 18s;
   animation-delay: -6s;
 }

 .hero-particles span:nth-child(4) {
   left: 65%;
   width: 6px;
   height: 6px;
   animation-duration: 22s;
   animation-delay: -9s;
 }

 .hero-particles span:nth-child(5) {
   left: 80%;
   width: 4px;
   height: 4px;
   animation-duration: 16s;
   animation-delay: -12s;
 }

 .hero-particles span:nth-child(6) {
   left: 92%;
   width: 3px;
   height: 3px;
   animation-duration: 19s;
   animation-delay: -4s;
 }

 @keyframes particleFloat {
   0% {
     transform: translateY(100vh) rotate(0deg);
     opacity: 0;
   }

   10% {
     opacity: 0.6;
   }

   90% {
     opacity: 0.6;
   }

   100% {
     transform: translateY(-100px) rotate(720deg);
     opacity: 0;
   }
 }






 /* ===== SCROLLBAR ===== */
 ::-webkit-scrollbar {
   width: 8px;
 }

 ::-webkit-scrollbar-track {
   background: #f0fdfa;
 }

 ::-webkit-scrollbar-thumb {
   background: linear-gradient(var(--primary), var(--accent));
   border-radius: 10px;
 }





 /* ===== TOP BAR ===== */
 .top-bar {
   background: linear-gradient(135deg, var(--navy-dark), var(--navy));
   color: rgba(255, 255, 255, 0.85);
   font-size: 13px;
   padding: 8px 0;
   position: relative;
   z-index: 100;
   backdrop-filter: blur(10px);
 }

 .top-bar a {
   color: rgba(255, 255, 255, 0.85);
   text-decoration: none;
   transition: 0.3s;
 }

 .top-bar a:hover {
   color: var(--accent-light);
 }

 .top-bar i {
   color: var(--accent-light);
   margin-right: 5px;
 }

 .top-divider {
   width: 1px;
   height: 14px;
   background: rgba(255, 255, 255, 0.2);
   display: inline-block;
   margin: 0 12px;
   vertical-align: middle;
 }





 /* ===== NAVBAR ===== */
 .navbar-main {
   background: rgba(255, 255, 255, 0.8);
   backdrop-filter: blur(20px) saturate(180%);
   -webkit-backdrop-filter: blur(20px) saturate(180%);
   border-bottom: 1px solid rgba(255, 255, 255, 0.5);
   padding: 12px 0;
   transition: all 0.4s ease;
   z-index: 1000;
 }

 .navbar-main.scrolled {
   background: rgba(255, 255, 255, 0.95);
   box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
   padding: 8px 0;
 }

 .navbar-brand {
   font-weight: 800;
   font-size: 26px;
   background: linear-gradient(135deg, var(--primary), var(--accent));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   letter-spacing: -0.5px;
 }

 .brand-dot {
   display: inline-block;
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: var(--accent);
   margin-left: 2px;
   animation: pulse 2s infinite;
 }

 @keyframes pulse {

   0%,
   100% {
     opacity: 1;
     transform: scale(1);
   }

   50% {
     opacity: 0.5;
     transform: scale(1.3);
   }
 }

 .nav-link {
   font-weight: 500;
   color: #334155 !important;
   padding: 8px 18px !important;
   border-radius: var(--radius-sm);
   transition: all 0.3s ease;
   position: relative;
   font-size: 15px;
 }

 .nav-link::after {
   content: '';
   position: absolute;
   bottom: 2px;
   left: 50%;
   transform: translateX(-50%) scaleX(0);
   width: 20px;
   height: 3px;
   background: linear-gradient(90deg, var(--primary), var(--accent));
   border-radius: 10px;
   transition: transform 0.3s ease;
 }

 .nav-link:hover::after,
 .nav-link.active::after {
   transform: translateX(-50%) scaleX(1);
 }

 .nav-link:hover {
   color: var(--primary) !important;
   background: rgba(13, 148, 136, 0.06);
 }

 .dropdown-menu {
   background: rgba(255, 255, 255, 0.95);
   backdrop-filter: blur(20px);
   border: 1px solid rgba(255, 255, 255, 0.6);
   border-radius: var(--radius-sm);
   box-shadow: var(--shadow-glow);
   padding: 8px;
   margin-top: 8px;
   animation: dropIn 0.3s ease;
 }

 @keyframes dropIn {
   from {
     opacity: 0;
     transform: translateY(-10px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 .dropdown-item {
   border-radius: 8px;
   padding: 10px 16px;
   font-size: 14px;
   font-weight: 500;
   transition: 0.3s;
 }

 .dropdown-item:hover {
   background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(6, 182, 212, 0.1));
   color: var(--primary-dark);
   padding-left: 22px;
 }

 .btn-emergency {
   background: linear-gradient(135deg, #ef4444, #dc2626);
   color: #fff;
   font-weight: 600;
   padding: 10px 24px;
   border-radius: 50px;
   border: none;
   font-size: 14px;
   letter-spacing: 0.3px;
   box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
   transition: all 0.3s ease;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   gap: 6px;
 }

 .btn-emergency:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 25px rgba(239, 68, 68, 0.4);
   color: #fff;
 }

 .btn-emergency i {
   animation: ringPulse 1.5s infinite;
 }

 @keyframes ringPulse {

   0%,
   100% {
     transform: rotate(0);
   }

   20% {
     transform: rotate(15deg);
   }

   40% {
     transform: rotate(-15deg);
   }

   60% {
     transform: rotate(10deg);
   }

   80% {
     transform: rotate(0);
   }
 }



 /* ── Logo ── */
 .brand-logo {
   height: 45px;
   width: auto;
   margin-right: 10px;
   object-fit: contain;
   transition: all 0.4s ease;
 }

 .navbar-main.scrolled .brand-logo {
   height: 36px;
 }

 .brand-text {
   font-weight: 800;
   font-size: 26px;
   background: linear-gradient(135deg, var(--primary), var(--accent));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   letter-spacing: -0.5px;
 }

 /* Mobile menu smaller logo */
 .mobile-menu-header .brand-logo {
   height: 36px;
 }

 .mobile-menu-header .brand-text {
   font-size: 22px;
 }

 .brand-logo {
   height: 70px;
   width: auto;
   object-fit: contain;
   transition: all 0.4s ease;
 }

 /* Shrink on scroll */
 .navbar-main.scrolled .brand-logo {
   height: 40px;
 }

 /* Tablet */
 @media (max-width: 991.98px) {
   .brand-logo {
     height: 50px;
   }

   .navbar-main.scrolled .brand-logo {
     height: 36px;
   }
 }

 /* Mobile */
 @media (max-width: 575.98px) {
   .brand-logo {
     height: 50px;
   }

   .navbar-main.scrolled .brand-logo {
     height: 30px;
   }
 }

 /* Mobile menu logo */
 .mobile-menu-header .brand-logo {
   height: 38px;
 }








 /* ===== SECTIONS ===== */
 .section {
   padding: 100px 0;
   position: relative;
   z-index: 1;
 }

 .section-label {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(6, 182, 212, 0.1));
   color: var(--primary);
   padding: 6px 16px;
   border-radius: 50px;
   font-size: 13px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 12px;
 }

 .section-title {
   font-size: 2.5rem;
   font-weight: 800;
   color: var(--navy-dark);
   margin-bottom: 16px;
   line-height: 1.2;
 }

 .section-subtitle {
   color: #64748b;
   font-size: 17px;
   max-width: 600px;
 }




 /* ===== QUICK ACCESS ===== */
 .quick-section {
   margin-top: -70px;
   position: relative;
   z-index: 10;
   padding-bottom: 60px;
 }

 .quick-card {
   background: var(--glass-card);
   backdrop-filter: blur(20px);
   border: 1px solid rgba(255, 255, 255, 0.6);
   border-radius: var(--radius);
   padding: 35px 30px;
   text-align: center;
   transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   cursor: pointer;
   position: relative;
   overflow: hidden;
   box-shadow: var(--shadow-soft);
 }

 .quick-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 4px;
   background: linear-gradient(90deg, var(--primary), var(--accent));
   transform: scaleX(0);
   transition: transform 0.4s ease;
 }

 .quick-card:hover::before {
   transform: scaleX(1);
 }

 .quick-card:hover {
   transform: translateY(-8px);
   box-shadow: var(--shadow-glow);
   background: var(--glass-card-hover);
 }

 .quick-icon {
   width: 70px;
   height: 70px;
   border-radius: 20px;
   background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(6, 182, 212, 0.1));
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 20px;
   font-size: 28px;
   color: var(--primary);
   transition: all 0.4s ease;
 }

 .quick-card:hover .quick-icon {
   background: linear-gradient(135deg, var(--primary), var(--accent));
   color: #fff;
   transform: scale(1.1) rotate(5deg);
 }

 .quick-card h5 {
   font-weight: 700;
   color: var(--navy-dark);
   margin-bottom: 8px;
   font-size: 17px;
 }

 .quick-card p {
   color: #64748b;
   font-size: 14px;
   margin: 0;
 }




 /* ===== FOOTER ===== */
 footer {
   background: linear-gradient(160deg, var(--navy-dark), var(--navy));
   color: #fff;
   padding: 80px 0 40px;
   position: relative;
   overflow: hidden;
 }

 footer::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 4px;
   background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
 }

 .footer-brand {
   font-size: 28px;
   font-weight: 800;
   background: linear-gradient(90deg, #fff, var(--accent-light));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   margin-bottom: 16px;
 }

 footer h5 {
   font-weight: 700;
   margin-bottom: 20px;
   font-size: 16px;
   position: relative;
   display: inline-block;
 }

 footer h5::after {
   content: '';
   position: absolute;
   bottom: -6px;
   left: 0;
   width: 30px;
   height: 3px;
   background: linear-gradient(90deg, var(--primary-light), var(--accent));
   border-radius: 10px;
 }

 footer p,
 footer li {
   color: rgba(255, 255, 255, 0.65);
   font-size: 14px;
   line-height: 1.8;
 }

 footer a {
   color: rgba(255, 255, 255, 0.65);
   text-decoration: none;
   transition: all 0.3s ease;
   display: inline-flex;
   align-items: center;
   gap: 6px;
 }

 footer a:hover {
   color: var(--accent-light);
   padding-left: 5px;
 }

 .footer-social a {
   width: 42px;
   height: 42px;
   border-radius: 12px;
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid rgba(255, 255, 255, 0.1);
   display: inline-flex;
   align-items: center;
   justify-content: center;
   margin-right: 10px;
   transition: all 0.3s ease;
   padding: 0;
   font-size: 16px;
 }

 .footer-social a:hover {
   background: linear-gradient(135deg, var(--primary), var(--accent));
   border-color: transparent;
   transform: translateY(-3px);
   padding-left: 0;
 }

 .footer-bottom {
   background: rgba(0, 0, 0, 0.2);
   color: rgba(255, 255, 255, 0.5);
   padding: 16px 0;
   font-size: 13px;
 }












 /* ===== MOBILE DRAWER ===== */
 .side-menu {
   position: fixed;
   top: 0;
   right: -360px;
   width: 340px;
   max-width: 85vw;
   height: 100%;
   background: rgba(255, 255, 255, 0.95);
   backdrop-filter: blur(30px);
   -webkit-backdrop-filter: blur(30px);
   box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
   transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   z-index: 9999;
   overflow-y: auto;
 }

 .side-menu.active {
   right: 0;
 }

 .side-header {
   background: linear-gradient(135deg, var(--navy-dark), var(--navy));
   color: #fff;
   padding: 24px;
   display: flex;
   justify-content: space-between;
   align-items: center;
 }

 .side-header .brand-text {
   font-weight: 800;
   font-size: 20px;
   background: linear-gradient(90deg, #fff, var(--accent-light));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
 }

 .btn-close-menu {
   width: 36px;
   height: 36px;
   border-radius: 10px;
   background: rgba(255, 255, 255, 0.15);
   border: 1px solid rgba(255, 255, 255, 0.2);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   transition: 0.3s;
   font-size: 14px;
 }

 .btn-close-menu:hover {
   background: rgba(255, 255, 255, 0.25);
 }

 .side-menu-body {
   padding: 10px 0;
 }

 .side-menu a.menu-link {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 24px;
   border-bottom: 1px solid #f1f5f9;
   color: #334155;
   text-decoration: none;
   font-weight: 500;
   font-size: 15px;
   transition: all 0.3s ease;
 }

 .side-menu a.menu-link:hover {
   background: linear-gradient(135deg, rgba(13, 148, 136, 0.05), rgba(6, 182, 212, 0.05));
   color: var(--primary);
   padding-left: 28px;
 }

 .side-menu a.menu-link i.link-icon {
   margin-right: 12px;
   width: 20px;
   color: var(--primary);
 }

 .submenu {
   display: none;
   background: #f8fffe;
 }

 .submenu a {
   display: block;
   padding: 12px 24px 12px 56px;
   color: #64748b;
   text-decoration: none;
   font-size: 14px;
   font-weight: 500;
   border-bottom: 1px solid #f1f5f9;
   transition: all 0.3s ease;
 }

 .submenu a:hover {
   color: var(--primary);
   background: rgba(13, 148, 136, 0.05);
   padding-left: 62px;
 }

 .side-menu-footer {
   padding: 20px 24px;
   border-top: 1px solid #e2e8f0;
 }

 .side-emergency-btn {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   width: 100%;
   background: linear-gradient(135deg, #ef4444, #dc2626);
   color: #fff;
   padding: 14px;
   border-radius: 14px;
   font-weight: 600;
   text-decoration: none;
   transition: 0.3s;
   box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
 }

 .side-emergency-btn:hover {
   color: #fff;
   box-shadow: 0 6px 25px rgba(239, 68, 68, 0.3);
 }

 .overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5);
   backdrop-filter: blur(4px);
   display: none;
   z-index: 9998;
   transition: 0.3s;
 }

 .overlay.active {
   display: block;
 }

 .mobile-toggle {
   width: 44px;
   height: 44px;
   border-radius: 12px;
   background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(6, 182, 212, 0.1));
   border: 1px solid rgba(13, 148, 136, 0.2);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
   color: var(--primary);
   transition: 0.3s;
 }

 .mobile-toggle:hover {
   background: linear-gradient(135deg, var(--primary), var(--accent));
   color: #fff;
 }

 @media(min-width:992px) {
   .mobile-toggle {
     display: none;
   }
 }


























 /* ===== RESPONSIVE ===== */
 @media (max-width: 991px) {
   .hero h1 {
     font-size: 2.2rem;
   }

   .hero-stats {
     gap: 20px;
   }

   .hero-stat h3 {
     font-size: 1.5rem;
   }

   .hero-image-area {
     margin-top: 40px;
   }

   .section-title {
     font-size: 2rem;
   }
 }

 @media (max-width: 576px) {
   .hero h1 {
     font-size: 1.8rem;
   }

   .hero {
     min-height: 75vh;
   }

   .hero-stats {
     flex-wrap: wrap;
     gap: 16px;
   }

   .section {
     padding: 70px 0;
   }

   .quick-section {
     margin-top: -40px;
   }

   .top-bar .d-flex {
     flex-direction: column;
     text-align: center;
     gap: 4px;
   }

   .about-glass {
     padding: 24px;
   }

   .cta-glass {
     padding: 30px 20px;
   }

   .cta-glass h2 {
     font-size: 1.6rem;
   }
 }




 /* ===== CTA SECTION ===== */
 .cta-section {
   background: linear-gradient(135deg, var(--primary), var(--accent));
   padding: 80px 0;
   position: relative;
   overflow: hidden;
 }

 .cta-section::before {
   content: '';
   position: absolute;
   top: -50%;
   right: -20%;
   width: 500px;
   height: 500px;
   background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
 }

 .cta-glass {
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(20px);
   border: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: var(--radius);
   padding: 50px;
   text-align: center;
   color: #fff;
 }

 .cta-glass h2 {
   font-weight: 800;
   font-size: 2.2rem;
   margin-bottom: 16px;
 }

 .cta-glass p {
   font-size: 17px;
   opacity: 0.9;
   margin-bottom: 30px;
 }

 .btn-cta {
   background: #fff;
   color: var(--primary-dark);
   padding: 14px 36px;
   border-radius: 50px;
   font-weight: 700;
   font-size: 15px;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   transition: all 0.3s ease;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
 }

 .btn-cta:hover {
   transform: translateY(-3px);
   box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
   color: var(--primary-dark);
 }

 /* ===== SCROLL ANIMATIONS ===== */
 .fade-up {
   opacity: 0;
   transform: translateY(40px);
   transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .fade-up.visible {
   opacity: 1;
   transform: translateY(0);
 }



 .text-left {
   text-align: left;
 }

 .text-center {
   text-align: center;
 }

 .text-right {
   text-align: right;
 }

 .text-justify {
   text-align: justify;
 }