﻿@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
:root {
    --primary-blue: #0d47a1;
    --primary-green: #2e7d32;
    --accent-color: #fbc02d;
    --light-bg: #f8f9fa;
    --text-dark:#0d47a1;
    --text-light: #666;
}
.alexandria-<uniquifier > {
    font-family: "Alexandria", sans-serif;
    font-optical-sizing: auto;

    font-style: normal;
}
body {
    font-family: "Alexandria", sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}
.tcolor {
    color:#0d47a1;
}
h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: "Alexandria", sans-serif;
    font-weight: 600;
    color: #2e7d32;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 15px;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: var(--primary-green);
    }

.navbar {
    margin-top: 0px;
}

.nav-logo {
    height: 85px;
}

.nav-logo1 {
    height: 85px;
}

.logo-text {
    letter-spacing: 3px;
    color: #025c40;
    font-weight: 900;
    font-size:25px;
}

.nav-link {
    color:  #025c40 !important;
    font-weight: 700;
    margin: 0 5px;
    font-size: 16px;
    position: relative;
    transition: 0.3s;
}

    .nav-link:hover {
        color: #009 !important;
    }

/* Gold Button in Menu */
.nav-btn-gold {
    background: #c5a059;
    color: #4a1e28 !important;
    padding: 8px 20px !important;
    border-radius: 4px;
    font-weight: 700 !important;
}

.custom-nav {
    /*background: rgba(74, 30, 40, 0.9);*/ /* Deep Plum matching your theme */
  //  background: url('../images/topbg.jpg');
    // background-color: #efd5c4;
    backdrop-filter: blur(10px);
    border-bottom: 4px solid #c39059;
    transition: all 0.3s ease;
}
.custom-nav.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: #fff; /* or your theme */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
/* Hero Section */
/*.hero-section {
    // background: linear-gradient(rgba(13, 71, 161, 0.8), rgba(46, 125, 50, 0.8)), url('https://images.unsplash.com/photo-1540317580384-e5d43867caa6?auto=format&fit=crop&w=1920&q=80') center/cover;
    color: #fff;
    padding: 150px 0 100px;
    text-align: center;
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}*/
.hero-section1 {
    min-height: 50vh;
    background: linear-gradient(rgba(34, 69, 34, 0.85), rgba(34, 69, 34, 0.85)), url('../images/SAM_5559.jpg'); /* Professional hall background */
    background-size: cover;
    background-position: center;
    border-bottom: 8px solid var(--gold);
    padding: 40px 120px;
}
.hero-section {
    position: relative;
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-item {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

    .slide-item.active {
        opacity: 1;
    }

/* Overlay to make text pop */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 11, 19, 0.7); /* Plum-tinted dark overlay */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3; /* Above the slider and overlay */
}

