/*
Theme Name: Inner Wheel District 322
Theme URI: https://siliconcrib.dev
Author: SiliconCrib
Author URI: https://siliconcrib.dev
Description: Custom WordPress theme for Inner Wheel District 322, converted from static HTML.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iwd322
*/

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

 :root {
     --primary-color2: #2d2d2d;
     --accent-color2: #5FB8A7;
     --bg-color2: #f7f7f7;
     --text-color2: #2d2d2d;
     --shadowi: 0 20px 50px rgba(0, 0, 0, 0.3);

     --bg: #f7f8fb;
     --surface: #ffffff;
     --text: #1d2233;
     --muted: #5d6375;
     --primary: #4f46e5;
     --accent: #f59e0b;
     --border: #e6e9f2;
     --shadow: 0 20px 45px rgba(20, 28, 45, 0.12);
     --radius: 20px;
     --green: #abceff;
     --dark-green: #4fe3e3;
 }

 .siliconcrib-link {
     color: inherit;
     transition: 0.3s;
 }

 .siliconcrib-link:hover {
     background: linear-gradient(to right, #ff00cc, #3333ff);
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
 }


 body {
     font-family: 'Montserrat', sans-serif;
     background: var(--bg-color2);
     color: var(--text-color2);
     overflow-x: hidden;
     -webkit-text-size-adjust: 100%;
     text-size-adjust: 100%;
 }

 .Icontainer-sub {
     display: flex;
     justify-content: center;
     flex-direction: column;
 }

 .Icontainer {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 1.5rem;
 }

 /* Inner Wheel Navigation */
 .iw-topbar {
     position: sticky;
     top: 0;
     z-index: 50;
     backdrop-filter: blur(14px);
     background: rgba(232, 232, 232, 0.88);
     border-bottom: 1px solid rgba(0, 0, 0, 0.08);
 }

 .iw-nav-shell {
     max-width: 1200px;
     margin: 0 auto;
     padding: 12px 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 24px;
 }

 .iw-brand {
     display: flex;
     align-items: center;
     gap: 12px;
     font-weight: 700;
     letter-spacing: 0.02em;
 }

 .iw-brand-logo {
     width: 42px;
     height: 42px;
     border-radius: 12px;
     object-fit: cover;
     box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
     background: #ffffff;
     padding: 4px;
 }

 .iw-nav-links {
     display: flex;
     align-items: center;
     gap: 18px;
     font-size: 0.95rem;
 }

 .iw-nav-links a,
 .iw-nav-toggle {
     color: var(--text-color2);
     text-decoration: none;
     font-weight: 600;
     padding: 8px 10px;
     border-radius: 999px;
     transition: background 0.2s ease, color 0.2s ease;
 }

 .iw-nav-links a:hover,
 .iw-nav-toggle:hover {
     background: rgba(95, 184, 167, 0.18);
     color: #1b5f54;
 }

 .iw-nav-item {
     position: relative;
 }

 .iw-dropdown,
 .iw-dropdown-sub {
     position: absolute;
     top: 115%;
     left: 0;
     background: #ffffff;
     border-radius: 18px;
     padding: 14px;
     min-width: 240px;
     box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
     border: 1px solid rgba(0, 0, 0, 0.08);
     opacity: 0;
     pointer-events: none;
     transform: translateY(10px);
     transition: opacity 0.2s ease, transform 0.2s ease;
 }

 .iw-dropdown a,
 .iw-dropdown-sub a {
     display: block;
     padding: 8px 10px;
     border-radius: 10px;
     color: var(--text-color2);
     font-weight: 500;
 }

 .iw-dropdown a:hover,
 .iw-dropdown-sub a:hover {
     background: rgba(95, 184, 167, 0.14);
 }

 .iw-nav-item:hover>.iw-dropdown,
 .iw-dropdown-item:hover>.iw-dropdown-sub {
     opacity: 1;
     pointer-events: auto;
     transform: translateY(0);
 }

 .iw-dropdown-item {
     position: relative;
 }

 .iw-dropdown-sub {
     top: 0;
     left: 100%;
     margin-left: 10px;
 }

 .iw-nav-cta {
     background: linear-gradient(135deg, #5FB8A7, #3b8f7f);
     color: #ffffff;
     padding: 10px 18px;
     border-radius: 999px;
     font-weight: 600;
     text-decoration: none;
     box-shadow: 0 16px 30px rgba(95, 184, 167, 0.3);
 }

 .iw-nav-cta:hover {
     filter: brightness(1.05);
 }


 /* Hero Section */
 .hero {
     text-align: center;
     padding: 6rem 2rem;
     min-height: 40vh;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: flex-start;
     /* margin-top: -60rem; */
 }

 .hero-title {
     text-transform: uppercase;
     font-size: 3rem;
     font-weight: 600;
     line-height: 1rem;
     /* margin-bottom: 3rem; */
     color: var(--primary-color2);
     animation: fadeInDown 0.8s ease-out forwards;
     opacity: 0;
 }

 /* Text Animation */
 @keyframes fadeInDown {
     0% {
         opacity: 0;
         transform: translateY(-30px);
     }

     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .hero-title {
     font-size: 3rem;
     font-weight: 700;
     line-height: 1;
     /* margin-bottom: 3rem; */
     color: var(--primary-color2);
     animation: fadeInDown 0.8s ease-out forwards;
     opacity: 0;
 }

 .hero-p {
     font-size: 1.1rem;
     line-height: 1.6;
     color: #555;
     max-width: 700px;
     animation: fadeInDown 0.8s ease-out forwards;
     animation-delay: 0.2s;
     opacity: 0;
 }

 /* Gallery Container */
 .gallery-container {
     width: 100%;
     display: flex;
     justify-content: center;
     margin: 2rem 0;
 }

 .card-gallery {
     position: relative;
     width: 100%;
     max-width: 1100px;
     height: 400px;
     perspective: 1000px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* Card Styles */
 .card {
     position: absolute;
     width: 240px;
     height: 320px;
     border-radius: 20px;
     box-shadow: var(--shadowi);
     top: 50%;
     opacity: 0;
     animation: fadeInUp 0.8s ease-out forwards;
     border: none !important;
     /* Ensure no border as requested */
 }

 .card-content {
     width: 100%;
     height: 100%;
     border-radius: 20px;
     background-size: cover;
     background-position: center;
     border: none !important;
     /* Ensure no border as requested */
 }

 /* Keyframes with rotation preserved */
 @keyframes fadeInCard1 {
     0% {
         opacity: 0;
         transform: translateY(-50%) translateY(30px) rotate(-8deg);
     }

     100% {
         opacity: 1;
         transform: translateY(-50%) rotate(-8deg);
     }
 }

 @keyframes fadeInCard2 {
     0% {
         opacity: 0;
         transform: translateY(-50%) translateY(30px) rotate(-5deg);
     }

     100% {
         opacity: 1;
         transform: translateY(-50%) rotate(-5deg);
     }
 }

 @keyframes fadeInCard3 {
     0% {
         opacity: 0;
         transform: translateY(-50%) translateY(30px) rotate(-2deg);
     }

     100% {
         opacity: 1;
         transform: translateY(-50%) rotate(-7deg);
     }
 }

 @keyframes fadeInCard4 {
     0% {
         opacity: 0;
         transform: translateY(-50%) translateY(30px) rotate(0deg);
     }

     100% {
         opacity: 1;
         transform: translateY(-50%) rotate(3deg);
     }
 }

 @keyframes fadeInCard5 {
     0% {
         opacity: 0;
         transform: translateY(-50%) translateY(30px) rotate(0deg);
     }

     100% {
         opacity: 1;
         transform: translateY(-50%) rotate(6deg);
     }
 }

 @keyframes fadeInCard6 {
     0% {
         opacity: 0;
         transform: translateY(-50%) translateY(30px) rotate(2deg);
     }

     100% {
         opacity: 1;
         transform: translateY(-50%) rotate(5deg);
     }
 }

 @keyframes fadeInCard7 {
     0% {
         opacity: 0;
         transform: translateY(-50%) translateY(30px) rotate(5deg);
     }

     100% {
         opacity: 1;
         transform: translateY(-50%) rotate(9deg);
     }
 }

 /* Loading Animation */
 @keyframes fadeInUp {
     0% {
         opacity: 0;
         transform: translateY(-50%) translateY(30px) rotate(0deg);
     }

     100% {
         opacity: 1;
         transform: translateY(-50%);
     }
 }

 /* Apply rotation to each card during animation */
 .card-1 {
     left: 5%;
     animation: fadeInCard1 0.8s ease-out forwards;
     animation-delay: 0.1s;
 }

 .card-2 {
     left: 15%;
     animation: fadeInCard2 0.8s ease-out forwards;
     animation-delay: 0.2s;
 }

 .card-3 {
     left: 25%;
     animation: fadeInCard3 0.8s ease-out forwards;
     animation-delay: 0.3s;
 }

 .card-4 {
     left: 35%;
     animation: fadeInCard4 0.8s ease-out forwards;
     animation-delay: 0.4s;
 }

 .card-5 {
     left: 45%;
     animation: fadeInCard5 0.8s ease-out forwards;
     animation-delay: 0.5s;
 }

 .card-6 {
     left: 55%;
     animation: fadeInCard6 0.8s ease-out forwards;
     animation-delay: 0.6s;
 }

 .card-7 {
     left: 65%;
     animation: fadeInCard7 0.8s ease-out forwards;
     animation-delay: 0.7s;
 }


 .hero-p {
     line-height: 1rem;
     width: 100%;
     color: rgb(115, 115, 115);
 }

 /* Section 2 - Inner Wheel District Styles */
 .section2 {
     background: #f5f5f5;
     padding: 6rem 2rem;
     min-height: 50vh;
 }

 .container2 {
     max-width: 1200px;
     margin: 0 auto;
 }

 /* Header Section */
 .header2 {
     text-align: center;
     margin-bottom: 3rem;
     opacity: 0;
     transform: translateY(50px);
     transition: all 0.8s ease-out;
 }

 .header2.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .subtitle2 {
     color: #0073ff;
     font-size: 0.9rem;
     font-weight: 600;
     margin-bottom: 1rem;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.5rem;
 }

 .subtitle2::before {
     content: '';
     width: 30px;
     height: 2px;
     background: #0073ff;
 }

 .main-title2 {
     text-transform: uppercase;
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 1rem;
     color: #1a1a1a;
 }

 .main-description2 {
     font-size: 1rem;
     color: #666;
     max-width: 800px;
     margin: 0 auto 1rem;
     line-height: 1.2;
 }

 /* Bento Grid Layout */
 .bento-grid {
     display: grid;
     grid-template-columns: repeat(12, 1fr);
     gap: 1.5rem;
     margin-top: 3rem;
     align-items: stretch;
     grid-auto-rows: 1fr;
 }

 .bento-card {
     background: white;
     border-radius: 20px;
     padding: 2rem;
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
     transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.8s ease-out;
     opacity: 0;
     transform: translateY(50px);
     display: flex;
     flex-direction: column;
     justify-content: flex-start;
     gap: 0.75rem;
     min-height: 240px;
 }

 .bento-card.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .bento-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 /* Grid Positioning */
 .card-logo {
     grid-column: span 3;
     grid-row: span 1;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: flex-start;
     transition-delay: 0.1s;
 }

 .card-logo .logo-section2 {
     justify-content: flex-start;
 }

 .card-tech {
     grid-column: span 3;
     transition-delay: 0.2s;
 }

 .card-success {
     grid-column: span 3;
     transition-delay: 0.3s;
 }

 .card-clubs {
     grid-column: span 3;
     transition-delay: 0.4s;
 }

 .card-projects {
     grid-column: span 3;
     transition-delay: 0.5s;
 }

 .card-members {
     grid-column: span 3;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     transition-delay: 0.6s;
 }

 .bento-grid .card-title2 {
     font-size: 1.1rem;
     line-height: 1.3rem;
     margin: 0;
 }

 .bento-grid .stat-number {
     font-size: 3rem;
     line-height: 1;
     margin: 0;
 }

 .bento-grid .card-description2,
 .bento-grid .stat-label2 {
     line-height: 1.2rem;
     margin: 0;
 }

 /* Logo Card */
 .logo-section2 {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 1rem;
     margin-bottom: 0.5rem;
 }

 .logo-text2 {
     font-size: 1.2rem;
     font-weight: 700;
     color: #1a1a1a;
 }

 .stat-center {
     display: flex;
     justify-content: center;
 }

 .stat-number {
     font-size: 2.5rem;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 0;
 }

 .stat-label2 {
     font-size: 0.95rem;
     color: #666;
     line-height: 1.2;
 }

 /* Icon Cards */
 .icon-wrapper2 {
     width: 50px;
     height: 50px;
     background: #f8f9fa;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1rem;
 }

 .card-title2 {
     font-size: 1rem;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 0.5rem;
 }

 .card-description2 {
     font-size: 0.9rem;
     color: #666;
     line-height: 1.2;
 }

 /* CTA Section */
 .cta-section2 {
     text-align: center;
     margin-top: 3rem;
     padding: 2rem;
     background: white;
     border-radius: 20px;
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
     opacity: 0;
     transform: translateY(50px);
     transition: all 0.8s ease-out;
     transition-delay: 0.7s;
 }

 .cta-section2.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .cta-text2 {
     font-size: 1.1rem;
     color: #666;
     line-height: 1.8;
     max-width: 900px;
     margin: 0 auto;
 }

 /* Responsive Design for Section 2 */
 @media (max-width: 1024px) {
     .bento-grid {
         grid-template-columns: repeat(6, 1fr);
     }

     .card-logo {
         grid-column: span 6;
         grid-row: span 1;
     }

     .card-tech {
         grid-column: span 3;
     }

     .card-success {
         grid-column: span 3;
     }

     .card-clubs {
         grid-column: span 2;
     }

     .card-projects {
         grid-column: span 2;
     }

     .card-members {
         grid-column: span 2;
     }
 }

 @media (max-width: 768px) {
     .section2 {
         padding: 2rem 1rem;
     }

     .main-title2 {
         font-size: 1.8rem;
     }

     .bento-grid {
         grid-template-columns: 1fr;
         gap: 1rem;
     }

     .card-logo,
     .card-tech,
     .card-success,
     .card-clubs,
     .card-projects,
     .card-members {
         grid-column: span 1;
     }

     .stat-number {
         font-size: 2.5rem;
     }

     .bento-card {
         padding: 1.5rem;
     }
 }

 @media (max-width: 480px) {
     .main-title2 {
         font-size: 1rem;
     }

     .main-description2 {
         font-size: 0.9rem;
     }

     .stat-number {
         font-size: 2rem;
     }
 }

 /* Card Styles */
 .card {
     position: absolute;
     width: 240px;
     height: 320px;
     border-radius: 20px;
     box-shadow: var(--shadowi);
     top: 50%;
     opacity: 0;
     animation: fadeInUp 0.8s ease-out forwards;
     border: none !important;
     /* Ensure no border as requested */
 }

 .card-content {
     width: 100%;
     height: 100%;
     border-radius: 20px;
     background-size: cover;
     background-position: center;
     border: none !important;
     /* Ensure no border as requested */
 }

 /* Keyframes with rotation preserved */
 @keyframes fadeInCard1 {
     0% {
         opacity: 0;
         transform: translateY(-50%) translateY(30px) rotate(-8deg);
     }

     100% {
         opacity: 1;
         transform: translateY(-50%) rotate(-8deg);
     }
 }

 @keyframes fadeInCard2 {
     0% {
         opacity: 0;
         transform: translateY(-50%) translateY(30px) rotate(-5deg);
     }

     100% {
         opacity: 1;
         transform: translateY(-50%) rotate(-5deg);
     }
 }

 @keyframes fadeInCard3 {
     0% {
         opacity: 0;
         transform: translateY(-50%) translateY(30px) rotate(-2deg);
     }

     100% {
         opacity: 1;
         transform: translateY(-50%) rotate(-7deg);
     }
 }

 @keyframes fadeInCard4 {
     0% {
         opacity: 0;
         transform: translateY(-50%) translateY(30px) rotate(0deg);
     }

     100% {
         opacity: 1;
         transform: translateY(-50%) rotate(3deg);
     }
 }

 @keyframes fadeInCard5 {
     0% {
         opacity: 0;
         transform: translateY(-50%) translateY(30px) rotate(0deg);
     }

     100% {
         opacity: 1;
         transform: translateY(-50%) rotate(6deg);
     }
 }

 @keyframes fadeInCard6 {
     0% {
         opacity: 0;
         transform: translateY(-50%) translateY(30px) rotate(2deg);
     }

     100% {
         opacity: 1;
         transform: translateY(-50%) rotate(5deg);
     }
 }

 @keyframes fadeInCard7 {
     0% {
         opacity: 0;
         transform: translateY(-50%) translateY(30px) rotate(5deg);
     }

     100% {
         opacity: 1;
         transform: translateY(-50%) rotate(9deg);
     }
 }

 /* Loading Animation */
 @keyframes fadeInUp {
     0% {
         opacity: 0;
         transform: translateY(-50%) translateY(30px) rotate(0deg);
     }

     100% {
         opacity: 1;
         transform: translateY(-50%);
     }
 }

 /* Apply rotation to each card during animation */
 .card-1 {
     left: 5%;
     animation: fadeInCard1 0.8s ease-out forwards;
     animation-delay: 0.1s;
 }

 .card-2 {
     left: 15%;
     animation: fadeInCard2 0.8s ease-out forwards;
     animation-delay: 0.2s;
 }

 .card-3 {
     left: 25%;
     animation: fadeInCard3 0.8s ease-out forwards;
     animation-delay: 0.3s;
 }

 .card-4 {
     left: 35%;
     animation: fadeInCard4 0.8s ease-out forwards;
     animation-delay: 0.4s;
 }

 .card-5 {
     left: 45%;
     animation: fadeInCard5 0.8s ease-out forwards;
     animation-delay: 0.5s;
 }

 .card-6 {
     left: 55%;
     animation: fadeInCard6 0.8s ease-out forwards;
     animation-delay: 0.6s;
 }

 .card-7 {
     left: 65%;
     animation: fadeInCard7 0.8s ease-out forwards;
     animation-delay: 0.7s;
 }


 /* Tags */
 .tag {
     position: absolute;
     padding: 0.6rem 1.2rem;
     border-radius: 25px;
     font-weight: 500;
     font-size: 0.9rem;
     z-index: 20;
     top: 10%;
 }

 .tag-left {
     background: #4dabf7;
     color: white;
     left: 15%;
 }

 .tag-right {
     background: #5FB8A7;
     color: white;
     right: 15%;
 }

 .hero-description {
     font-size: 1.1rem;
     line-height: 1.6;
     color: #555;
     margin: 3rem 0 2rem;
     max-width: 650px;
 }

 /* CTA Buttons */
 .cta-buttons {
     display: flex;
     gap: 1.5rem;
     /* margin-top: 2rem; */
 }

 .btn {
     padding: 1rem 2.5rem;
     border: none;
     border-radius: 30px;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s;
 }

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

 .btn-primary:hover {
     background: #1a1a1a;
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
 }

 .btn-secondary {
     background: transparent;
     color: var(--primary-color2);
     border: 2px solid transparent;
 }

 .btn-secondary:hover {
     transform: translateY(-2px);
 }

 /* Responsive Design */
 @media (max-width: 1200px) {
     .card-gallery {
         height: 350px;
     }

     .card {
         width: 200px;
         height: 270px;
     }
 }

 /* Mobile Menu Defaults (Hidden on Desktop) */
 .hamburger {
     display: none;
 }

 .mobile-menu {
     display: none;
 }

 @media (max-width: 968px) {
     .header {
         padding: 1.5rem 2rem;
     }

     .nav-links {
         display: none;
     }

     .mobile-menu {
         position: fixed;
         top: 0;
         left: 0;
         width: 100vw;
         height: 100vh;
         background: rgba(255, 255, 255, 0.98);
         backdrop-filter: blur(10px);
         display: flex !important;
         flex-direction: column;
         justify-content: center;
         align-items: center;
         padding: 2rem;
         gap: 1.5rem;
         z-index: 99999;
         opacity: 0;
         visibility: hidden;
         transition: opacity 0.3s ease, visibility 0.3s ease;
     }

     .mobile-menu.active {
         opacity: 1;
         visibility: visible;
     }

     .mobile-menu-close {
         position: absolute;
         top: 20px;
         right: 20px;
         width: 30px;
         height: 30px;
         background: transparent;
         border: none;
         cursor: pointer;
         display: flex;
         align-items: center;
         justify-content: center;
         padding: 0;
         transition: all 0.3s ease;
     }

     .close-icon {
         position: relative;
         width: 20px;
         height: 20px;
     }

     .close-icon::before,
     .close-icon::after {
         content: '';
         position: absolute;
         top: 50%;
         left: 50%;
         width: 20px;
         height: 2px;
         background-color: var(--text);
         transition: background-color 0.3s ease;
     }

     .close-icon::before {
         transform: translate(-50%, -50%) rotate(45deg);
     }

     .close-icon::after {
         transform: translate(-50%, -50%) rotate(-45deg);
     }

     .mobile-menu-close:hover .close-icon::before,
     .mobile-menu-close:hover .close-icon::after {
         background-color: var(--primary);
     }

     .mobile-menu a,
     .accordion-header {
         font-size: 1.5rem;
         font-weight: 600;
         color: var(--text);
         text-decoration: none;
         transition: all 0.3s ease;
         padding: 10px 20px;
         border-radius: 999px;
         display: inline-block;
         cursor: pointer;
     }

     .mobile-menu a:hover,
     .accordion-header:hover,
     .mobile-menu a.active,
     .accordion-header.active {
         background: rgba(79, 70, 229, 0.1) !important;
         color: var(--primary) !important;
     }

     .hamburger {
         display: flex;
         flex-direction: column;
         justify-content: space-between;
         width: 30px;
         height: 21px;
         cursor: pointer;
         z-index: 100000;
         position: relative;
     }

     .hamburger.active {
         position: fixed;
         top: 24px;
         right: 30px;
     }

     .hamburger span {
         display: block;
         width: 100%;
         height: 2px;
         background: var(--text);
         border-radius: 2px;
         transition: all 0.3s ease;
         transform-origin: center;
     }

     .hamburger.active span:nth-child(1) {
         transform: translateY(9.5px) rotate(45deg);
     }

     .hamburger.active span:nth-child(2) {
         opacity: 0;
         transform: scaleX(0);
     }

     .hamburger.active span:nth-child(3) {
         transform: translateY(-9.5px) rotate(-45deg);
     }

     /* Mobile Accordion */
     .nav-accordion {
         width: 100%;
         text-align: center;
         display: flex;
         flex-direction: column;
         align-items: center;
     }

     .accordion-header {
         display: flex;
         align-items: center;
         justify-content: center;
         gap: 10px;
     }

     .accordion-header i {
         font-size: 1rem;
         transition: transform 0.3s;
     }

     .accordion-header.active i {
         transform: rotate(180deg);
     }

     .accordion-content {
         max-height: 0;
         overflow: hidden;
         transition: max-height 0.4s ease-out;
         display: flex;
         flex-direction: column;
         gap: 0.5rem;
         margin-top: 0.5rem;
         width: 100%;
         align-items: center;
     }

     .accordion-content a {
         font-size: 1.1rem;
         color: var(--muted);
         padding: 8px 16px;
         text-decoration: none;
         display: block;
         transition: all 0.2s ease;
         border-radius: 10px;
     }

     .accordion-content a:hover {
         background: rgba(79, 70, 229, 0.08);
         color: var(--primary);
     }

     .hero-title {
         font-size: 3rem;
     }

     .card-gallery {
         height: 300px;
     }

     .card {
         width: 160px;
         height: 220px;
     }
 }

 @media (max-width: 768px) {
     .header {
         padding: 1rem 1.5rem;
     }

     .hero {
         padding: 8rem 1.5rem 4rem;
         margin-top: 0;
     }

     .hero-title {
         font-size: 2.5rem;
         /* margin-bottom: 2rem; */
     }

     .card-gallery {
         height: 250px;
     }

     .card {
         width: 130px;
         height: 180px;
     }

     .card-1 {
         left: 2%;
     }

     .card-2 {
         left: 12%;
     }

     .card-3 {
         left: 22%;
     }

     .card-4 {
         left: 32%;
     }

     .card-5 {
         left: 42%;
     }

     .card-6 {
         left: 52%;
     }

     .card-7 {
         left: 62%;
     }

     .tag {
         font-size: 0.8rem;
         padding: 0.5rem 1rem;
     }

     .tag-left {
         left: 5%;
     }

     .tag-right {
         right: 5%;
     }

     .hero-description {
         font-size: 1rem;
         margin: 2rem 0 1.5rem;
     }

     .cta-buttons {
         flex-direction: column;
         gap: 1rem;
         width: 100%;
         max-width: 300px;
     }

     .btn {
         width: 100%;
     }
 }

 @media (max-width: 480px) {
     .hero-title {
         font-size: 1.8rem;
         /* margin-bottom: 1.5rem; */
     }

     .card-gallery {
         height: 180px;
     }

     .card {
         width: 100px;
         height: 140px;
         border-radius: 15px;
     }

     .card-content {
         border-radius: 15px;
     }

     .card-1 {
         left: 1%;
     }

     .card-2 {
         left: 11%;
     }

     .card-3 {
         left: 21%;
     }

     .card-4 {
         left: 31%;
     }

     .card-5 {
         left: 41%;
     }

     .card-6 {
         left: 51%;
     }

     .card-7 {
         left: 61%;
     }

     .hero-description {
         font-size: 0.9rem;
     }

     .btn {
         padding: 0.9rem 2rem;
         font-size: 0.95rem;
     }

     .header-icons {
         display: none;
     }
 }

 /* Section 3 - Leadership */
 .section3 {
     background: white;
     padding: 6rem 2rem;
     min-height: 100vh;
 }

 .container3 {
     max-width: 1200px;
     margin: 0 auto;
 }

 .header3 {
     text-align: center;
     margin-bottom: 3rem;
     opacity: 0;
     transform: translateY(50px);
     transition: all 0.8s ease-out;
 }

 .header3.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .subtitle3 {
     color: #5FB8A7;
     font-size: 0.9rem;
     font-weight: 600;
     margin-bottom: 1rem;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.5rem;
 }

 .subtitle3::before {
     content: '';
     width: 30px;
     height: 2px;
     background: #5FB8A7;
 }

 .main-title3 {
     text-transform: uppercase;
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 3rem;
     color: #1a1a1a;
 }

 .main-description3 {
     font-size: 1rem;
     color: #666;
     max-width: 800px;
     margin: 0 auto 1rem;
     line-height: 1.6;
 }

 /* Leadership Grid */
 .leadership-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .leader-card {
     background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
     transition: all 0.5s ease-out;
     opacity: 0;
     transform: translateY(50px);
 }

 .leader-card.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .leader-card:hover {
     transform: translateY(-15px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
 }

 .leader-image {
     width: 100%;
     height: 280px;
     background: linear-gradient(135deg, #5FB8A7 0%, #2d7a6d 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 5rem;
     color: white;
     font-weight: 700;
     position: relative;
     overflow: hidden;
 }

 .leader-image::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 0, 0, 0);
     transition: background 0.3s ease;
 }

 .leader-card:hover .leader-image::after {
     background: rgba(0, 0, 0, 0.1);
 }

 .leader-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     position: relative;
     z-index: 1;
 }

 .leader-info {
     padding: 2rem;
     text-align: center;
 }

 .leader-name {
     font-size: 1.3rem;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 0.5rem;
 }

 .leader-position {
     font-size: 0.9rem;
     color: #5FB8A7;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     margin-bottom: 1rem;
     display: inline-block;
     padding: 0.4rem 0.8rem;
     background: rgba(95, 184, 167, 0.1);
     border-radius: 20px;
 }

 .leader-bio {
     font-size: 0.85rem;
     color: #666;
     line-height: 1.6;
 }

 /* Responsive Design for Section 3 */
 @media (max-width: 1024px) {
     .leadership-grid {
         grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
         gap: 1.5rem;
     }
 }

 @media (max-width: 768px) {
     .section3 {
         padding: 2rem 1rem;
     }

     .main-title3 {
         font-size: 1.8rem;
         margin-bottom: 2rem;
     }

     .leadership-grid {
         grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
         gap: 1rem;
     }

     .leader-image {
         height: 220px;
         font-size: 3.5rem;
     }

     .leader-info {
         padding: 1.5rem;
     }

     .leader-name {
         font-size: 1.1rem;
     }
 }

 @media (max-width: 480px) {
     .main-title3 {
         font-size: 1.5rem;
     }

     .leadership-grid {
         grid-template-columns: 1fr;
     }

     .leader-image {
         height: 200px;
         font-size: 3rem;
     }

     .leader-info {
         padding: 1.2rem;
     }

     .leader-name {
         font-size: 1rem;
     }

     .leader-position {
         font-size: 0.8rem;
     }
 }

 /* Footer */
 .footer {
     background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
     color: white;
     padding: 6rem 2rem 6rem;
     position: relative;
     overflow: hidden;
 }

 .footer::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, #5FB8A7 0%, #4dabf7 50%, #5FB8A7 100%);
     background-size: 200% 100%;
     animation: gradientShift 3s ease infinite;
 }

 @keyframes gradientShift {

     0%,
     100% {
         background-position: 0% 50%;
     }

     50% {
         background-position: 100% 50%;
     }
 }

 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
 }

 .footer-top {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 3rem;
     margin-bottom: 3rem;
     padding-bottom: 2rem;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .footer-section {
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.6s ease-out;
 }

 .footer-section.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .footer-logo {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-bottom: 1.5rem;
 }

 .footer-logo-icon {
     width: 50px;
     height: 50px;
     background: linear-gradient(135deg, #5FB8A7 0%, #4dabf7 100%);
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     color: white;
     font-weight: 700;
 }

 .footer-logo-text {
     font-size: 1.3rem;
     font-weight: 700;
     color: white;
 }

 .footer-description {
     color: rgba(255, 255, 255, 0.7);
     line-height: 1.6;
     margin-bottom: 1.5rem;
 }

 .footer-title {
     font-size: 1.1rem;
     font-weight: 700;
     color: white;
     margin-bottom: 1.5rem;
     position: relative;
     display: inline-block;
 }

 .footer-title::after {
     content: '';
     position: absolute;
     bottom: -8px;
     left: 0;
     width: 40px;
     height: 3px;
     background: #5FB8A7;
     border-radius: 2px;
 }

 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-links li {
     margin-bottom: 0.8rem;
 }

 .footer-link {
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     transition: all 0.3s ease;
     display: inline-block;
     position: relative;
 }

 .footer-link::before {
     content: '→';
     position: absolute;
     left: -20px;
     opacity: 0;
     transition: all 0.3s ease;
     color: #5FB8A7;
 }

 .footer-link:hover {
     color: #5FB8A7;
     transform: translateX(10px);
 }

 .footer-link:hover::before {
     opacity: 1;
     left: -15px;
 }

 .contact-item {
     display: flex;
     align-items: center;
     gap: 0.8rem;
     margin-bottom: 1rem;
     color: rgba(255, 255, 255, 0.7);
 }

 .contact-icon {
     width: 35px;
     height: 35px;
     background: rgba(95, 184, 167, 0.2);
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #5FB8A7;
     flex-shrink: 0;
 }

 .social-links-footer {
     display: flex;
     gap: 1rem;
     margin-top: 1.5rem;
 }

 .social-link-footer {
     width: 45px;
     height: 45px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     text-decoration: none;
     transition: all 0.3s ease;
     font-size: 1.2rem;
 }

 .social-link-footer:hover {
     background: #5FB8A7;
     transform: translateY(-5px) rotate(5deg);
 }

 .footer-bottom {
     text-align: center;
     padding-top: 2rem;
     /* color: rgba(255, 255, 255, 0.5); */
     font-size: 0.9rem;
 }

 .footer-bottom-links {
     display: flex;
     justify-content: center;
     gap: 2rem;
     margin-bottom: 1rem;
     flex-wrap: wrap;
 }

 .footer-bottom-link {
     /* color: rgba(255, 255, 255, 0.5); */
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-bottom-link:hover {
     color: #5FB8A7;
 }

 .copyright {
     margin-top: 1rem;
 }

 .heart {
     color: #ff6b6b;
     animation: heartbeat 1.5s ease-in-out infinite;
 }

 @keyframes heartbeat {

     0%,
     100% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.1);
     }
 }

 /* Newsletter */
 .newsletter-form {
     display: flex;
     gap: 0.5rem;
     margin-top: 1rem;
 }

 .newsletter-input {
     flex: 1;
     padding: 0.8rem 1rem;
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 8px;
     background: rgba(255, 255, 255, 0.1);
     color: white;
     font-size: 0.9rem;
     transition: all 0.3s ease;
 }

 .newsletter-input:focus {
     outline: none;
     border-color: #5FB8A7;
     background: rgba(255, 255, 255, 0.15);
 }

 .newsletter-input::placeholder {
     color: rgba(255, 255, 255, 0.5);
 }

 .newsletter-btn {
     padding: 0.8rem 1.5rem;
     background: linear-gradient(135deg, #5FB8A7 0%, #4dabf7 100%);
     color: white;
     border: none;
     border-radius: 8px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .newsletter-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 20px rgba(95, 184, 167, 0.3);
 }

 /* Responsive Footer */
 @media (max-width: 768px) {
     .footer {
         padding: 3rem 1.5rem 1.5rem;
     }

     .footer-top {
         grid-template-columns: 1fr;
         gap: 2rem;
     }

     .footer-bottom-links {
         flex-direction: column;
         gap: 0.8rem;
     }

     .newsletter-form {
         flex-direction: column;
     }

     .newsletter-btn {
         width: 100%;
     }
 }

 /* Section 4 - Testimonials */
 .section4 {
     background: white;
     padding: 6rem 2rem;
     min-height: 80vh;
 }

 .container4 {
     max-width: 1200px;
     margin: 0 auto;
 }

 .header4 {
     text-align: center;
     margin-bottom: 3rem;
     opacity: 0;
     transform: translateY(50px);
     transition: all 0.8s ease-out;
 }

 .header4.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .subtitle4 {
     color: #007bfe;
     font-size: 0.9rem;
     font-weight: 600;
     margin-bottom: 1rem;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.5rem;
     letter-spacing: 1px;
 }

 .subtitle4::before {
     content: '';
     width: 30px;
     height: 2px;
     background: #007bfe;
 }

 .main-title4 {
     text-transform: capitalize;
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 3rem;
     color: #1a1a1a;
     line-height: 1.3;
 }

 /* Testimonials Grid */
 .testimonials-grid {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 2rem;
     margin-top: 3rem;
     padding-bottom: 1rem;
     overflow: hidden;
     max-height: 530px;
     /* Restrict to roughly one row */
     transition: max-height 0.8s ease-in-out;
 }

 /* Grid view when expanded */
 .testimonials-grid.grid-view {
     max-height: 5000px;
     /* Allow expansion */
 }

 .testimonial-card {
     background: white;
     border: 1px solid rgba(0, 123, 254, 0.15);
     border-radius: 20px;
     padding: 2rem;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
     transition: all 0.5s ease-out;
     opacity: 0;
     transform: translateY(50px);
     display: flex;
     flex-direction: column;
     position: relative;
     overflow: hidden;
     min-width: 350px;
     max-width: 20rem;
     flex-shrink: 0;
 }

 .testimonials-grid.grid-view .testimonial-card {
     min-width: auto;
 }

 /* Button Container */
 .testimonials-button-container {
     display: flex;
     justify-content: center;
     margin-top: 3rem;
 }

 .testimonials-toggle-btn {
     display: inline-flex;
     align-items: center;
     gap: 0.75rem;
     padding: 1rem 2.5rem;
     background: linear-gradient(135deg, #4f46e5, #7c3aed);
     color: white;
     border: none;
     border-radius: 50px;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
 }

 .testimonials-toggle-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
 }

 .testimonials-toggle-btn:active {
     transform: translateY(-1px);
 }

 .testimonials-toggle-btn .btn-icon {
     transition: transform 0.3s ease;
 }

 .testimonial-card::before {
     content: '"';
     position: absolute;
     top: -20px;
     left: -10px;
     font-size: 8rem;
     color: rgba(0, 123, 254, 0.08);
     font-weight: 700;
     font-family: Georgia, serif;
 }

 .testimonial-card.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .testimonial-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(0, 123, 254, 0.15);
     border-color: rgba(0, 123, 254, 0.3);
 }

 .testimonial-image-small {
     width: 70px;
     height: 70px;
     border-radius: 50%;
     margin-bottom: 1.5rem;
     overflow: hidden;
     flex-shrink: 0;
     box-shadow: 0 4px 15px rgba(0, 123, 254, 0.2);
     border: 3px solid rgba(0, 123, 254, 0.2);
 }

 .testimonial-image-small img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .testimonial-content {
     flex: 1;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .testimonial-quote {
     font-size: 0.85rem;
     line-height: 1.1;
     color: #555;
     margin-bottom: 1.5rem;
     /* font-style: italic; */

     position: relative;
     z-index: 1;
 }

 .testimonial-author {
     border-top: 1px solid rgba(0, 123, 254, 0.2);
     padding-top: 1rem;
 }

 .author-name {
     font-size: 1.1rem;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 0.3rem;
 }

 .author-position {
     font-size: 0.75rem;
     color: #007bfe;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 /* Responsive Design for Section 4 */
 @media (max-width: 1024px) {
     .testimonials-grid.grid-view {
         grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
         gap: 1.5rem;
     }

     .testimonial-card {
         min-width: 320px;
     }
 }

 @media (max-width: 768px) {
     .section4 {
         padding: 2rem 1rem;
     }

     .main-title4 {
         font-size: 1.8rem;
         margin-bottom: 2rem;
     }

     .testimonials-grid {
         gap: 1rem;
     }

     .testimonials-grid.grid-view {
         grid-template-columns: 1fr;
         gap: 1rem;
     }

     .testimonial-card {
         padding: 1.5rem;
         min-width: 280px;
     }

     .testimonials-grid.grid-view .testimonial-card {
         min-width: auto;
     }

     .testimonial-quote {
         font-size: 0.9rem;
     }

     .testimonials-toggle-btn {
         padding: 0.875rem 2rem;
         font-size: 0.9rem;
     }
 }

 @media (max-width: 480px) {
     .testimonial-card {
         min-width: 260px;
     }

     .testimonials-toggle-btn {
         width: 100%;
         max-width: 300px;
     }
 }

 @media (max-width: 480px) {
     .main-title4 {
         font-size: 1.5rem;
     }

     .testimonial-card {
         padding: 1.2rem;
     }

     .author-name {
         font-size: 1rem;
     }

     .author-position {
         font-size: 0.75rem;
     }
 }

 /* __________ */


 .topbar {
     position: sticky;
     top: 0;
     z-index: 50;
     backdrop-filter: blur(14px);
     background: rgba(247, 248, 251, 0.85);
     border-bottom: 1px solid rgba(230, 233, 242, 0.8);
 }

 .nav-shell {
     max-width: 1200px;
     margin: 0 auto;
     padding: 14px 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 24px;
 }

 .brand {
     display: flex;
     align-items: center;
     gap: 12px;
     font-weight: 700;
     letter-spacing: 0.02em;
     color: var(--text);
     text-decoration: none;
 }

 .brand-logo {
     width: 42px;
     height: 42px;
     border-radius: 12px;
     object-fit: cover;
     box-shadow: 0 10px 22px rgba(79, 70, 229, 0.18);
     background: #ffffff;
     padding: 4px;
 }

 .nav-links {
     display: flex;
     align-items: center;
     gap: 20px;
     font-size: 0.95rem;
     margin: 0;
     list-style: none;
 }

 .nav-links a,
 .nav-toggle {
     color: var(--text);
     text-decoration: none;
     font-weight: 600;
     padding: 8px 10px;
     border-radius: 999px;
     transition: background 0.2s ease, color 0.2s ease;
     cursor: pointer;
     border: none;
     background: none;
     font-size: inherit;
 }

 .nav-links a:hover,
 .nav-toggle:hover {
     background: rgba(79, 70, 229, 0.1);
     color: var(--primary);
 }

 .nav-item {
     position: relative;
 }

 .dropdown,
 .dropdown-sub {
     position: absolute;
     top: 115%;
     left: 0;
     background: var(--surface);
     border-radius: 18px;
     padding: 14px;
     min-width: 240px;
     box-shadow: 0 18px 40px rgba(20, 28, 45, 0.18);
     border: 1px solid var(--border);
     opacity: 0;
     pointer-events: none;
     transform: translateY(10px);
     transition: opacity 0.2s ease, transform 0.2s ease;
 }

 .dropdown a,
 .dropdown-sub a {
     display: block;
     padding: 8px 10px;
     border-radius: 10px;
     color: var(--text);
     font-weight: 500;
     text-decoration: none;
     transition: background 0.2s ease;
 }

 .dropdown a:hover,
 .dropdown-sub a:hover {
     background: rgba(79, 70, 229, 0.08);
 }

 .nav-item:hover>.dropdown,
 .dropdown-item:hover>.dropdown-sub {
     opacity: 1;
     pointer-events: auto;
     transform: translateY(0);
 }

 .dropdown-item {
     position: relative;
 }

 .dropdown-sub {
     top: 0;
     left: 100%;
     margin-left: 10px;
 }

 @media (max-width: 900px) {
     .nav-links {
         display: none;
     }
 }

 /* Contact Section */
 .contact-section {
     max-width: 1400px;
     margin: 0 auto;
     padding: 60px 20px;
 }

 .contact-container {
     display: grid;
     grid-template-columns: 1fr 2fr;
     gap: 40px;
     background: white;
     border-radius: var(--radius);
     overflow: hidden;
     box-shadow: var(--shadow);
 }

 .contact-sidebar {
     background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
     color: white;
     padding: 48px 40px;
     display: flex;
     flex-direction: column;
     gap: 40px;
 }

 .contact-info-group {
     display: flex;
     flex-direction: column;
     gap: 12px;
 }

 .contact-icon {
     width: 50px;
     height: 50px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--green);
     font-size: 1.5rem;
     margin-bottom: 8px;
 }

 .contact-label {
     font-size: 1rem;
     font-weight: 700;
     margin-bottom: 8px;
 }

 .contact-info-group p {
     font-size: 0.95rem;
     color: rgba(255, 255, 255, 0.8);
     margin: 4px 0;
 }

 .contact-info-group a {
     color: var(--green);
     text-decoration: none;
     font-weight: 600;
     transition: color 0.2s ease;
 }

 .contact-info-group a:hover {
     color: var(--dark-green);
 }

 .social-links {
     display: flex;
     gap: 12px;
     margin-top: auto;
 }

 .social-link {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     text-decoration: none;
     transition: all 0.2s ease;
     font-size: 1.1rem;
 }

 .social-link:hover {
     background: var(--green);
     color: #2d2d2d;
     transform: translateY(-2px);
 }

 .contact-form-area {
     background: var(--green);
     padding: 48px 40px;
     display: flex;
     flex-direction: column;
     gap: 28px;
 }

 .form-header {
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .form-header h1 {
     font-size: 2rem;
     font-weight: 700;
     color: var(--text);
     margin: 0;
 }

 .form-header p {
     font-size: 1.05rem;
     color: #555;
     margin: 0;
 }

 .form-group {
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .form-group label {
     font-size: 0.9rem;
     font-weight: 600;
     color: var(--text);
 }

 .form-group input,
 .form-group textarea {
     padding: 12px 16px;
     border: none;
     border-bottom: 2px solid transparent;
     background: rgba(255, 255, 255, 0.3);
     color: var(--text);
     font-family: inherit;
     font-size: 0.95rem;
     transition: all 0.2s ease;
 }

 .form-group input::placeholder,
 .form-group textarea::placeholder {
     color: rgba(45, 45, 45, 0.5);
 }

 .form-group input:focus,
 .form-group textarea:focus {
     outline: none;
     background: rgba(255, 255, 255, 0.5);
     border-bottom-color: var(--text);
 }

 .form-group textarea {
     resize: vertical;
     min-height: 100px;
 }

 .form-checkboxes {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
 }

 .checkbox-group {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .checkbox-group input[type="checkbox"] {
     width: 20px;
     height: 20px;
     cursor: pointer;
     accent-color: var(--primary);
 }

 .checkbox-group label {
     cursor: pointer;
     margin: 0;
     font-size: 0.95rem;
     color: var(--text);
 }

 .form-submit {
     padding: 14px 32px;
     background: #1a1a1a;
     color: white;
     border: none;
     border-radius: 8px;
     font-weight: 600;
     font-size: 1rem;
     cursor: pointer;
     transition: all 0.2s ease;
     margin-top: 12px;
 }

 .form-submit:hover {
     background: #2d2d2d;
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
 }

 /* Directory Section */
 .directory-section {
     max-width: 1400px;
     margin: 60px auto 0;
     padding: 60px 20px;
     text-align: center;
 }

 .directory-header {
     display: flex;
     flex-direction: column;
     gap: 16px;
     margin-bottom: 32px;
 }

 .directory-header h2 {
     font-size: 2rem;
     font-weight: 700;
     margin: 0;
     color: var(--text);
 }

 .directory-header p {
     font-size: 1rem;
     color: var(--muted);
     margin: 0;
     max-width: 600px;
     margin: 0 auto;
 }

 .directory-btn {
     display: inline-block;
     padding: 12px 32px;
     background: var(--primary);
     color: white;
     text-decoration: none;
     border-radius: 8px;
     font-weight: 600;
     transition: all 0.2s ease;
 }

 .directory-btn:hover {
     background: #3f3bd9;
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
 }

 /* Clubs Section Styles */
 .badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: rgba(79, 70, 229, 0.12);
     color: var(--primary);
     padding: 6px 14px;
     border-radius: 999px;
     font-weight: 600;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     font-size: 12px;
 }

 .clubs {
     display: grid;
     gap: 24px;
     background: white;
     border-radius: var(--radius);
     box-shadow: var(--shadow);
 }

 .clubs h2 {
     margin: 0;
     font-size: 2rem;
     color: var(--text);
 }

 .club-grid {
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
     justify-content: center;
 }

 .club-card {
     background: var(--surface);
     border-radius: 16px;
     padding: 20px;
     border: 1px solid var(--border);
     box-shadow: 0 10px 30px rgba(20, 28, 45, 0.08);
     display: grid;
     gap: 10px;
     transition: transform 0.2s ease, box-shadow 0.2s ease;
     flex: 1 0 calc(33.333% - 14px);
     min-width: 240px;
 }

 .club-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 18px 40px rgba(20, 28, 45, 0.12);
 }

 .club-card.reveal.is-visible {
     animation: fadeSlide 0.7s ease both;
 }

 .club-title {
     font-weight: 700;
     color: var(--text);
 }

 .club-meta {
     display: flex;
     flex-direction: column;
     gap: 4px;
     color: var(--muted);
     font-size: 0.95rem;
 }

 .club-number {
     align-self: flex-start;
     background: rgba(245, 158, 11, 0.16);
     color: #b45309;
     font-weight: 600;
     padding: 4px 10px;
     border-radius: 999px;
     font-size: 0.85rem;
 }

 .reveal {
     opacity: 0;
     transform: translateY(24px);
     transition: opacity 0.7s ease, transform 0.7s ease;
 }

 .reveal.is-visible {
     opacity: 1;
     transform: translateY(0);
 }

 @keyframes fadeSlide {
     from {
         opacity: 0;
         transform: translateY(28px);
     }

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

 /* Personnel Cards Section */
 .personnel-section {
     max-width: 1400px;
     margin: 40px auto;
     padding: 0 20px;
 }

 .personnel-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 24px;
 }

 .personnel-card {
     background: white;
     border-radius: 16px;
     padding: 28px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     text-align: center;
 }

 .personnel-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
 }

 .personnel-avatar {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, var(--primary), var(--accent));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-weight: 700;
     font-size: 1.8rem;
     margin: 0 auto 16px;
 }

 .personnel-name {
     font-size: 1.1rem;
     font-weight: 700;
     color: var(--text);
     margin-bottom: 4px;
 }

 .personnel-position {
     font-size: 0.9rem;
     color: var(--primary);
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     margin-bottom: 16px;
     padding: 6px 12px;
     background: rgba(79, 70, 229, 0.1);
     display: inline-block;
     border-radius: 20px;
 }

 .personnel-contact {
     display: flex;
     flex-direction: column;
     gap: 8px;
     align-items: center;
 }

 .personnel-contact p {
     margin: 0;
     font-size: 0.9rem;
     color: var(--muted);
 }

 .personnel-contact a {
     color: var(--primary);
     text-decoration: none;
     font-weight: 600;
     transition: color 0.2s ease;
 }

 .personnel-contact a:hover {
     color: var(--accent);
 }

 /* Footer */
 footer {
     background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
     color: white;
     padding: 40px 20px;
     text-align: center;
     margin-top: 60px;
 }

 footer p {
     margin: 0;
     color: rgba(255, 255, 255, 0.7);
     font-size: 0.9rem;
 }

 footer a {
     color: var(--green);
     text-decoration: none;
 }

 footer a:hover {
     color: var(--dark-green);
 }

 /* Responsive Design */
 @media (max-width: 900px) {
     .contact-container {
         grid-template-columns: 1fr;
     }

     .contact-sidebar,
     .contact-form-area {
         padding: 40px 30px;
     }

     .form-header h1 {
         font-size: 1.6rem;
     }

     .form-checkboxes {
         grid-template-columns: 1fr;
     }

     .personnel-grid {
         grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
     }
 }

 @media (max-width: 600px) {
     .contact-section {
         padding: 40px 0;
     }

     .contact-container {
         border-radius: 0;
         grid-template-columns: 1fr;
     }

     .contact-sidebar {
         padding: 30px;
         border-radius: 20px 20px 0 0;
         margin: 20px;
     }

     .contact-form-area {
         padding: 30px;
         border-radius: 0 0 20px 20px;
         margin: 0 20px 20px;
     }

     .form-header h1 {
         font-size: 1.3rem;
     }

     .form-header p {
         font-size: 0.95rem;
     }

     .personnel-grid {
         grid-template-columns: 1fr;
     }

     .social-links {
         gap: 10px;
     }

     .social-link {
         width: 36px;
         height: 36px;
         font-size: 0.95rem;
     }
 }

 /* --------------- news  */



 /* Navigation */
 .iw-topbar {
     position: sticky;
     top: 0;
     z-index: 50;
     backdrop-filter: blur(14px);
     background: rgba(232, 232, 232, 0.88);
     border-bottom: 1px solid rgba(0, 0, 0, 0.08);
 }

 .iw-nav-shell {
     max-width: 1200px;
     margin: 0 auto;
     padding: 12px 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 24px;
 }

 .iw-brand {
     display: flex;
     align-items: center;
     gap: 12px;
     font-weight: 700;
     letter-spacing: 0.02em;
 }

 .iw-brand-logo {
     width: 42px;
     height: 42px;
     border-radius: 12px;
     object-fit: cover;
     box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
     background: #ffffff;
     padding: 4px;
 }

 .iw-nav-links {
     display: flex;
     align-items: center;
     gap: 18px;
     font-size: 0.95rem;
 }

 .iw-nav-links a,
 .iw-nav-toggle {
     color: var(--text-color);
     text-decoration: none;
     font-weight: 600;
     padding: 8px 10px;
     border-radius: 999px;
     transition: background 0.2s ease, color 0.2s ease;
 }

 .iw-nav-links a:hover,
 .iw-nav-toggle:hover {
     background: rgba(95, 184, 167, 0.18);
     color: #1b5f54;
 }

 .iw-nav-cta {
     background: linear-gradient(135deg, #5FB8A7, #3b8f7f);
     color: #ffffff;
     padding: 10px 18px;
     border-radius: 999px;
     font-weight: 600;
     text-decoration: none;
     box-shadow: 0 16px 30px rgba(95, 184, 167, 0.3);
     transition: filter 0.3s ease;
 }

 .iw-nav-cta:hover {
     filter: brightness(1.05);
 }

 /* Hero Section */
 .hero-news {
     background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
     padding: 6rem 2rem;
     min-height: 70vh;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .hero-news::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -10%;
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(95, 184, 167, 0.1) 0%, transparent 70%);
     border-radius: 50%;
     z-index: 1;
 }

 .hero-news::after {
     content: '';
     position: absolute;
     bottom: -30%;
     left: -5%;
     width: 500px;
     height: 500px;
     background: radial-gradient(circle, rgba(95, 184, 167, 0.08) 0%, transparent 70%);
     border-radius: 50%;
     z-index: 1;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 900px;
     animation: fadeInDown 0.8s ease-out forwards;
     opacity: 0;
 }

 @keyframes fadeInDown {
     0% {
         opacity: 0;
         transform: translateY(-30px);
     }

     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .event-badge {
     display: inline-block;
     background: rgba(95, 184, 167, 0.15);
     color: var(--accent-color);
     padding: 0.6rem 1.2rem;
     border-radius: 30px;
     font-size: 0.85rem;
     font-weight: 600;
     margin-bottom: 1.5rem;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .hero-title-news {
     font-size: 3.5rem;
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 1rem;
     color: var(--primary-color);
 }

 .hero-subtitle {
     font-size: 1.3rem;
     color: var(--accent-color);
     font-weight: 600;
     margin-bottom: 1.5rem;
 }

 .hero-description {
     font-size: 1.1rem;
     line-height: 1.8;
     color: #555;
     margin-bottom: 2.5rem;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
 }

 .hero-buttons {
     display: flex;
     gap: 1.5rem;
     justify-content: center;
     flex-wrap: wrap;
     margin-bottom: 2rem;
 }

 .btn-primary-news {
     padding: 1rem 2.5rem;
     background: var(--accent-color);
     color: white;
     border: none;
     border-radius: 30px;
     font-weight: 600;
     font-size: 1rem;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
 }

 .btn-primary-news:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 35px rgba(95, 184, 167, 0.4);
 }

 .btn-secondary-news {
     padding: 1rem 2.5rem;
     background: transparent;
     color: var(--primary-color);
     border: 2px solid var(--primary-color);
     border-radius: 30px;
     font-weight: 600;
     font-size: 1rem;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
 }

 .btn-secondary-news:hover {
     background: var(--primary-color);
     color: white;
     transform: translateY(-3px);
 }

 /* Event Details Section */
 .event-details {
     background: white;
     padding: 4rem 2rem;
     margin: 3rem auto;
     max-width: 1000px;
     border-radius: 20px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
     position: relative;
     z-index: 2;
 }

 .event-details h2 {
     font-size: 2rem;
     font-weight: 700;
     color: var(--primary-color);
     margin-bottom: 2rem;
     text-align: center;
 }

 .event-details p {
     font-size: 1rem;
     line-height: 1.8;
     color: #555;
     margin-bottom: 1.5rem;
     text-align: justify;
 }

 .event-details p:last-child {
     margin-bottom: 0;
 }

 /* Highlights Section */
 .event-highlights {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
     padding-top: 2rem;
     border-top: 2px solid rgba(95, 184, 167, 0.2);
 }

 .highlight-item {
     text-align: center;
 }

 .highlight-icon {
     width: 60px;
     height: 60px;
     background: rgba(95, 184, 167, 0.15);
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1rem;
     font-size: 1.8rem;
 }

 .highlight-title {
     font-size: 1.1rem;
     font-weight: 700;
     color: var(--primary-color);
     margin-bottom: 0.5rem;
 }

 .highlight-text {
     font-size: 0.95rem;
     color: #666;
     line-height: 1.6;
 }

 /* Facebook Embed Section */
 .social-embed-section {
     background: white;
     padding: 4rem 2rem;
     text-align: center;
 }

 .social-embed-section h2 {
     font-size: 2rem;
     font-weight: 700;
     color: var(--primary-color);
     margin-bottom: 1rem;
 }

 .social-embed-section p {
     font-size: 1rem;
     color: #666;
     margin-bottom: 2rem;
 }

 .fb-embed-container {
     max-width: 600px;
     margin: 0 auto;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 /* Footer */
 .footer {
     background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
     color: white;
     padding: 4rem 2rem 2rem;
     position: relative;
     overflow: hidden;
     margin-top: 4rem;
 }

 .footer::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, #5FB8A7 0%, #4dabf7 50%, #5FB8A7 100%);
 }

 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
 }

 .footer-bottom {
     text-align: center;
     padding-top: 2rem;
     /* color: rgba(255, 255, 255, 0.5); */
     font-size: 0.9rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     margin-top: 2rem;
 }

 .copyright {
     margin-top: 1rem;
 }

 .heart {
     color: #ff6b6b;
     animation: heartbeat 1.5s ease-in-out infinite;
 }

 @keyframes heartbeat {

     0%,
     100% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.1);
     }
 }

 /* Responsive Design */
 @media (max-width: 1024px) {
     .hero-title-news {
         font-size: 2.8rem;
     }

     .event-details {
         padding: 3rem 2rem;
     }
 }

 @media (max-width: 768px) {
     .hero-news {
         padding: 4rem 1.5rem;
         min-height: 60vh;
     }

     .hero-title-news {
         font-size: 2.2rem;
     }

     .hero-subtitle {
         font-size: 1.1rem;
     }

     .hero-description {
         font-size: 1rem;
     }

     .hero-buttons {
         flex-direction: column;
         gap: 1rem;
     }

     .btn-primary-news,
     .btn-secondary-news {
         width: 100%;
         padding: 0.9rem 2rem;
     }

     .event-details {
         padding: 2rem 1.5rem;
         margin: 2rem 1rem;
     }

     .event-details h2 {
         font-size: 1.6rem;
     }

     .event-details p {
         font-size: 0.95rem;
         text-align: left;
     }

     .event-highlights {
         grid-template-columns: 1fr;
         gap: 1.5rem;
     }

     .social-embed-section {
         padding: 2rem 1.5rem;
     }

     .iw-nav-links {
         gap: 10px;
         font-size: 0.85rem;
     }
 }

 @media (max-width: 480px) {
     .hero-news {
         padding: 3rem 1rem;
         min-height: 50vh;
     }

     .hero-title-news {
         font-size: 1.8rem;
         margin-bottom: 0.8rem;
     }

     .event-badge {
         font-size: 0.75rem;
         padding: 0.5rem 1rem;
         margin-bottom: 1rem;
     }

     .hero-description {
         font-size: 0.95rem;
         margin-bottom: 2rem;
     }

     .event-details {
         padding: 1.5rem 1rem;
         margin: 1.5rem 0.5rem;
     }

     .event-details h2 {
         font-size: 1.3rem;
     }

     .highlight-icon {
         width: 50px;
         height: 50px;
         font-size: 1.5rem;
     }

     .social-embed-section h2 {
         font-size: 1.3rem;
     }
 }

 /* history  */



 :root {
     --hbg: #f7f8fb;
     --hsurface: #ffffff;
     --htext: #1d2233;
     --hmuted: #5d6375;
     --hprimary: #4f46e5;
     --haccent: #f59e0b;
     --hborder: #e6e9f2;
     --hshadow: 0 20px 45px rgba(20, 28, 45, 0.12);
     --hradius: 20px;
 }

 * {
     box-sizing: border-box;
 }

 body {
     margin: 0;
     font-family: 'Montserrat', sans-serif;
     background: var(--hbg);
     color: var(--htext);
     line-height: 1.7;
 }

 .topbar {
     position: sticky;
     top: 0;
     z-index: 50;
     backdrop-filter: blur(14px);
     background: rgba(247, 248, 251, 0.85);
     border-bottom: 1px solid rgba(230, 233, 242, 0.8);
 }

 .nav-shell {
     max-width: 1200px;
     margin: 0 auto;
     padding: 14px 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 24px;
 }

 .brand {
     display: flex;
     align-items: center;
     gap: 12px;
     font-weight: 700;
     letter-spacing: 0.02em;
 }

 .brand-logo {
     width: 42px;
     height: 42px;
     border-radius: 12px;
     object-fit: cover;
     box-shadow: 0 10px 22px rgba(79, 70, 229, 0.18);
     background: #ffffff;
     padding: 4px;
 }

 .nav-links {
     display: flex;
     align-items: center;
     gap: 20px;
     font-size: 0.95rem;
 }

 .nav-links a,
 .nav-toggle {
     color: var(--htext);
     text-decoration: none;
     font-weight: 600;
     padding: 8px 10px;
     border-radius: 999px;
     transition: background 0.2s ease, color 0.2s ease;
 }

 .nav-links a:hover,
 .nav-toggle:hover {
     background: rgba(79, 70, 229, 0.1);
     color: var(--primary);
 }

 .nav-item {
     position: relative;
 }

 .dropdown,
 .dropdown-sub {
     position: absolute;
     top: 115%;
     left: 0;
     background: var(--surface);
     border-radius: 18px;
     padding: 14px;
     min-width: 240px;
     box-shadow: 0 18px 40px rgba(20, 28, 45, 0.18);
     border: 1px solid var(--hborder);
     opacity: 0;
     pointer-events: none;
     transform: translateY(10px);
     transition: opacity 0.2s ease, transform 0.2s ease;
 }

 .dropdown a,
 .dropdown-sub a {
     display: block;
     padding: 8px 10px;
     border-radius: 10px;
     color: var(--htext);
     font-weight: 500;
 }

 .dropdown a:hover,
 .dropdown-sub a:hover {
     background: rgba(79, 70, 229, 0.08);
 }

 .nav-item:hover>.dropdown,
 .dropdown-item:hover>.dropdown-sub {
     opacity: 1;
     pointer-events: auto;
     transform: translateY(0);
 }

 .dropdown-item {
     position: relative;
 }

 .dropdown-sub {
     top: 0;
     left: 100%;
     margin-left: 10px;
 }

 .nav-cta {
     background: linear-gradient(135deg, #4f46e5, #7c3aed);
     color: #ffffff;
     padding: 10px 18px;
     border-radius: 999px;
     font-weight: 600;
     text-decoration: none;
     box-shadow: 0 16px 30px rgba(79, 70, 229, 0.3);
 }

 .nav-cta:hover {
     filter: brightness(1.05);
 }

 @keyframes floatIn {
     0% {
         opacity: 0;
         transform: translateY(18px) scale(0.98);
     }

     100% {
         opacity: 1;
         transform: translateY(0) scale(1);
     }
 }

 @keyframes pulseGlow {

     0%,
     100% {
         box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.25);
     }

     50% {
         box-shadow: 0 0 0 12px rgba(79, 70, 229, 0);
     }
 }

 @keyframes fadeSlide {
     from {
         opacity: 0;
         transform: translateY(28px);
     }

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

 .reveal {
     opacity: 0;
     transform: translateY(24px);
     transition: opacity 0.7s ease, transform 0.7s ease;
 }

 .reveal.is-visible {
     opacity: 1;
     transform: translateY(0);
 }

 .page {
     max-width: 1200px;
     margin: 0 auto;
     padding: 48px 20px 80px;
     display: flex;
     /* background-color: red; */
     /* justify-content: center;     */
     /* align-items: center;     */
     flex-direction: column;
     gap: 48px;
 }

 /* body {
     background-color: #121217;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: ;
 }   */

 .hero {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 32px;
     align-items: center;
     background: var(--hsurface);
     border-radius: var(--hradius);
     padding: 32px;
     box-shadow: var(--hshadow);
     animation: floatIn 0.9s ease both;
 }

 .badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: rgba(79, 70, 229, 0.12);
     color: var(--hprimary);
     padding: 6px 14px;
     border-radius: 999px;
     font-weight: 600;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     font-size: 12px;
     animation: pulseGlow 2.2s ease-in-out infinite;
 }

 h1 {
     margin: 16px 0 12px;
     font-size: clamp(2rem, 3.2vw, 3rem);
     line-height: 1.2;
 }

 .lead {
     color: var(--hmuted);
     font-size: 1.05rem;
 }

 .hero figure {
     margin: 0;
     background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(245, 158, 11, 0.08));
     border-radius: 18px;
     padding: 18px;
     display: grid;
     gap: 12px;
     text-align: center;
 }

 .hero img {
     width: 100%;
     border-radius: 14px;
     display: block;
     object-fit: cover;
     transition: transform 0.4s ease, box-shadow 0.4s ease;
 }

 .hero img:hover {
     transform: scale(1.03);
     box-shadow: 0 18px 40px rgba(20, 28, 45, 0.16);
 }

 .caption {
     font-weight: 600;
     color: var(--htext);
 }

 .caption span {
     display: block;
     font-weight: 400;
     color: var(--hmuted);
     font-size: 0.8rem;
 }

 .story {
     display: grid;
     gap: 24px;
     background: var(--hsurface);
     border-radius: var(--hradius);
     padding: 32px;
     box-shadow: var(--hshadow);
 }

 .story h2 {
     margin: 0;
     font-size: clamp(1.6rem, 2.4vw, 2.2rem);
 }

 .timeline {
     display: grid;
     gap: 20px;
     position: relative;
     padding-left: 24px;
 }

 .timeline::before {
     content: "";
     position: absolute;
     left: 6px;
     top: 8px;
     bottom: 8px;
     width: 2px;
     background: linear-gradient(to bottom, var(--hprimary), rgba(79, 70, 229, 0));
 }

 .timeline-item {
     position: relative;
     padding-left: 16px;
 }

 .timeline-item::before {
     content: "";
     position: absolute;
     left: -4px;
     top: 10px;
     width: 12px;
     height: 12px;
     background: var(--hprimary);
     border-radius: 50%;
     box-shadow: 0 0 0 6px rgba(79, 70, 229, 0.12);
     animation: pulseGlow 2.6s ease-in-out infinite;
 }

 .timeline-item p {
     margin: 0;
     color: var(--hmuted);
 }

 .clubs {
     display: grid;
     gap: 24px;
     background: var(--hsurface);
     border-radius: var(--hradius);
     padding: 32px;
     box-shadow: var(--hshadow);
 }

 .clubs-header {
     text-align: center;
     margin-bottom: 2rem;
 }

 .clubs h2 {
     margin: 0;
     font-size: clamp(1.6rem, 2.4vw, 2.2rem);
 }

 .club-grid {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
 }

 .club-card {
     background: var(--hsurface);
     border-radius: 16px;
     padding: 20px;
     border: 1px solid var(--hborder);
     box-shadow: 0 10px 30px rgba(20, 28, 45, 0.08);
     display: grid;
     gap: 10px;
     transition: transform 0.2s ease, box-shadow 0.2s ease;
     flex: 1 0 calc(33.333% - 14px);
     min-width: 240px;
     max-width: 20rem;
 }

 .club-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 18px 40px rgba(20, 28, 45, 0.12);
 }

 .club-card.reveal.is-visible {
     animation: fadeSlide 0.7s ease both;
 }

 .club-title {
     font-weight: 700;
 }

 .club-meta {
     display: flex;
     flex-direction: column;
     gap: 4px;
     color: var(--hmuted);
     font-size: 0.95rem;
 }

 .club-number {
     align-self: flex-start;
     background: rgba(245, 158, 11, 0.16);
     color: #b45309;
     font-weight: 600;
     padding: 4px 10px;
     border-radius: 999px;
     font-size: 0.85rem;
 }

 footer {
     text-align: center;
     color: var(--hmuted);
     font-size: 0.9rem;
 }

 @media (max-width: 600px) {
     .hero {
         padding: 24px;
     }

     .story,
     .clubs {
         padding: 24px;
     }
 }

 @media (max-width: 900px) {
     .nav-links {
         display: none;
     }
 }

 /* News Page Styles */
 .c-news-hero {
     background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
     color: white;
     padding: 100px 20px;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .c-news-hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
         radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
     pointer-events: none;
 }

 .c-news-hero-content {
     position: relative;
     z-index: 1;
 }

 .c-news-hero h1 {
     font-size: clamp(2.5rem, 6vw, 4rem);
     font-weight: 800;
     margin-bottom: 16px;
     letter-spacing: -0.02em;
 }

 .c-news-hero p {
     font-size: 1.15rem;
     opacity: 0.95;
     max-width: 600px;
     margin: 0 auto;
 }

 /* News Section */
 .c-news-section {
     padding: 80px 20px;
     background: var(--bg);
 }

 .c-news-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
 }

 .c-news-card {
     background: var(--surface);
     border-radius: 24px;
     padding: 32px;
     border: 2px solid var(--border);
     position: relative;
     overflow: hidden;
     transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     display: flex;
     flex-direction: column;
     gap: 16px;
     box-shadow: 0 10px 40px rgba(20, 28, 45, 0.06);
 }

 .c-news-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, #4f46e5, #7c3aed, #f59e0b);
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 }

 .c-news-card::before:hover {
     transform: scaleX(1);
 }

 .c-news-card:hover {
     border-color: var(--primary);
     transform: translateY(-8px);
     box-shadow: 0 30px 80px rgba(79, 70, 229, 0.18);
 }

 .c-news-card:hover::before {
     transform: scaleX(1);
 }

 .c-news-card-badge {
     display: inline-block;
     align-self: center;
     background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(124, 58, 237, 0.12));
     color: var(--primary);
     font-size: 0.65rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.08em;
     padding: 4px 16px;
     border-radius: 999px;
     border: 1px solid rgba(79, 70, 229, 0.2);
     margin-bottom: 4px;
 }

 .c-news-card-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     justify-content: center;
     margin: 8px 0;
 }

 .c-news-card-tag {
     font-size: 0.6rem;
     font-weight: 600;
     text-transform: uppercase;
     padding: 2px 10px;
     border-radius: 999px;
     background: rgba(95, 184, 167, 0.12);
     color: green;
     border: 1px solid rgba(95, 184, 167, 0.2);
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .c-news-card-tag:hover {
     background: var(--accent-color2);
     color: white;
 }

 .c-news-card-title {
     font-size: 1rem;
     font-weight: 800;
     color: var(--text);
     line-height: 1.4;
     margin: 0;
     text-align: center;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .c-news-card-excerpt {
     font-size: 0.8rem;
     color: var(--muted);
     line-height: 1.6;
     margin: 0;
     text-align: center;
     display: -webkit-box;
     -webkit-line-clamp: 4;
     line-clamp: 4;
     -webkit-box-orient: vertical;
     overflow: hidden;
     flex-grow: 1;
 }

 .c-news-card-link {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     color: var(--primary);
     font-weight: 700;
     font-size: 0.65rem;
     text-decoration: none;
     align-self: center;
     padding: 4px 16px;
     border-radius: 999px;
     background: rgba(79, 70, 229, 0.08);
     transition: all 0.3s ease;
     margin-top: auto;
     text-transform: uppercase;
     letter-spacing: 0.05em;
 }

 .c-news-card-link svg {
     transition: transform 0.3s ease;
 }

 .c-news-card-link:hover {
     background: var(--primary);
     color: white;
     transform: translateX(4px);
 }

 .c-news-card-link:hover svg {
     transform: translateX(4px);
 }

 /* Scroll Animations */
 .c-news-card.reveal {
     opacity: 0;
     transform: translateY(40px);
 }

 .c-news-card.reveal.is-visible {
     opacity: 1;
     transform: translateY(0);
 }

 /* Responsive Design */
 @media (max-width: 900px) {
     .c-news-hero {
         padding: 80px 20px;
     }

     .c-news-section {
         padding: 60px 20px;
     }

     .c-news-grid {
         grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
         gap: 24px;
     }

     .c-news-card {
         padding: 24px;
     }
 }

 @media (max-width: 600px) {
     .c-news-hero {
         padding: 60px 20px;
     }

     .c-news-hero h1 {
         font-size: 2rem;
     }

     .c-news-hero p {
         font-size: 1rem;
     }

     .c-news-section {
         padding: 40px 16px;
     }

     .c-news-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .c-news-card-title {
         font-size: 1rem !important;
     }

     .c-news-card-excerpt {
         font-size: 0.8rem !important;
     }
 }

 /* footer  */

 @keyframes floatIn {
     0% {
         opacity: 0;
         transform: translateY(18px) scale(0.98);
     }

     100% {
         opacity: 1;
         transform: translateY(0) scale(1);
     }
 }

 @keyframes fadeSlide {
     from {
         opacity: 0;
         transform: translateY(28px);
     }

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

 .reveal {
     opacity: 0;
     transform: translateY(24px);
     transition: opacity 0.7s ease, transform 0.7s ease;
 }

 .reveal.is-visible {
     opacity: 1;
     transform: translateY(0);
 }

 footer.reveal {
     animation: fadeSlide 0.8s ease both;
 }

 .footer-grid>div {
     opacity: 0;
     transform: translateY(20px);
     transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
         transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 }

 .footer-grid>div.is-visible {
     opacity: 1;
     transform: translateY(0);
 }

 .footer-bottom {
     opacity: 0;
     transform: translateY(20px);
     transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
         transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 }

 .footer-bottom.is-visible {
     opacity: 1;
     transform: translateY(0);
 }

 .siliconcrib-link {
     color: inherit;
     transition: 0.3s;
 }

 .siliconcrib-link:hover {
     background: linear-gradient(to right, #ff00cc, #3333ff);
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
 }


 /* history ----------  */

 /* Social Icons */
 .wrapper {
     display: inline-flex;
     list-style: none;
     font-family: inherit;
     justify-content: center;
 }

 

 .wrapper .tooltip {
     position: absolute;
     top: 0;
     font-size: 10px;
     background: #ffffff;
     color: red;
     padding: 5px 8px;
     border-radius: 5px;
     box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
     opacity: 0;
     pointer-events: none;
     transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
 }

 .wrapper .tooltip::before {
     position: absolute;
     content: "";
     height: 8px;
     width: 8px;
     background: red;
     bottom: -3px;
     left: 50%;
     transform: translate(-50%) rotate(45deg);
     transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
 }

 .wrapper .icon:hover .tooltip {
     top: -45px;
     opacity: 1;
     visibility: visible;
     pointer-events: auto;
 }

 .wrapper .icon:hover span,
 .wrapper .icon:hover .tooltip {
     text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
 }

 .wrapper .facebook:hover,
 .wrapper .facebook:hover .tooltip,
 .wrapper .facebook:hover .tooltip::before {
     background: #1877F2;
     color: #ffffff;
 }

 .wrapper .instagram:hover,
 .wrapper .instagram:hover .tooltip,
 .wrapper .instagram:hover .tooltip::before {
     background: #E4405F;
     color: #ffffff;
 }



 .timeline-section.reveal {
     opacity: 1;
 }

 .timeline-section {
     margin-top: 40px;
 }

 @media (max-width: 900px) {
     .nav-links {
         display: none;
     }

     .representatives-grid {
         grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
     }
 }

 @media (max-width: 600px) {
     .hero {
         padding: 24px;
     }

     .pageI {
         padding: 24px 16px 60px;
     }

     .representatives-grid {
         grid-template-columns: 1fr;
     }

     h1 {
         font-size: 1.8rem;
     }

     h2 {
         font-size: 1.4rem;
     }

     .rep-card {
         padding: 24px;
     }
 }

 .representatives-grid {
     /* Grid properties removed for JS Masonry */
     width: 100%;
     animation: fadeSlide 0.8s ease both;
 }

 /* Responsive grid handled by JS */


 .rep-card {
     background: var(--surface);
     border-radius: var(--radius);
     padding: 32px;
     border: 1px solid var(--border);
     transition: all 0.3s ease;
     text-align: center;
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .rep-card .rep-bio {
     text-align: left;
     line-height: 1.8;
     font-size: 0.7rem;
 }

 .rep-card:hover {
     border-color: var(--primary);
     box-shadow: 0 12px 32px rgba(79, 70, 229, 0.15);
     transform: translateY(-4px);
 }

 .rep-card.reveal {
     opacity: 0;
     transform: translateY(30px);
     transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
         transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
         box-shadow 0.3s ease;
 }

 .rep-card.reveal.is-visible {
     opacity: 1;
     transform: translateY(0);
 }

 .year-label {
     font-size: 0.85rem;
     font-weight: 600;
     color: var(--muted);
     letter-spacing: 0.05em;
     text-transform: uppercase;
     margin-bottom: 12px;
 }

 .section-header {
     width: 100%;
     margin-top: 60px;
     margin-bottom: 40px;
     padding-bottom: 20px;
     border-bottom: 2px solid var(--primary);
     opacity: 0;
     transform: translateY(24px);
     transition: opacity 0.7s ease, transform 0.7s ease;
 }

 .section-header.is-visible {
     opacity: 1;
     transform: translateY(0);
 }

 .section-header h2 {
     font-size: 2rem;
     font-weight: 700;
     color: var(--text);
     margin: 0;
     text-align: center;
     letter-spacing: 0.02em;
 }

 .rep-name {
     font-size: 1.4rem;
     font-weight: 700;
     color: var(--text);
     margin: 0;
     word-wrap: break-word;
 }

 .rep-image {
     width: 6rem;
     height: 6rem;
     object-fit: cover;
     border-radius: 50%;
     margin: 0 auto 16px;
     display: block;
 }

 .rep-bio {
     font-size: 0.8rem;
     color: var(--muted);
     margin-top: 8px;
     line-height: 1.5;
     text-align: center;
 }

 .rep-title {
     color: var(--primary);
     font-weight: 600;
     font-size: 0.9rem;
     margin-top: 8px;
 }

 .timeline-section {
     margin-top: 40px;
 }

 .section-title {
     font-size: 1.6rem;
     font-weight: 700;
     margin: 40px 0 24px;
     color: var(--text);
     text-align: center;
 }


 .reveal {
     opacity: 0;
     transform: translateY(24px);
     transition: opacity 0.7s ease, transform 0.7s ease;
 }


 /* history ----------  */
