/* =========================
   RESET & BASE
========================= */
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: color .3s ease, background .3s ease, transform .3s ease, box-shadow .3s ease;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background: #000;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3 {
    font-family: "Google Sans", sans-serif;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 { margin-bottom: 15px; }

/* =========================
   LAYOUT & SECTIONS
========================= */
.section {
    width: 100%;
    padding: 100px 20px;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    margin-bottom: -40px;
    position: relative;
    min-height: 100vh;
}

.section + .section {
    margin-top: -60px;
}

.section:nth-child(1) { z-index: 7; }
.section:nth-child(2) { z-index: 6; }
.section:nth-child(3) { z-index: 5; }
.section:nth-child(4) { z-index: 4; }
.section:nth-child(5) { z-index: 3; }
.section:nth-child(6) { z-index: 2; }
.section:nth-child(7) { z-index: 1; }
.section-content {
    max-width: 1200px;
    margin: auto;
    color: #fff;
}

.half {
    max-width: 600px;
}

/* =========================
   HOME SECTION
========================= */
#home {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

#home h1 {
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1.1;
    font-weight: 500;
    max-width: 780px;
    margin-bottom: 20px;
    animation: heroText 1.2s cubic-bezier(.19,1,.22,1);
}

#home p {
    font-size: 20px;
    line-height: 1.7;
    max-width: 640px;
    animation: heroText 1.4s cubic-bezier(.19,1,.22,1);
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes heroText {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================
   NAVBAR
========================= */
.nav {
    position: absolute;
    top: 24px;
    left: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    animation: navDrop .9s ease forwards;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-logo {
    width: 46px;
    height: 46px;
    background: white;
    border-radius: 50%;
}

.brand-text {
    font-family: "Google Sans", sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: white;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width .35s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 999;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all .35s ease;
}

@keyframes navDrop {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================
   ABOUT SECTION
========================= */
#about {
    background: #fff;
    color: #000;
    padding: 120px 90px;
}

#about > h1 {
    font-size: 90px;
}

#about > p {
    max-width: 900px;
    font-size: 30px;
    color: #525252;
    line-height: 1.2;
    font-weight: 300;
}

/* =========================
   PROGRAM GRID
========================= */
.programs-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 80px 120px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 140px;
    padding: 100px 0;
}

.card {
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .4s ease, box-shadow .4s ease;
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
}

.card h3 {
    font-size: 24px;
}

.card p {
    font-size: 16px;
    line-height: 1.7;
}

.card .icon {
    transition: transform .6s ease;
}

.card:hover .icon {
    transform: rotate(-6deg) scale(1.15);
}

/* =========================
   CIRCUIT LINES
========================= */
.line {
    position: absolute;
    background: #111;
    transform-origin: center;
    transition: transform 1.2s cubic-bezier(.19,1,.22,1);
}

.line.vertical {
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%) scaleY(0);
}

.line.horizontal {
    height: 1px;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%) scaleX(0);
    transition-delay: 0.2s;
}

.line.active.vertical {
    transform: translateX(-50%) scaleY(1);
}

.line.active.horizontal {
    transform: translateY(-50%) scaleX(1);
}

.node {
    width: 10px;
    height: 10px;
    border: 2px solid #111;
    border-radius: 50%;
    background: #fff;
    position: absolute;
}

.node.top { top: -6px; left: 50%; transform: translateX(-50%); }
.node.bottom { bottom: -6px; left: 50%; transform: translateX(-50%); }
.node.left { left: -6px; top: 50%; transform: translateY(-50%); }
.node.right { right: -6px; top: 50%; transform: translateY(-50%); }

/* =========================
   ICONS
========================= */
.icon-1,
.icon-2,
.icon-3,
.icon-4 {
    font-size: 90px;
    line-height: 1;
    color: white;
    -webkit-text-stroke: 2px #066417;
}

/* =========================
   COURSES SECTION
========================= */
#courses {
    background: radial-gradient(
        circle at top left,
        #1f0f0f,
        #000 60%
    );
    color: #fff;
}

.indswiss-heading.dark {
    font-family: "Google Sans", sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 500;
    text-align: center;
    margin-bottom: 18px;
}

.indswiss-highlight {
    background: linear-gradient(135deg, #ef3838, #992111);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.indswiss-text.dark {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    color: #bfbfbf;
}

.indswiss-courses {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch; /* ensures all cards are same height */
}

.indswiss-course {
    position: relative;
    padding: 38px 32px;
    border-radius: 18px;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.01)
    );
    border: 1px solid rgba(255,255,255,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;

    /* Flex layout to push button to bottom */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.indswiss-course::before {
    content: "";
    position: absolute;
    top: 18px;
    right: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef3838, #992111);
}

.indswiss-course::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.12),
        transparent
    );
    transform: translateX(-120%);
}

.indswiss-course:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.indswiss-course:hover::after {
    transform: translateX(120%);
    transition: transform 1s ease;
}

