 /* SWAT Global Styles */
 @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

 :root {
     --bg-color: #FFFFFF;
     --text-color: #000000;
     --text-muted: #525252;
     /* Slightly darker for better readability */
     --primary-color: #000000;
     /* Strict black for primary actions (Gen Z minimal) */
     --accent-color: #2563EB;
     /* Electric Blue for accents */
     --surface-color: rgba(255, 255, 255, 0.6);
     /* Glassy surface */
     --border-color: rgba(0, 0, 0, 0.08);
     --glass-bg: rgba(255, 255, 255, 0.7);
     --glass-border: rgba(255, 255, 255, 0.5);
     --font-family: 'Roboto', sans-serif;
     --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
     /* Smooth 'Apple-like' transition */
     --radius: 24px;
     /* Large, friendly rounded corners */
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     background-color: var(--bg-color);
     /* Subtle, attractive 'Gen Z' gradient mesh background */
     background-image:
         radial-gradient(at 0% 0%, hsla(210, 100%, 96%, 1) 0px, transparent 50%),
         radial-gradient(at 100% 0%, hsla(190, 100%, 96%, 1) 0px, transparent 50%),
         radial-gradient(at 100% 100%, hsla(210, 100%, 96%, 1) 0px, transparent 50%),
         radial-gradient(at 0% 100%, hsla(190, 100%, 96%, 1) 0px, transparent 50%);
     background-attachment: fixed;
     color: var(--text-color);
     font-family: var(--font-family);
     line-height: 1.6;
     overflow-x: hidden;
 }

 main {
     padding-top: 90px;
     /* Gap to prevent header overlap, covers fixed header height */
 }

 a {
     text-decoration: none;
     color: inherit;
     transition: var(--transition);
 }

 ul {
     list-style: none;
 }

 img {
     max-width: 100%;
     display: block;
 }

 /* Animations */
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes pulseCheck {
     0% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.05);
     }

     100% {
         transform: scale(1);
     }
 }

 .animate-fade-in {
     animation: fadeIn 0.8s ease forwards;
 }

 /* Specific Section Styles */
 .hero {
     position: relative;
     /* Height removed to allow content to dictate height */
     min-height: calc(80vh - 90px);
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     background: transparent;
     overflow: hidden;
     padding-top: 4rem;
     padding-bottom: 4rem;
     margin-top: 100px;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 900px;
     padding: 2rem;
     margin: 0 auto;
     /* Center alignment */
     display: flex;
     flex-direction: column;
     /* Stack content vertically */
     align-items: center;
     /* Center items horizontally */
     justify-content: center;
     /* Center items vertically */
     text-align: center;
     /* Ensure text is centered */
     margin-top: 50px;
 }

 .overlay-hover {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     opacity: 0;
     transition: var(--transition);
 }

 .card:hover .overlay-hover {
     opacity: 1;
 }

 .hero h1 {
     font-size: 3.5rem;
     /* Reduced from 4.5rem for zoomed out feel */
     font-weight: 700;
     margin-bottom: 1.5rem;
     color: var(--text-color);
     line-height: 1.2;
     letter-spacing: -0.01em;
 }

 .hero p {
     font-size: 1.25rem;
     color: var(--text-muted);
     margin-bottom: 2.5rem;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
 }

 .btn {
     display: inline-block;
     padding: 0.875rem 2rem;
     border-radius: 50px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     transition: var(--transition);
     cursor: pointer;
     border: none;
 }

 .btn-primary {
     background: var(--primary-color);
     color: white;
     box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
     /* Strong, modern shadow */
     border: 1px solid transparent;
 }

 .btn-primary:hover {
     transform: scale(1.02) translateY(-2px);
     box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.4);
 }

 .btn-secondary {
     background: transparent;
     border: 2px solid var(--primary-color);
     color: var(--primary-color);
     margin-left: 1rem;
 }

 .btn-secondary:hover {
     background: rgba(37, 99, 235, 0.1);
     color: var(--primary-color);
     border-color: var(--primary-color);
 }

 /* Header & Navigation */
 header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     padding: 1rem 2rem;
     z-index: 1000;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: var(--transition);
     background: rgba(255, 255, 255, 0.9);
     backdrop-filter: blur(10px);
     border-bottom: 1px solid var(--border-color);
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }

 .logo {
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--text-color);
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .logo span {
     color: var(--primary-color);
 }

 nav ul {
     display: flex;
     gap: 2rem;
 }

 nav a {
     font-weight: 500;
     font-size: 0.95rem;
     color: var(--text-muted);
 }

 nav a:hover,
 nav a.active {
     color: var(--primary-color);
 }

 /* Sections General */
 section {
     padding: 6rem 2rem;
     max-width: 1400px;
     /* Increased max-width for better spacing */
     margin: 0 auto;
 }

 h2 {
     font-size: 2rem;
     /* Reduced from 2.5rem */
     margin-bottom: 1rem;
     color: var(--text-color);
     text-align: center;
     letter-spacing: -0.01em;
 }

 .section-subtitle {
     text-align: center;
     color: var(--text-muted);
     margin-bottom: 3rem;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
 }

 /* Grid Layouts */
 .grid {
     display: grid;
     gap: 3rem;
     /* Increased gap for cleaner look */
     justify-content: center;
     /* Center grid items */
 }

 .grid-2 {
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 }

 .grid-3 {
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 }

 .grid-4 {
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 }

 /* Cards */
 /* Cards */
 .card {
     background: var(--surface-color);
     backdrop-filter: blur(20px);
     /* Glassmorphism */
     border: 1px solid var(--border-color);
     border-radius: var(--radius);
     padding: 2rem;
     transition: var(--transition);
     position: relative;
     overflow: hidden;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
     display: flex;
     flex-direction: column;
 }

 .card:hover {
     transform: translateY(-5px) scale(1.01);
     border-color: var(--text-color);
     /* Highlight with black border on hover */
     box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
 }

 .card img {
     transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .card:hover img {
     transform: scale(1.05);
 }

 .card h3 {
     font-size: 1.25rem;
     margin-bottom: 0.5rem;
     color: var(--text-color);
     font-weight: 700;
 }

 .card p {
     color: var(--text-muted);
     font-size: 0.95rem;
     line-height: 1.5;
 }

 .card-icon {
     font-size: 2rem;
     margin-bottom: 1.5rem;
     color: var(--primary-color);
 }

 /* Footer */
 footer {
     background: #F1F5F9;
     padding: 4rem 2rem 2rem;
     border-top: 1px solid var(--border-color);
     margin-top: 4rem;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 3rem;
     max-width: 1200px;
     margin: 0 auto;
     margin-bottom: 3rem;
 }

 .footer-logo {
     font-size: 1.25rem;
     font-weight: 700;
     color: var(--text-color);
     margin-bottom: 1rem;
 }

 .footer-links h4 {
     color: var(--text-color);
     margin-bottom: 1.2rem;
 }

 .footer-links ul li {
     margin-bottom: 0.8rem;
 }

 .footer-links a {
     color: var(--text-muted);
     font-size: 0.9rem;
 }

 .footer-links a:hover {
     color: var(--primary-color);
 }

 .footer-bottom {
     text-align: center;
     padding-top: 2rem;
     border-top: 1px solid var(--border-color);
     color: var(--text-muted);
     font-size: 0.85rem;
 }

 /* Utility */
 .text-center {
     text-align: center;
 }

 .text-muted {
     color: var(--text-muted);
 }

 .mb-2 {
     margin-bottom: 0.5rem;
 }

 .text-gradient {
     background: linear-gradient(to right, var(--primary-color), var(--accent-color));
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
     color: transparent;
 }

 .map-container {
     border-radius: 12px;
     overflow: hidden;
     height: 400px;
     width: 100%;
 }

 /* Mobile Menu Toggle */
 .mobile-menu-toggle {
     display: none;
     flex-direction: column;
     justify-content: space-between;
     width: 30px;
     height: 21px;
     cursor: pointer;
     z-index: 1001;
 }

 .mobile-menu-toggle span {
     display: block;
     height: 3px;
     width: 100%;
     background-color: var(--text-color);
     border-radius: 3px;
     transition: var(--transition);
 }

 @media (max-width: 768px) {
     .hero h1 {
         font-size: 2.5rem;
     }

     header {
         padding: 1rem;
     }

     .mobile-menu-toggle {
         display: flex;
     }

     nav ul {
         display: none;
         position: absolute;
         top: 100%;
         left: 0;
         width: 100%;
         background: rgba(255, 255, 255, 0.98);
         padding: 2rem;
         flex-direction: column;
         align-items: center;
         border-bottom: 1px solid var(--border-color);
     }

     .grid-2,
     .grid-3,
     .grid-4 {
         grid-template-columns: 1fr;
     }
 }