* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    color: #fff;
    background-color: #000;
}

.hero {
    height: 120vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    
}

.bg-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
        transition: opacity 1.5s ease-in-out, transform 10s ease-in-out;
    
    /* Initial zoomed state */
    transform: scale(1.5);
      
}

.bg-slide.active {
    opacity: 1;
     
       transform: scale(2);
}

.bg-slide-1 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://res.cloudinary.com/dwn1xoujd/image/upload/v1756932727/photo-1478147427282-58a87a120781_ytneqn.jpg');
}
.bg-slide-2 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1518509562904-e7ef99cdcc86?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1074&q=80');
    
}

.bg-slide-3 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://res.cloudinary.com/dwn1xoujd/image/upload/v1756932723/photo-1529070538774-1843cb3265df_u6z3tm.jpg');
}


.header {
    
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    background-color: #000000c2;
    position: fixed;
    backdrop-filter: blur(10px);
}
/* NAV   */ 
.tuc-navbar ul {
  list-style: none;
  display: flex;
  justify-content: center; /* center horizontally */
  gap: 40px; /* space between items */
  margin: 0;
  padding: 0;
}

.tuc-navbar a {
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #fff;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.tuc-navbar a:hover {
  color: #e63946; /* red hover color */
}

.logo {
    display: flex;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.5s;
}

.logo-icon {
    height: 42px;      /* replaces font-size */
    width: auto;
    margin-right: 10px;
    animation: rotate 8s linear infinite;
}

.logo-text {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    color: #fff;
}

/* Improved Hamburger Menu with Glassy Container */
.hamburger-container {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.8s;
    cursor: pointer;
    margin-right: 12px;
}

.hamburger-menu {
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: transparent;
    border: none;
}

.hamburger-line {
    width: 15px;
    height: 1.6px;
    background-color: #fff;
    margin: 2px 0;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hamburger-container.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-container.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-container.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero-content {
    max-width: 900px;
    padding: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    
}

/* Reordered content structure */
#welcome-text {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 5px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: rgba(255, 217, 0, 0.952);
    opacity: 0;
    min-height: 30px;
    padding: 10px 0;
    order: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    background:transparent;
    border: 0.6px solid white;
    padding: 8px 15px;
    border-radius: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.1s;
    order: 2;
}

.badge i {
    margin-right: 8px;
    color: #FFD700;
}

.badge-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: white;
}

/* FIXED: Main heading responsive styles */
h1 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.0rem, 2.5vw, 3rem);
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    padding: 20px 0;
    order: 3;
    text-align: center;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.typed-cursor {
    font-size: inherit;
    opacity: 1;
    animation: blink 0.7s infinite;
    color: #c55151be;
    display: inline-block;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 3.5s;
    order: 4;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cta-button.primary {
    background: transparent;
    color: white;
    border: 1px solid white;
    backdrop-filter: blur(10px);
}

.cta-button.primary:hover {
    background: #b9a5a5;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Enhanced Menu Styles */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    overflow-y: auto;
    padding: 40px;
    box-sizing: border-box;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    flex-wrap: wrap;
}

.nav-overlay.active .menu-container {
    opacity: 1;
    transform: translateY(0);
}

/* LEFT SIDE BIG MENU - FIXED */
.left-menu {
    flex: 0 0 280px;
    margin-right: 40px;
}

.left-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.left-menu li {
    font-family: 'Anton', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: left;
}

.left-menu li a {
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
}

/* Modern hover effect replacement */
.left-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: #e63946;
    transition: width 0.3s ease;
}

.left-menu li a:hover::after {
    width: 100%;
}

.left-menu li:first-child a {
    color: white;
}

.left-menu li a:hover {
    color: #e63946;
}




/* Highlight active nav link */
.tuc-navbar ul li a.active,
.nav-overlay ul li a.active,
.tuc-footer-left-menu ul li a.active {
  color:#e63946;              /* your highlight color */
  font-weight: 700;            /* make it bold */
  position: relative;
}

/* optional underline effect */
.tuc-navbar ul li a.active::after,
.nav-overlay ul li a.active::after,
.tuc-footer-left-menu ul li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background: #f83939b2;
  border-radius: 2px;
}






/* RIGHT SIDE COLUMNS */
.right-columns {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-content: start;
}

.column h4 {
    margin: 0 0 15px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #aaa;
    text-align: left;
}

.column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.column li {
    margin-bottom: 12px;
    text-align: left;
}

.column a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
}

/* Modern hover effect for column links */
.column a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: #e63946;
    transition: width 0.3s ease;
}

.column a:hover::after {
    width: 100%;
}

.column a:hover {
    color: #e63946;
}