.indswiss-course-name {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.indswiss-feature-text {
    font-size: 15.5px;
    line-height: 1.7;
    color: #cfcfcf;
}

.indswiss-image {
    display: block;
    margin: 40px auto 0;
    max-width: 100%;
    height: auto;
    width: 1000px;
    border-radius: 30px;
    animation: floatImage 6s ease-in-out infinite;
}

.indswiss-btn {
    display: block;
    width: fit-content;
    margin: 0 auto; /* remove big top margin */
    padding: 16px 36px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
    background: linear-gradient(135deg, #ef3838, #992111);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.indswiss-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.25);
    transform: translateX(-120%);
}

.indswiss-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(239, 56, 56, 0.35);
}

.indswiss-btn:hover::after {
    transform: translateX(120%);
    transition: transform .7s ease;
}

@keyframes floatImage {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}
.indswiss-info-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: black;
  border: 2px solid red;
  border-radius: 100px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 20px;
}
.indswiss-info-btn .icon {
  color: red;
  font-size: 18px;
  display: inline-block;
  transition: opacity 0.3s ease;
}
.indswiss-info-btn .text {
  position: absolute;
  opacity: 0;
  color: black;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
  transition: opacity 0.3s ease;
}
.indswiss-info-btn:hover {
  background: linear-gradient(135deg, #ef3838, #992111);
  width: 160px;
  border: none;
}
.indswiss-info-btn:hover .icon {
  opacity: 0;
}
.indswiss-info-btn:hover .text {
  opacity: 1;
}
/* =========================
   FACILITIES SECTION
========================= */
#facilities {
    position: relative;
    background: #0d0d0f !important;
    color: #fff;
    overflow: hidden;
    padding: 0px 0px 0px ;
    isolation: isolate;
    margin: 0 !important;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    z-index: 10;
}

#facilities::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(239,56,56,0.35),
            transparent 60%
        ),
        linear-gradient(
            rgba(255,255,255,0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.04) 1px,
            transparent 1px
        );
    background-size:
        100% 100%,
        64px 64px,
        64px 64px;
    pointer-events: none;
    z-index: -1;
    animation: bgDrift 18s ease-in-out infinite alternate;
}

#facilities::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 55%,
        #0d0d0f 100%
    );
    pointer-events: none;
    z-index: 0;
}

#facilities .indswiss-heading {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    font-size: clamp(56px, 7vw, 96px);
    font-weight: 600;
    line-height: 1.05;
}

#facilities .indswiss-highlight {
    -webkit-text-stroke: 1px #ef3838;
    color: transparent;
}

#facilities .indswiss-text {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 40px auto 140px;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,0.75);
}

.indswiss-features {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 140px;
}

.indswiss-feature.light {
    position: relative;
    padding-left: 120px;
    cursor: default;
}

.indswiss-feature.light::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent,
        #ef3838,
        transparent
    );
    transform: scaleY(0);
    transform-origin: top;
}

.indswiss-feature.light::after {
    content: attr(data-step);
    position: absolute;
    left: -20px;
    top: -40px;
    font-size: 200px;
    font-weight: 700;
    color: rgba(255,255,255,0.04);
    z-index: -1;
}

.indswiss-feature-heading.light {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 16px;
}

.reveal-facility {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1.4s cubic-bezier(.19,1,.22,1),
                transform 1.4s cubic-bezier(.19,1,.22,1);
}

.reveal-facility.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-facility.active::before {
    transform: scaleY(1);
    transition: transform 1.8s cubic-bezier(.19,1,.22,1);
}

.indswiss-feature.light:hover::before {
    filter:
        drop-shadow(0 0 12px rgba(239,56,56,0.9))
        drop-shadow(0 0 28px rgba(239,56,56,0.7))
        drop-shadow(0 0 60px rgba(239,56,56,0.45));
}

@keyframes bgDrift {
    from { background-position: 85% 20%, 0 0, 0 0; }
    to   { background-position: 75% 30%, 30px 30px, 30px 30px; }
}

/* =========================
   FOOTER
========================= */
.footer {
    background: radial-gradient(
        circle at top left,
        #2b0a0a,
        #120000 60%
    );
    color: #e6e6e6;
    padding: 100px 20px 40px;
    position: relative;
    overflow: hidden;
}

.footer .container {
    max-width: 1300px;
    margin: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-content > div {
    transition: transform .4s ease;
}

.footer-content > div:hover {
    transform: translateY(-6px);
}

.footer-logo .logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-bottom: 18px;
}

.footer-logo .logo-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef3838, #992111);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.footer-logo .logo-main {
    font-family: "Google Sans", sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
}

.footer-logo .logo-tag {
    display: block;
    font-size: 13px;
    color: #ffb3b3;
}

.footer-logo p {
    font-size: 15px;
    line-height: 1.7;
    color: #d0d0d0;
    max-width: 380px;
}

.footer h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 18px;
    color: #ff9a9a;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ef3838;
}

.footer-contact p {
    font-size: 15px;
    margin-bottom: 14px;
    color: #d0d0d0;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact i {
    color: #ef3838;
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #ef3838, #992111);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: #bfbfbf;
}

.footer-bottom span {
    color: #ef3838;
}