/* Rainbow Animation */
.animated-rainbow-text {
    background: linear-gradient(to right, #ff0000, #ff9900, #e6e600, #00cc00, #0033cc, #cc33ff, #ff0000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 400% 400%;
    animation: rainbow 8s ease infinite;
    font-weight: bold;
}

@keyframes rainbow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes blink {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.blink-professional {
    color: #d32f2f; /* A professional, slightly deeper red */
    font-weight: bold;
    text-decoration: none;
    animation: smooth-pulse 2s infinite ease-in-out;
}

@keyframes smooth-pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.blinking-text {
    text-align: center;
    margin-top: 40%;
    font-size: 24px;
    font-weight: 600;
    padding: 5px;
    background-color: #fdfaf5;
    color: #ff0000;
    animation: blink 1s infinite;
}
.hero-subtitle {
    font-size: 1.5rem;
    color:#fff;
    font-weight: 300;
}

.hero-title {
    font-size: 3.0rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}
.gradient-row {
    padding: 10px;
    color: white;
    margin-top: 10px;
    font-weight: 500;
}

    .gradient-row a {
        color: white;
    }

.row1 {
    background: linear-gradient(45deg,#6e31aa,#9a5a62);
}

.row2 {
    background: linear-gradient(45deg,#ff7b00,#2e7d32);
}

.row3 {
    background: linear-gradient(45deg,#28a745,#2e7d32);
}

.row4 {
    background: linear-gradient(45deg,#0d47a1,#2e7d32);
}

.row5 {
    background: linear-gradient(45deg,#2e7d32,#2e7d32);
}
.bg-green {
    background-color: #2e7d32;
}
.bg-dark {
    background-color: #2e7d32;
}
.btn-custom-primary {
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 5px;
    transition: 0.3s;
}

    .btn-custom-primary:hover {
        background-color: #1b5e20;
        color: white;
        transform: translateY(-2px);
    }

.btn-custom-outline {
    border: 2px solid white;
    color: white;
    padding: 10px 30px;
    font-weight: 500;
    border-radius: 5px;
    transition: 0.3s;
}

    .btn-custom-outline:hover {
        background-color: white;
        color: var(--primary-blue);
        transform: translateY(-2px);
    }

/* Highlights & Tracks (Cards) */
.icon-box {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    height: 100%;
    border-bottom: 3px solid transparent;
}

    .icon-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-color: var(--primary-green);
    }

    .icon-box i {
        font-size: 3rem;
        color: var(--primary-blue);
        margin-bottom: 20px;
    }

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

    .timeline::after {
        content: '';
        position: absolute;
        width: 4px;
        background-color: var(--primary-blue);
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -2px;
        border-radius: 5px;
    }

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

    .timeline-item::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        right: -10px;
        background-color: white;
        border: 4px solid var(--accent-color);
        top: 15px;
        border-radius: 50%;
        z-index: 1;
    }

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::after {
    left: -10px;
}

.timeline-content {
    padding: 20px;
    background-color: white;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.timeline-date {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

        .timeline-item::after {
            left: 21px;
        }

    .right {
        left: 0;
    }
}

/* Process Steps */
.process-row {
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    width: 18%;
    z-index: 2;
    position: relative;
    margin-bottom: 20px;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: white;
    border: 2px dashed var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-green);
    margin: 0 auto 15px;
    transition: 0.3s;
}

.process-step:hover .process-icon {
    background: var(--primary-green);
    color: white;
    border-style: solid;
}

@media (max-width: 768px) {
    .process-step {
        width: 45%;
    }
}

/* Tables & Cards */
.table-custom {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

    .table-custom thead {
        background-color: var(--primary-green);
        color: white;
    }

.profile-card {
    text-align: center;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

    .profile-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .profile-card img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        margin: 20px auto 10px;
        border: 3px solid var(--light-bg);
    }

/* Logos & Footer */
.swiper-logo .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    filter: grayscale(100%);
    transition: 0.3s;
    opacity: 0.7;
}

    .swiper-logo .swiper-slide:hover {
        filter: grayscale(0%);
        opacity: 1;
    }

.swiper-logo img {
    max-height: 60px;
    max-width: 100%;
}

footer {
    background-color: #025c40;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-heading {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: 0.3s;
}

    .footer-links a:hover {
        color: white;
        padding-left: 5px;
    }

.social-icons a {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

    .social-icons a:hover {
        background: var(--accent-color);
        color: var(--primary-blue);
    }
/* Custom Table Styling */
.table-container {
    overflow-x: scroll; /* Default: No horizontal scroll on large screens */

}

@media (max-width: 992px) { /* Enable horizontal scrolling for tablets & smaller screens */
    .table-container {
        overflow-x: auto;
    }
}

table {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;

}



    tbody tr:hover {
        transform: scale(1.00);
        background-color: #2e7d32;
        box-shadow: 4px 3px 8px rgba(0, 0, 0, 0.1); /* Slight hover shadow */
    }
/*th, td {
                white-space: nowrap;*/ /* Prevent text wrapping */
/*}*/

th, td {
    font-size: 16px;

}

.table tr:first-child td {
    background-color: #2e7d32;
    border: 0 solid #000;
    font-weight: 700;
    color: #FFF;
}
/* First Column */


table td, table th {
    border: 1px solid #ddd;
    padding: 8px;
}
.auto-style1 {
    width: 379px;
}

.auto-style2 {
    width: 333px;
}
.sustainable-card {
    position: relative;
    height: 300px; /* Fixed height for consistency */
    background: #fdfaf5;
    border: 1px solid rgba(197, 160, 89, 0.3);
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    cursor: pointer;
}

    .sustainable-card:hover {
        border-color: #c5a059;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

/* Initial Content Styling */
.card-main-content .card-title {
    font-family: 'Cinzel', serif;
    color: #4a1e28;
    font-size: 1.25rem;
}

.hover-hint {
    font-size: 0.8rem;
    color: #333;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* The Secret Overlay Layer */
.card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 30, 40, 0.95); /* Deep Plum matching brochure */
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    transform: translateY(100%); /* Hidden below the card */
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Reveal Animation */
.sustainable-card:hover .card-hover-overlay {
    transform: translateY(0);
}

/* Content inside the Overlay */
.overlay-title {
    color: #c5a059;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.gold-line {
    width: 40px;
    height: 2px;
    background: #c5a059;
    margin: 0 auto 20px;
}

.points-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

    .points-list li {
        color: #fdfaf5;
        font-size: 0.9rem;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        opacity: 0;
        transform: translateX(20px);
        transition: 0.4s ease;
    }

/* Cascade effect for list items */
.sustainable-card:hover .points-list li {
    opacity: 1;
    transform: translateX(0);
}

    .sustainable-card:hover .points-list li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .sustainable-card:hover .points-list li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .sustainable-card:hover .points-list li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .sustainable-card:hover .points-list li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .sustainable-card:hover .points-list li:nth-child(5) {
        transition-delay: 0.5s;
    }

.points-list i {
    color: #c5a059;
    margin-right: 12px;
    font-size: 1rem;
}

/* 3. The Continuous Underline Animation */
.prestige-underline {
    position: relative;
    height: 2px;
    width: 250px;
    background: rgba(197, 160, 89, 0.2);
    margin: 25px auto;
    overflow: visible;
}

.line-glow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: slideGlow 3s ease-in-out infinite;
}

.diamond-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--gold);
    border: 2px solid white;
    box-shadow: 0 0 10px var(--gold);
}




.main-contact-title {
    font-family: 'Cinzel', serif;
    color: var(--plum);
    font-weight: 700;
    font-size: 2.5rem;
}

.animated-underline {
    position: relative;
    width: 150px;
    height: 3px;
    margin: 15px auto;
    background: linear-gradient(90deg, transparent, #c5a059, transparent);
    border-radius: 2px;
    /* The Continuous Animation */
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        width: 120px;
        box-shadow: 0 0 5px rgba(197, 160, 89, 0.2);
        opacity: 0.6;
    }

    50% {
        width: 180px;
        box-shadow: 0 0 20px rgba(197, 160, 89, 0.8);
        opacity: 1;
    }
}