/* SOCIAL ICONS */
.socials {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.socials a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.socials a:hover {
    background: #e63946;
    transform: translateY(-3px);
}

/* Improved Close Button with Glassy Container */
.close-btn-container {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 101;
    cursor: pointer;
}

.close-btn {
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.close-btn:hover {
    color: #e63946;
    transform: rotate(90deg);
}

/* FOOTER COPYRIGHT */
.menu-footer {
    position: absolute;
    bottom: 0px;
    left: 40px;
    font-size: 13px;
    color: #777;
}

/* Performance optimizations */
.hero-bg {
    will-change: opacity;
}

/* Remove gold outline from buttons */
.hamburger-container:focus,
.close-btn:focus {
    outline: none;
}

/* Improved accessibility for focus states */
a:focus, .cta-button:focus {
    outline: 2px solid #ee18189c;
    outline-offset: 2px;
}

/* Touch device improvements */
@media (hover: none) {
    .cta-button:hover {
        transform: none;
        box-shadow: none;
    }
    
    .left-menu li a:hover::after {
        width: 0;
    }
    
    .column a:hover::after {
        width: 0;
    }
    
    .socials a:hover {
        transform: none;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* RESPONSIVE STYLES - IMPROVED */
@media (max-width: 1200px) {
    .right-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .left-menu {
        flex: 1 0 240px;
        margin-right: 30px;
    }
    
    .left-menu li {
        font-size: 48px;
    }
}

@media (max-width: 1024px) {
    .menu-container {
        flex-direction: column;
    }
    
    .left-menu {
        flex: unset;
        margin-bottom: 40px;
        margin-right: 0;
        width: 100%;
    }
    
    .left-menu ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 30px;
    }
    
    .left-menu li {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 0;
    }
    
    .right-columns {
        grid-template-columns: repeat(2, 1fr);
        padding-left: 0;
        gap: 30px;
        width: 100%;
    }
    
    .menu-footer {
        position: static;
        margin-top: 40px;
        text-align: center;
        width: 100%;
        left: 0;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px;
    }
    
    #welcome-text {
        font-size: 16px;
        letter-spacing: 3px;
        min-height: 24px;
        padding: 8px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 250px;
    }
    
    .nav-overlay {
        padding: 20px;
        align-items: flex-start;
    }
    
    .menu-container {
        margin-top: 60px;
        margin-bottom: 40px;
    }
    
    .left-menu li {
        font-size: 32px;
    }
    
    .left-menu ul {
        gap: 10px 20px;
    }
    
    /* MOBILE MENU LAYOUT - ALL COLUMNS VISIBLE */
    .right-columns {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
    }
    
    /* Show all columns on mobile */
    .right-columns .column:nth-child(3),
    .right-columns .column:nth-child(4) {
        display: block;
    }
    
    /* Adjust spacing for mobile menu */
    .right-columns .column h4 {
        font-size: 16px;
        margin-bottom: 20px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .right-columns .column ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .right-columns .column li {
        margin-bottom: 0;
    }
    
    .close-btn-container {
        top: 20px;
        right: 20px;
        position: fixed;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-icon {
        font-size: 28px;
    }
    
    .menu-footer {
        margin-top: 30px;
        position: relative;
        left: 0;
        text-align: center;
    }
    
    .hamburger-container {
        width: 45px;
        height: 45px;
    }
    
    .hamburger-line {
        width: 20px;
    }
}

@media (max-width: 600px) {
    .left-menu ul {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }
    
    .left-menu li {
        font-size: 28px;
    }
    
    #welcome-text {
        font-size: 14px;
        letter-spacing: 2px;
        min-height: 21px;
        padding: 5px 0;
        margin-bottom: 10px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .badge {
        margin-bottom: 20px;
        padding: 6px 12px;
    }
    
    .badge-text {
        font-size: 12px;
    }
    
    .column h4 {
        font-size: 15px;
    }
    
    .column a {
        font-size: 14px;
    }
    
    .menu-footer {
        font-size: 12px;
    }
    
    .close-btn-container {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .close-btn {
        font-size: 20px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .hero-content {
        padding: 10px;
    }
    
    .nav-overlay {
        padding: 15px;
    }
    
    .right-columns {
        gap: 25px;
    }
    
    .hamburger-container {
        width: 40px;
        height: 40px;
    }
    
    /* Fine-tune mobile menu spacing */
    .right-columns .column h4 {
        margin-bottom: 15px;
    }
    
    .right-columns .column ul {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .right-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Add visual separation between sections */
    .right-columns .column {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }
    
    .right-columns .column:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 400px) {
    .logo-text {
        font-size: 16px;
    }
    
    .cta-button {
        width: 220px;
    }
    
    .left-menu li {
        font-size: 24px;
    }
    
    .hamburger-container {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
    
    .hamburger-line {
        width: 18px;
        height: 2px;
        margin: 2.5px 0;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .logo-icon {
        animation: none;
    }
    
    .bg-slide {
        transition: none;
    }
}

   /* ==== SECTION FADE IN ANIMATION === */
.section-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


  /* ===== TUC Section Styles ===== */
        .tuc-section {
            background: #fff;
            padding: clamp(40px, 5vw, 60px) clamp(15px, 4vw, 20px);
            font-family: 'Poppins', sans-serif;
            margin: 0 auto;
        }

        .tuc-badge {
            display: inline-block;
            background: #f5f5f5;
            padding: 6px 14px;
            border-radius: 999px;
            font-size: clamp(10px, 2vw, 11px);
            font-weight: 600;
            margin-bottom: 20px;
            color: #000;
            animation: tuc-badgeWobble 6s ease-in-out infinite;
        }
        
        @keyframes tuc-badgeWobble {
            0%,100% { transform: rotate(0); }
            20% { transform: rotate(-4deg); }
            40% { transform: rotate(3deg); }
            60% { transform: rotate(-2deg); }
            80% { transform: rotate(1deg); }
        }

        .tuc-title {
            font-family: 'Anton', sans-serif;
            font-size: clamp(2rem, 8vw, 62px);
            font-weight: 500;
            text-transform: uppercase;
            margin: 6px 0;
            color: #000;
            line-height: 1.2;
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            opacity: 1;
            min-height: 1.2em;
            text-align: left; /* Ensures title stays left-aligned */
        }

        .tuc-subtext {
            font-size: clamp(14px, 2.5vw, 16px);
            color: #0e0d0dcc;
            margin: 10px 0 30px;
            max-width: 520px;
            line-height: 1.6;
        }
        
        .tuc-subtext span {
            opacity: 0;
            transform: translateY(20px);
            filter: blur(6px);
            display: inline-block;
            margin-right: 6px;
        }

        .tuc-buttons { 
            display: flex; 
            gap: 15px; 
            margin: 20px 0; 
        }
        
        .tuc-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            background: #111;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: .3s;
        }
        
        .tuc-btn:hover { 
            background: #ff4747; 
        }
        
        .tuc-btn svg { 
            width: 22px;
            height: 22px;
            stroke: #fff;
            fill: none; 
        }

        .tuc-carousel-container {
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            display: flex;
            padding-top: 20px;
            margin: 0 -10px;
        }
        
        .tuc-carousel-container::-webkit-scrollbar { 
            display: none; 
        }
        
        .tuc-carousel-track {
            display: flex;
            gap: 20px;
            padding: 0 10px;
        }

        .tuc-card {
            flex: 0 0 auto;
            width: min(410px, 85vw);
            height: min(420px, 90vw);
            border-radius: 2px;
            overflow: hidden;
            position: relative;
            scroll-snap-align: start;
            cursor: pointer;
            display: flex;
        }
        
        .tuc-card img { 
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .5s; 
        }
        
        .tuc-card:hover img { 
            transform: scale(1.05); 
        }

        .tuc-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: .4s ease;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 35%, rgba(0,0,0,.7) 100%);
        }
        
        .tuc-card:hover .tuc-overlay,
        .tuc-card.active .tuc-overlay {
            opacity: 1;
            transform: translateY(0);
            background: linear-gradient(135deg, rgba(12, 9, 9, 0.322), rgba(0,0,0,.85));
        }
        
        .tuc-overlay h3 {
            font-size: clamp(12px, 2.5vw, 13px);
            text-transform: uppercase;
            margin: 0 0 6px;
            color: #fff;
        }
        
        .tuc-overlay h2 {
            font-size: clamp(20px, 5vw, 26px);
            margin: 0 0 12px;
            color: #fff;
            font-family: 'Anton', sans-serif;
        }

        .tuc-cta {
            align-self: flex-start;
            background: #fff;
            color: #111;
            padding: 10px 14px;
            border-Radius: 50px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: .3s;
        }
        
        .tuc-cta:hover {
            background: #ff4747;
            color: #fff;
        }

        /* Responsive improvements */
        @media (max-width: 900px) {
            .tuc-carousel-track {
                gap: 15px;
            }
            
            .tuc-card {
                width: min(350px, 80vw);
                height: min(380px, 85vw);
            }
        }
        
        @media (max-width: 768px) {
            .tuc-title {
                font-size: clamp(1.8rem, 7vw, 32px);
                white-space: normal;
                border-right: none;
                /* Removed text-align: center to keep it left-aligned */
            }
            
            .tuc-card {
                width: min(300px, 75vw);
                height: min(340px, 80vw);
            }
            
            .tuc-overlay {
                padding: 15px;
            }
            
            .tuc-buttons {
                justify-content: flex-start; /* Changed from center to flex-start */
            }
        }
        
        @media (max-width: 480px) {
            .tuc-section {
                padding: 30px 15px;
            }
            
            .tuc-title {
                font-size: clamp(1.6rem, 6.5vw, 28px);
            }
            
            .tuc-card {
                width: min(280px, 70vw);
                height: min(300px, 75vw);
            }
            
            .tuc-overlay {
                padding: 12px;
            }
            
            .tuc-overlay h2 {
                font-size: 18px;
            }
            
            .tuc-cta {
                padding: 8px 12px;
                font-size: 12px;
            }
            
            .tuc-buttons {
                margin: 15px 0;
            }
        }

        /* Animation for text elements */
        @keyframes tucLetterFade {
            to { 
                opacity: 1; 
                transform: translateY(0);
                filter: blur(0);
            }
        }
        
        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }
        
        @keyframes blink {
            50% { border-color: transparent; }
        }
        
        /* Animation classes */
        .typing-animation {
            animation: typing 3.5s steps(40, end), blink 0.75s step-end infinite;
            overflow: hidden;
            white-space: nowrap;
        }


/* happening section */
.happening-section {
  background: #000;
  color: #fff;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.happening-section .text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 50px;
  font-weight: 900;
  font-size: clamp(50px, 12vw, 150px);
}

.happening-section .letter {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: cover;
  background-position: center;
  display: inline-block;
  animation: zoomBg 3s ease-in-out infinite alternate;
}

@keyframes zoomBg {
  from { background-size: 100%; }
  to   { background-size: 130%; }
}

/* Cards */
.happening-section .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.happening-section .cards.show {
  opacity: 1;
  transform: translateY(0);
}



/* Mobile: 1 card per row */
@media (max-width: 768px) {
  .happening-section .cards {
    grid-template-columns: 1fr;
  }
}

/* Desktop: 2 cards per row */
@media (min-width: 769px) {
  .happening-section .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}


.happening-section .card {
  background: #111;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.happening-section .card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.8);
  content: 'events';
}

.happening-section .card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.happening-section .card:hover img {
  transform: scale(1.1);
}


/* happening at tuc section*/
/* Animate only the HAPPENING text (no global selectors) */
[data-hat-text]{
  /* don't change layout — only opacity/translate for reveal */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1200ms cubic-bezier(.2,.9,.2,1), transform 1200ms cubic-bezier(.2,.9,.2,1);
  will-change: opacity, transform;
  /* keep pointer-events and display untouched so no layout side-effects */
  transition-delay: 1s; /* starts after 0.3 seconds */

}

[data-hat-text].hat-text-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-hat-text] {
    transition: none;
    transform: none;
    opacity: 1;
  }
}




/* Visit tuc section*/
.tuc-campuses-section {
  position: relative;
  background: 
    linear-gradient(135deg, rgba(231, 76, 60, 0.7), rgba(0, 0, 0, 0.842)), 
    url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f') no-repeat center center/cover;
  padding: 50px 20px;
  text-align: center;
  color: #fff;
  max-width: 100%;
  height: 70vh;
  overflow: hidden;
}

.tuc-campuses-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6); /* dark overlay for text readability */
  z-index: 1;
}

.tuc-campuses-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

/* === existing styles below === */
.tuc-campuses-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,26,26,0.8);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}

