 :root {
     --primary: #2f4156;
     --secondary: #567cbd;
     --background-color: #f5efeb;
     --heading-color: #090f15;
     --text-color: #262e36;
     --light: #ffffff;
     --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     --nav-padding: clamp(0.35rem, 0.8vw, 0.6rem);
     --nav-gap: clamp(0.75rem, 1.5vw, 1.2rem);
     --font-base: clamp(0.9rem, 1vw, 1rem);
     --font-brand: clamp(1.25rem, 2vw, 1.5rem);
 }

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

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     line-height: 1.6;
     color: var(--text-color);
     background: linear-gradient(135deg, var(--background-color) 0%, var(--background-color) 100%);
 }

 .year-end-section {
     max-width: 1200px;
     margin: 0 auto;
     padding: 4rem 2rem;

 }

 .hero-header {
     margin-top: 50px;
     text-align: center;
     margin-bottom: 4rem;
     position: relative;
 }


 .hero-header h1 {
     font-size: clamp(2rem, 4vw, 3rem);
     color: var(--primary);
     margin-bottom: 1rem;
     font-weight: 700;
     letter-spacing: -0.5px;
 }

 .hero-icon {
     font-size: 4rem;
     color: var(--secondary);
     margin-bottom: 1.5rem;
     opacity: 0.9;
 }

 .content-card {
     background: var(--light);
     border-radius: 16px;
     padding: 3rem;
     box-shadow: var(--shadow);
     margin-bottom: 3rem;
     position: relative;
     overflow: hidden;
 }

 .content-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 5px;
     height: 100%;
     background: linear-gradient(180deg, var(--primary), var(--secondary));
 }

 .content-card p {
     font-size: var(--font-base);
     line-height: 1.8;
     color: var(--text-color);
     text-align: justify;
 }

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

     .content-card {
         padding: 2rem 1.5rem;
     }
 }


 /* Section */
 #imageScroll {
     width: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
     padding-bottom: 50px;
 }

 /* Image Wrapper */
 #imageScroll .image-wrapper {
     width: 80%;
     max-width: 900px;
     overflow: hidden;
     border-radius: 20px;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
     transition: transform 0.4s ease, box-shadow 0.4s ease;
 }

 /* Image */
 #imageScroll img {
     width: 100%;
     height: auto;
     display: block;
     transition: transform 0.6s ease;
 }

 /* Hover Effect */
 #imageScroll .image-wrapper:hover {
     transform: translateY(-8px);
     box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
 }

 #imageScroll .image-wrapper:hover img {
     transform: scale(1.05);
 }

 /* Responsive */
 @media (max-width: 768px) {
     #imageScroll {
         padding: 50px 0;
     }

     #imageScroll .image-wrapper {
         width: 92%;
         border-radius: 14px;
     }
 }






 /* //contact us page css */

 .form-container {
     background: var(--light);
     border-radius: 16px;
     box-shadow: var(--shadow);
     max-width: 600px;
     width: 100%;
     margin: 0 auto;
     margin: 8rem auto 4rem auto;
     padding: clamp(2rem, 5vw, 3rem);
 }

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

 .form-header h2 {
     color: var(--primary);
     font-size: var(--font-brand);
     font-weight: 700;
     margin-bottom: 0.5rem;
 }

 .form-header p {
     color: var(--text-color);
     font-size: var(--font-base);
 }

 .form-group {
     margin-bottom: 1.5rem;
 }

 .form-label {
     display: block;
     color: var(--text-color);
     font-size: var(--font-base);
     font-weight: 600;
     margin-bottom: 0.5rem;
 }

 .form-control {
     width: 100%;
     padding: 0.875rem 1rem;
     font-size: var(--font-base);
     border: 2px solid #e9ecef;
     border-radius: 8px;
     transition: all 0.3s ease;
     background: #f8f9fa;
 }

 .form-control:focus {
     outline: none;
     border-color: var(--primary);
     background: var(--light);
     box-shadow: 0 0 0 3px rgba(15, 61, 50, 0.1);
 }

 .form-control.error {
     border-color: #dc3545;
 }

 .error-message {
     color: #dc3545;
     font-size: 0.875rem;
     margin-top: 0.25rem;
     display: none;
 }

 .error-message.show {
     display: block;
 }

 textarea.form-control {
     resize: vertical;
     min-height: 120px;
 }

 .submit-btn {
     width: 100%;
     padding: 1rem;
     font-size: var(--font-base);
     font-weight: 600;
     color: var(--light);
     background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
     border: none;
     border-radius: 8px;
     cursor: pointer;
     transition: all 0.3s ease;
     margin-top: 1rem;
 }

 .submit-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(15, 61, 50, 0.3);
 }

 .submit-btn:active {
     transform: translateY(0);
 }

 .submit-btn:disabled {
     opacity: 0.6;
     cursor: not-allowed;
 }

 .success-message {
     display: none;
     padding: 1rem;
     background: #d4edda;
     border: 1px solid #c3e6cb;
     border-radius: 8px;
     color: #155724;
     margin-bottom: 1rem;
     text-align: center;
 }

 .success-message.show {
     display: block;
 }

 @media (max-width: 576px) {
     .form-container {
         padding: 1.5rem;
     }
 }









 .contact-section {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 clamp(1rem, 4vw, 2rem);
 }

 .contact-cards {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: clamp(1.5rem, 3vw, 2rem);
     margin-bottom: clamp(3rem, 6vw, 5rem);
 }

 .contact-card {
     background: var(--light);
     border-radius: 20px;
     padding: clamp(2rem, 4vw, 2.5rem);
     position: relative;
     overflow: hidden;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     box-shadow: var(--shadow);
 }

 .contact-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: linear-gradient(90deg, var(--primary), var(--secondary));
     transform: scaleX(0);
     transition: transform 0.4s ease;
     transform-origin: left;
 }

 .contact-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
 }

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

 .icon-wrapper {
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, var(--primary), var(--secondary));
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1.5rem;
     box-shadow: 0 8px 16px rgba(15, 61, 50, 0.2);
 }

 .icon-wrapper svg {
     width: 28px;
     height: 28px;
     stroke: var(--light);
     fill: none;
     stroke-width: 2;
     stroke-linecap: round;
     stroke-linejoin: round;
 }

 .contact-card h3 {
     font-size: var(--font-brand);
     color: var(--text-color);
     font-weight: 600;
     margin-bottom: 1rem;
     letter-spacing: -0.02em;
 }

 .contact-info {
     display: flex;
     flex-direction: column;
     gap: 0.75rem;
 }

 .contact-info a {
     color: var(--primary);
     text-decoration: none;
     font-size: var(--font-base);
     transition: all 0.3s ease;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     font-weight: 500;
 }

 .contact-info a:hover {
     color: var(--secondary);
     transform: translateX(4px);
 }

 .newsletter-section {
     background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
     border-radius: 24px;
     padding: clamp(3rem, 6vw, 4rem) clamp(2rem, 4vw, 3rem);
     text-align: center;
     position: relative;
     overflow: hidden;
     box-shadow: 0 20px 60px rgba(15, 61, 50, 0.3);
     margin-bottom: 50px;
 }

 .newsletter-section::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -20%;
     width: 400px;
     height: 400px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 50%;
     pointer-events: none;
 }

 .newsletter-section::after {
     content: '';
     position: absolute;
     bottom: -30%;
     left: -10%;
     width: 300px;
     height: 300px;
     background: rgba(255, 255, 255, 0.03);
     border-radius: 50%;
     pointer-events: none;
 }

 .newsletter-content {
     position: relative;
     z-index: 1;
     max-width: 600px;
     margin: 0 auto;
 }

 .newsletter-section h2 {
     font-size: clamp(1.75rem, 4vw, 2.5rem);
     color: var(--light);
     font-weight: 700;
     margin-bottom: 1rem;
     letter-spacing: -0.02em;
     line-height: 1.2;
 }

 .newsletter-section p {
     color: var(--light);
     font-size: var(--font-base);
     margin-bottom: 2rem;
     line-height: 1.6;
 }

 .newsletter-form {
     display: flex;
     gap: 1rem;
     max-width: 500px;
     margin: 0 auto;
     flex-wrap: wrap;
 }

 .newsletter-form input {
     flex: 1;
     min-width: 250px;
     padding: 1rem 1.5rem;
     border: 2px solid rgba(255, 255, 255, 0.2);
     border-radius: 12px;
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     color: var(--light);
     font-size: var(--font-base);
     transition: all 0.3s ease;
 }

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

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

 .newsletter-form button {
     padding: 1rem 2.5rem;
     background: var(--light);
     color: var(--primary);
     border: none;
     border-radius: 12px;
     font-size: var(--font-base);
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     white-space: nowrap;
 }

 .newsletter-form button:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
     background: rgba(255, 255, 255, 0.95);
 }

 .newsletter-form button:active {
     transform: translateY(0);
 }

 @media (max-width: 768px) {
     .contact-cards {
         grid-template-columns: 1fr;
     }

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

     .newsletter-form input,
     .newsletter-form button {
         width: 100%;
         min-width: unset;
     }
 }

 @media (max-width: 480px) {
     .contact-card {
         padding: 1.5rem;
     }

     .icon-wrapper {
         width: 50px;
         height: 50px;
     }

     .icon-wrapper svg {
         width: 24px;
         height: 24px;
     }
 }