/* =========================
   REVEAL ANIMATIONS
========================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(.19,1,.22,1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-zoom { transform: scale(.92); }

.reveal-left.active,
.reveal-right.active,
.reveal-zoom.active {
    transform: none;
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .indswiss-courses {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .indswiss-course {
        padding: 32px 26px;
    }
    
    .indswiss-text.dark {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 20px;
        min-height: auto;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }
    
    .half {
        max-width: 100%;
    }
    
    .nav {
        left: 20px;
        right: 20px;
    }
    
    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: rgba(0,0,0,0.15);
        backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 16px;
        padding: 20px 24px;
        border-radius: 14px;
        display: none;
    }
    
    .nav-links a {
        font-size: 16px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links.active ~ .hamburger span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }
    
    .nav-links.active ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-links.active ~ .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }
    
    .brand-text {
        font-size: 20px;
    }
    
    #home h1 {
        font-size: 38px;
    }
    
    #home p {
        font-size: 17px;
    }
    
    #about {
        padding: 80px 20px;
    }
    
    #about > h1 {
        font-size: 48px;
    }
    
    #about > p {
        font-size: 18px;
        max-width: 100%;
        line-height: 1.6;
    }
    
    .line {
        display: none;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
    }
    
    .card {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
        padding-bottom: 32px;
        border-bottom: 1px solid #eee;
    }
    
    .card:last-child {
        border-bottom: none;
    }
    
    .icon-1,
    .icon-2,
    .icon-3,
    .icon-4 {
        font-size: 64px;
    }
    
    #about > h1 {
        font-size: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo p {
        max-width: 100%;
    }
}

/* =========================
   UTILITIES
========================= */
a {
    text-decoration: none;
}

.section + #facilities {
    margin-top: 0 !important;
}
/* FIX: prevent footer overlap */
#facilities {
    margin-bottom: 0 !important;
}

.footer {
    position: relative;
    z-index: 20;
    margin-top: 0;
}
.faculty-section {
  padding: 90px 6%;
  background: #f5f6fa;
  border-radius: 32px;
}

.faculty-header {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.faculty-tag {
  color: #009105;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}

.faculty-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0f1222;
}

.faculty-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Grid */
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

/* Card */
.faculty-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.faculty-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

.faculty-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Glass Info Panel */
.faculty-info {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #fff;
}

.faculty-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.faculty-info span {
  font-size: 13px;
  opacity: 0.85;
  display: block;
  margin-bottom: 8px;
}

.faculty-info p {
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .faculty-intro {
        font-size: 16px;
        margin-bottom: 50px;
    }
    .faculty-card {
        padding: 20px 15px;
        min-height: 300px;
    }
}
.scene {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #0b0f14;
    cursor: none; /* optional cinematic feel */
}

.layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
    transition: transform 0.08s ease-out;
}

/* Depth illusion */
.building {
    width: 60%;
    z-index: 2;
}

.tree.left {
    width: 35%;
    left: 30%;
    z-index: 3;
}

.tree.right {
    width: 35%;
    left: 70%;
    z-index: 3;
}

.logofooter{
    box-shadow: white 20px;
}
/* =========================
   INDSWISS CONTACT SECTION
========================= */

.contact-indswiss {
    position: relative;
    background: #f7faf8;
    color: #0f1222;
    overflow: hidden;
}

/* Gradient + grid */
.contact-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, #e9fdf0, #ffffff 60%),
        linear-gradient(
            rgba(0,0,0,0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0,0,0,0.04) 1px,
            transparent 1px
        );
    background-size:
        100% 100%,
        80px 80px,
        80px 80px;
    z-index: 0;
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #0a9b3f;
    margin-bottom: 16px;
}

.contact-text h2 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 22px;
}

.green-highlight {
    background: linear-gradient(135deg, #0a9b3f, #39d98a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #4b4f55;
    max-width: 520px;
}

/* Form */
.contact-form {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.input-group {
    margin-bottom: 22px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    border: none;
    outline: none;
    padding: 16px 18px;
    border-radius: 14px;
    font-size: 15px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px #e4e7ec;
    transition: box-shadow 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    box-shadow: inset 0 0 0 2px #0a9b3f;
}

/* Button */
.contact-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #0a9b3f, #39d98a);
    transition: transform .3s ease, box-shadow .3s ease;
}

.contact-btn span {
    font-size: 18px;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(10,155,63,0.35);
}

/* Stats */
.contact-stats {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 80px auto 0;
    display: flex;
    gap: 80px;
}

.contact-stats strong {
    font-size: 42px;
    font-weight: 600;
    color: #0a9b3f;
}

.contact-stats span {
    display: block;
    font-size: 14px;
    color: #555;
    margin-top: 6px;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form {
        padding: 32px;
    }

    .contact-stats {
        flex-direction: column;
        gap: 30px;
    }
}

.reveal {
    opacity: 1 !important;
    transform: none !important;
}
.contact-bg {
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        radial-gradient(
            circle at bottom left,
            rgba(90, 200, 140, 0.14),
            transparent 35%
        ),
        radial-gradient(
            circle at top right,
            rgba(160, 230, 190, 0.22),
            transparent 40%
        ),
        linear-gradient(
            180deg,
            #f7fff9 0%,
            #ffffff 100%
        );
}