.tuc-campuses-badge img {
  width: 40px;
  height: 40px;
}

.tuc-campuses-headline {
   font-family: 'Anton', sans-serif;
  margin: 30px 0 10px;
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.tuc-campuses-highlight {
  color: #e74c3c;
  font-weight: 900;
  font-size: clamp(20px, 4vw, 28px);
  margin-bottom: 20px;
}

.tuc-campuses-subtext {
  font-size: 18px;
  font-weight: 400;
  margin: 20px 0;
  color: #ccc;
}

.tuc-campuses-button {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tuc-campuses-button:hover {
  background: #fff;
  color: #000;
}


/* Counselling Section*/
/* ==== Counseling Section ==== */
.counseling-section {
  background: linear-gradient(rgba(11, 11, 44, 0.9), rgba(11, 11, 44, 0.719)),
              url('https://images.unsplash.com/photo-1508780709619-79562169bc64?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  padding: 80px 20px ;
  text-align: left;
  color: #fff;
  margin: 0 auto;
}

.counseling-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff !important;
  opacity: 1 !important;   /* ✅ Force it visible */
  text-align: left;        /* ✅ Left aligned */
}

.counseling-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
 
  color: #f1f1f1;
  text-align: left;
}


/* Initial state (hidden, off-screen right) */
.counseling-section .counseling-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e74c3c;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px 0px 8px 0px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transform: translateX(100px);  /* start off to the right */
  opacity: 0;                    /* hidden initially */
  transition: all 0.8s ease;     /* smooth animation */
}

.counseling-section .counseling-btn.show {
  transform: translateX(0);  /* slide to normal position */
  opacity: 1;                /* fade in */
}

.counseling-section .counseling-btn:hover {
  background-color: #c03a2b85;
}


.counseling-section .counseling-btn svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  fill: #fff;
}




/* Ministry section*/
/* Scoped Ministries Section CSS */
.ministry-tuc-section {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4rem 1rem;
  font-family: 'Inter', sans-serif;
  color: #111;
  background: #fff;
}

.ministry-tuc-section::-webkit-scrollbar {
  height: 8px;
}
.ministry-tuc-section::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.ministry-tuc-section .heading small {
  margin-left: 20px;
  padding-bottom: 15px;
}

.ministry-tuc-section .heading {
  flex: 0 0 300px;
  min-width: 250px;
  scroll-snap-align: start;
}

.ministry-tuc-section .heading small {
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.ministry-tuc-section .heading h2 {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 1rem;
   margin-left: 20px;
}

.ministry-tuc-section .heading h2 span {
  color: #e64b4b;
}

.ministry-tuc-section .heading button {
  padding: 0.75rem 1.5rem;
  border: 1px solid #000;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
   margin-left: 20px;
}

.ministry-tuc-section .heading button:hover {
  background: #000;
  color: #fff;
}

.ministry-tuc-section .cards {
  display: flex;
  gap: 1.5rem;
}

.ministry-tuc-section .card {
  flex: 0 0 260px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
  scroll-snap-align: start;
  transition: transform 0.3s;
}

.ministry-tuc-section .card:hover {
  transform: translateY(-4px);
}

.ministry-tuc-section .card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.ministry-tuc-section .content {
  padding: 0.9rem 1.1rem;
}

.ministry-tuc-section .content h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #111;
   
}

.ministry-tuc-section .content p {
  margin: 0.3rem 0 0;
  font-size: 0.88rem;
  font-weight: 400;
  color: #666;
   
}
/* Fade in for heading */
.ministry-tuc-section .heading {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-in-up 1s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide in from right for button */
.ministry-tuc-section .heading button {
  opacity: 0;
  transform: translateX(40px);
  animation: slide-in-right 0.8s ease-out forwards;
  animation-delay: 0.8s; /* comes after heading */
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}



/* Fade + slide animation for ministry heading */
.ministry-tuc-section h2 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.ministry-tuc-section h2.in-view {
  opacity: 1;
  transform: translateY(0);
}


/*Testimony section*/
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #e64b4b;
  --primary-dark: #c93b3b;
  --secondary: #4a6fa5;
  --dark: #222;
  --light: #f9f9f9;
  --gray: #777;
  --light-gray: #eaeaea;
  --success: #4CAF50;
  --error: #f44336;
  --shadow: 0 4px 12px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

.testimony-section * {
  box-sizing: border-box;
}

.testimony-section {
  padding: 5rem 1rem;
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Background with gradient overlay */
.testimony-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(135deg, rgba(38, 37, 39, 0.85) 0%, rgba(74, 111, 165, 0.85) 100%),
    url('https://images.unsplash.com/photo-1535016120720-40c646be5580?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.testimony-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimony-section h2 {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: white;
  position: relative;
  display: inline-block;
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.testimony-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.testimony-section p {
  font-size: 1.1rem;
  color: rgba(223, 219, 219, 0.952);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.btn-testimony {
  padding: 0.9rem 1.8rem;
  border: none;
  border-radius: 50px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.btn-testimony:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(230, 75, 75, 0.3);
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  overflow-y: auto;
}

.modal-content {
  background: #ffffffd5;
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  width: 100%;
  max-width: 550px;
  position: relative;
  animation: fadeIn 0.4s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  margin: auto;
}

.modal-content h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: var(--dark);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--gray);
  transition: var(--transition);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;                                             
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--light-gray);
  color: var(--dark);
}

.form-group {
  margin-bottom: 1.2rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230, 75, 75, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  background: var(--dark);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.5rem;
}

.submit-btn:hover {
  background: var(--primary);
}

.submit-btn:disabled {
  background: var(--gray);
  cursor: not-allowed;
}

.error-message {
  color: var(--error);
  font-size: 0.8rem;
  margin-top: 0.4rem;
  display: none;
}

.success-state {
  display: none;
  text-align: center;
  padding: 1.5rem 0;
}

.success-icon {
  font-size: 3rem;
  color: var(--success);
  margin-bottom: 1.2rem;
}

.success-state h3 {
  color: var(--success);
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

.success-state p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  padding: 0;
}

.error-state {
  display: none;
  text-align: center;
  padding: 1.5rem 0;
}

.error-icon {
  font-size: 3rem;
  color: var(--error);
  margin-bottom: 1.2rem;
}

.error-state h3 {
  color: var(--error);
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

.error-state p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  padding: 0;
}

.try-again-btn {
  padding: 0.7rem 1.3rem;
  border: none;
  border-radius: 50px;
  background: var(--dark);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.try-again-btn:hover {
  background: var(--primary);
}

@keyframes fadeIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  .testimony-section {
    padding: 4rem 1rem;
  }
  
  .testimony-section h2 {
    font-size: 2rem;
  }
  
  .testimony-section p {
    font-size: 1rem;
  }
  
  .modal-content {
    padding: 1.5rem;
    margin: 0.5rem;
  }
  
  .modal-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  
  .close-btn {
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    width: 32px;
    height: 32px;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.8rem;
    font-size: 0.95rem;
  }
  
  .success-icon,
  .error-icon {
    font-size: 2.5rem;
  }
  
  .success-state h3,
  .error-state h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .testimony-section {
    padding: 3rem 1rem;
  }
  
  .testimony-section h2 {
    font-size: 1.8rem;
  }
  
  .testimony-section p {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }
  
  .btn-testimony {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
  }
  
  .modal-content {
    padding: 1.2rem;
  }
  
  .modal-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-right: 1.5rem;
  }
  
  .form-group label {
    font-size: 0.85rem;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.8rem;
  }
  
  .submit-btn {
    padding: 0.9rem;
    font-size: 0.95rem;
  }
  
  .try-again-btn {
    font-size: 0.85rem;
  }
}

/* Very small devices */
@media (max-width: 360px) {
  .testimony-section {
    padding: 2.5rem 0.8rem;
  }
  
  .testimony-section h2 {
    font-size: 1.6rem;
  }
  
  .modal-content {
    padding: 1rem;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.7rem;
  }
}

/* Prevent zoom on iOS input focus */
@media screen and (max-width: 768px) {
  .testimony-section input, 
  .testimony-section select, 
  .testimony-section textarea {
    font-size: 16px !important;
  }
}

/* Landscape orientation support */
@media (max-height: 500px) and (orientation: landscape) {
  .modal {
    align-items: flex-start;
    padding-top: 2rem;
    padding-bottom: 2rem;
    overflow-y: scroll;
  }
  
  .modal-content {
    max-height: 90vh;
    overflow-y: auto;
  }
}



/*GIVE SECTION*/
/* TUC Give Card */
.tuc-give-card {
  background-color: #f8e6e6;
  border-radius: 6px;
  padding: 40px;
  max-width: 1300px;
  height: 60vh;
  width: 90%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  margin: 0 auto;
  margin-top: -70px;

  /* Start hidden for animation */
  opacity: 0;
  transform: translateY(-40px);
  transition: all 1s ease-out;
}

.tuc-give-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Heading */
.tuc-give-card h2 {
  font-family: 'Anton', sans-serif;
  font-size: 4.8rem;
  font-weight: 400;
  color: #1d1d1d;
  margin-bottom: 10px;

  /* Start hidden */
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1s ease-out;
}

.tuc-give-card.in-view h2 {
  opacity: 1;
  transform: translateY(0);
}

/* Sub text */
.tuc-give-card p {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 25px;
  margin-top: 10px;
}

/* Buttons wrapper */
.button-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Give Now button */
.btn-give-now {
  padding: 16px 28px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  background-color: #fcf9f9;
  color: #0f0f0f;
  transition: 0.3s ease;
  margin-top: 20px;
  border:0.7px solid rgba(128, 128, 128, 0.349);
}

.btn-give-now:hover {
  background-color: #080808;
  color: #fff;
}

/* Building Project button */
.btn-building-project {
  padding: 14px 28px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  background-color: #e63946;
  color: #fff;
  transition: 0.3s ease;
  margin-top: 20px;
}

.btn-building-project:hover {
  background-color: #c92d38;
}

/* Responsive */
@media (max-width: 1024px) {
  .tuc-give-card {
    height: auto;
    padding: 30px;
  }

  .tuc-give-card h2 {
    font-size: 3rem;
  }

  .tuc-give-card p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .tuc-give-card {
    padding: 17px;
  }

  .tuc-give-card h2 {
    font-size: 2.2rem;
    margin-top: 35px;
  }

  .tuc-give-card p {
    font-size: 1rem;
  }

  .button-group {
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }
}
.btn-give-now,
.btn-building-project {
  text-decoration: none; /* removes underline */
  display: inline-block; /* makes <a> behave like a button */
  border: none;          /* in case browser adds a border */
}



/* ===== TUC Newsletter Section ===== */
.tuc-newsletter {
    background: linear-gradient(135deg, #0a0a0a 0%, #1f1f1f 100%);
    padding: clamp(30px, 4vw, 60px) clamp(15px, 3vw, 25px);
    font-family: 'Poppins', sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.tuc-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ff4747' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.tuc-newsletter-container {
   
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.tuc-newsletter-header {
    margin-bottom: 40px;
    max-width: 800px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.tuc-newsletter-header.visible {
    opacity: 1;
    transform: translateX(0);
}

.tuc-newsletter-title {
     margin-top: 100px;
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 8vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.tuc-newsletter-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ff4747;
}

.tuc-newsletter-subtitle {
    font-size: clamp(16px, 2.5vw, 18px);
    line-height: 1.6;
    color: #ccc;
    margin-top: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tuc-newsletter-form {
    width: 100%;
    max-width: 900px;
    background: linear-gradient(rgba(0, 0, 0, 0.767), rgba(0, 0, 0, 0.7)), 
                url('https://res.cloudinary.com/dwn1xoujd/image/upload/v1756932727/photo-1478147427282-58a87a120781_ytneqn.jpg');
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease 0.3s;
}

.tuc-newsletter-form.visible {
    opacity: 1;
    transform: translateX(0);
}

.tuc-form-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 600;
}

.tuc-form-group {
    margin-bottom: 20px;
    text-align: left;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.tuc-form-group.visible {
    opacity: 1;
    transform: translateX(0);
}

.tuc-form-group:nth-child(1) {
    transition-delay: 0.5s;
}

.tuc-form-group:nth-child(2) {
    transition-delay: 0.7s;
}

.tuc-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #fff;
}

.tuc-form-input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.tuc-form-input:focus {
    outline: none;
    border-color: #ff4747;
    box-shadow: 0 0 0 2px rgba(255, 71, 71, 0.2);
}

.tuc-form-input::placeholder {
    color: #aaa;
}

.tuc-form-input.error {
    border-color: #ff3860;
    box-shadow: 0 0 0 2px rgba(255, 56, 96, 0.2);
}

.tuc-form-button {
    display: inline-block;
    width: 100%;
    padding: 15px 30px;
    background: #ff4747;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ff4747;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.9s;
}

.tuc-form-button.visible {
    opacity: 1;
    transform: translateY(0);
}

.tuc-form-button:hover {
    background: transparent;
    color: #ff4747;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 71, 71, 0.3);
}

.tuc-form-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.tuc-form-button:disabled:hover {
    background: #ff4747;
    color: #fff;
    transform: none;
    box-shadow: none;
}

/* Error message styling */
.error-message {
    color: #ff3860;
    font-size: 14px;
    margin-top: 8px;
    display: none;
}

.error-message.visible {
    display: block;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

/* Success message styling */
.success-message {
    margin-top: 20px;
    padding: 15px;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 8px;
    border: 1px solid #4CAF50;
    color: #4CAF50;
    display: none;
    animation: fadeIn 0.5s ease;
}

.success-message.visible {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .tuc-newsletter-form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .tuc-newsletter {
        padding: 40px 20px;
    }
    
    .tuc-newsletter-form {
        padding: 25px 20px;
        background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                    url('https://images.unsplash.com/photo-1518509562904-e7ef99cdcc86?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1074&q=80');
        background-size: cover;
        background-position: center;
    }
    
    .tuc-form-input {
        padding: 12px 18px;
    }
}

/* Newsletter submission error */
#newsletter-form .submission-error {
  color: #ff3860;
  font-size: 15px;
  margin-top: 15px;
  background: rgba(255, 56, 96, 0.1);
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #ff3860;
  display: none;
  animation: fadeIn 0.5s ease;
}

#newsletter-form .submission-error.visible {
  display: block;
}




/* ===== TUC Footer ===== */
.tuc-footer {
 background: linear-gradient(135deg, #0a0a0a 0%, #2e2121 50%, #816c6ccb 100%);
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.tuc-footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT MENU */
.tuc-footer-left-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tuc-footer-left-menu ul li {
  margin-bottom: 12px;
}

.tuc-footer-left-menu ul li a {
  color: #bbb;
  font-family: 'Anton', sans-serif;
  text-decoration: none;
  font-size: 900;
  
  transition: color 0.3s ease;
}

.tuc-footer-left-menu ul li a:hover {
  color: #ff4747;
}

/* RIGHT COLUMNS */
.tuc-footer-right-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.tuc-footer-column {
  min-width: 180px;
}

.tuc-footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.tuc-footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tuc-footer-column ul li {
  margin-bottom: 10px;
}

.tuc-footer-column ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.tuc-footer-column ul li a:hover {
  color: #ff4747;
}

/* Social Icons */
.tuc-footer-socials {
  margin-top: 15px;
}

.tuc-footer-socials a {
  display: inline-block;
  margin-right: 12px;
  font-size: 18px;
  color: #bbb;
  transition: color 0.3s ease, transform 0.3s ease;
}

.tuc-footer-socials a:hover {
  color: #ff4747;
  transform: translateY(-3px);
}

/* Footer Bottom */
.tuc-footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .tuc-footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .tuc-footer-right-columns {
    flex-direction: column;
    width: 100%;
  }
}



/* ===========================
   ABOUT PAGE STYLES
   Scoped with .about-*
   =========================== */

/* GENERAL CONTAINERS */
.about-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* SECTION TITLES */
.about-section-title {
  text-align: center;
  font-family: "Anton", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  color: #222;
  position: relative;
}
.about-section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #f31111;
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* HERO */
.about-hero {
  position: relative;
  background: url("https://res.cloudinary.com/dwn1xoujd/image/upload/v1756932727/photo-1478147427282-58a87a120781_ytneqn.jpg") center/cover no-repeat;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 99, 120, 0.55);
}
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}
.about-hero h1 {
  font-family: "Anton", sans-serif;
  font-size: 3.2rem;
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.about-hero p {
  font-size: 1.3rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease 0.3s;
}
.about-hero.in-view h1,
.about-hero.in-view p {
  opacity: 1;
  transform: translateY(0);
}

/* STORY */
.about-story {
  padding: 5rem 1rem;
}
.about-story-content {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}
.about-story-content img {
  flex: 1;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.about-story-content div {
  flex: 2;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #ebe7e7;
}

/* MISSION & VISION */

/* White background wrapper */
.white-section {
  background: #fff;
  padding: 5rem 1rem;
}

/* Flex layout */
.about-mission-flex {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Left side: Title */
.about-mission-text {
  flex: 1;
  display: flex;
  align-items: center;
}

.about-mission-title {
  text-align: left !important;
  font-size: 5.7rem;
  font-family: "Anton", sans-serif;
  line-height: 1.2;
  margin: 0;
  opacity: 0;               /* Hidden initially */
  transform: translateY(30px);
}

/* Right side: Flyer Image */
.about-mission-image {
  flex: 1;
  text-align: center;
}

.about-mission-image img {
  width: 100vh;
  height: 100vh;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.about-mission-image img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .about-mission-flex {
    flex-direction: column;
    text-align: center;
  }
  .about-mission-title {
    text-align: center !important;
    font-size: 2.2rem;
  }
  .about-mission-image img {
    max-width: 90%;
    margin-top: 2rem;
  }
}

/* Fade Up Animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





/* BELIEFS */
/* SECTION & OVERLAY */
.about-beliefs {
  background: url('images/background.jpg') center/cover no-repeat;
  position: relative;
  padding: 6rem 1rem;
  color: #fff;
}

.about-beliefs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      to bottom right,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.1)
  );
  z-index: 1;
}

.about-beliefs .about-container {
  position: relative;
  z-index: 2;
}

/* GRID */
.about-beliefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: auto;
}

/* CARDS */
.belief-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.belief-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-beliefs {
  background: url('https://res.cloudinary.com/dwn1xoujd/image/upload/v1756932722/photo-1745852737991-e6e1d6270ec7_xruswl.jpg') center/cover no-repeat;
  position: relative;   /* Needed for overlay */
  padding: 6rem 1rem;
  color: #fdfcfc;
  font-family: 'Anton', sans-serif;
}

/* Dark overlay */
.about-beliefs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.712); /* 50% dark overlay */
  z-index: 1;
}
.about-beliefs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Dark gradient overlay */
  background: linear-gradient(
    to bottom, 
    rgba(0, 0, 0, 0.7),  /* Dark at top */
    rgba(0, 0, 0, 0.3)   /* Lighter at bottom */
  );
  z-index: 1;
}


/* Ensure content is above the overlay */
.about-beliefs .about-container {
  position: relative;
  z-index: 2;
}


/* IMAGE */
.belief-img {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

/* HEADINGS & TEXT */
.belief-item h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.belief-item p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Belief Section Headings */
.about-beliefs .belief-item h3 {
  color: #e74c3c;   /* Example: red */
  text-decoration: none;  /* removes underline if present */
}
/* What We Believe section heading */
.about-beliefs .about-section-title {
  color: #e4d0ce;        /* pick your color */
  text-decoration: none; /* removes underline */
}






/* pastore section */
.about-pastor-section {
  padding: 6rem 2rem;
  background: #fff; /* white section */
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
}

.pastor-layout {
  display: flex;
  align-items: center;
  gap: 3rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.pastor-layout.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Pastor Image */
.pastor-img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pastor-img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Text */
.pastor-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.pastor-text h3 {
  font-family: "Anton", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #111;
}

.pastor-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* Responsive */
@media (max-width: 900px) {
  .pastor-layout {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .pastor-img {
    width: 200px;
    height: 200px;
  }
  .pastor-text h2 {
    font-size: 1.8rem;
  }
  .pastor-text h3 {
    font-size: 1.5rem;
  }
  .pastor-text p {
    font-size: 1rem;
  }
}



/* COMMUNITY SECTION */
.about-community {
  padding: 6rem 2rem; /* more spacing */
  background: #080808; /* optional: white background for contrast */
}

.about-community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* bigger cards */
  gap: 2.5rem; /* more gap between cards */
}

.about-community-card {
  background: #e7e5e5ec;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.about-community-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Card image */
.about-community-card img {
  width: 100%;
  height: 250px; /* bigger image */
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Card hover */
.about-community-card:hover img {
  transform: scale(1.05);
}

.about-community-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

/* Card content */
.about-community-card h3 {
  font-family: "Anton", sans-serif;
  margin: 1.2rem 1rem 0.8rem;
  font-size: 1.4rem; /* bigger heading */
  color: #222;
}

.about-community-card p {
  padding: 0 1rem 1.8rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}

.about-cta {
  position: relative;
  padding: 6rem 2rem;
  background: url('https://res.cloudinary.com/dwn1xoujd/image/upload/v1756932731/pict1_image_m4omwf.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.cta-overlay {
  background: rgba(0, 0, 0, 0.5); /* dark overlay for readability */
  padding: 3rem 2rem;
  border-radius: 16px;
}

.about-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-family: "Anton", sans-serif;
}

.about-cta button {
  background: #ff6b6b;
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.about-cta button:hover {
  background: #ff4c4c;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .about-cta h2 {
    font-size: 2rem;
  }
  .about-cta button {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }
  .about-story-content {
    flex-direction: column;
  }
}
