:root {
    --primary: #2C3E50;
    --secondary: #D4AF37;
    --light: #F8F9FA;
    --dark: #212529;
    --gray: #6C757D;
    --white: #FFFFFF;
    --off-white: #F5F5F5;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.section-padding {
    padding: 50px 0;
}

.section-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--primary);
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.fade-container {
    font-size: 3rem;
    font-weight: bold;
    height: 70px;
    overflow: hidden;
}

.fade-text {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    position: absolute;
    width: 100%;
    color: var(--secondary);
    font-family: 'Cormorant Garamond', serif;
}

.fade-text.heading-active {
    opacity: 1;
    transform: scale(1);
}

.progress {
    height: 8px;
    border-radius: 4px;
}

.progress-bar{
    background-color:var(--secondary);
}

.education-section{
    background-color: var(--off-white);
}

textarea{
    resize:none;
}
.swal-wide {
  width: 70% !important;
}

@media (max-width: 768px) {
  .swal-wide {
    width: 100% !important;
  }
}
pre {
    font-family: 'Montserrat', sans-serif;
    color: var(--light-color); /* Dark text for better contrast */
    overflow-x: auto; /* Horizontal scrolling for long content */
    white-space: pre-wrap; /* Wrap text while preserving formatting */
    line-height: 1.5; /* Improved line spacing */
    font-size: 16px; /* Comfortable font size */
    margin-bottom: 20px; /* Spacing from other elements */
    word-wrap: break-word;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-custom:hover {
    background-color: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

.btn-secondary-custom {
    background-color: var(--secondary);
    color: var(--dark);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary-custom:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-light-custom {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-light-custom:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    padding: 20px 0;
    transition: all 0.4s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .nav-link {
    color: var(--primary) !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white) !important;
    transition: all 0.3s ease;
}

.navbar-brand span {
    color: var(--secondary);
}

.nav-link {
    font-weight: 500;
    color: var(--white) !important;
    margin: 0 15px;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background-color: var(--secondary);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.navbar .navbar-toggler {
    border: none;
    color: var(--white);
}

.navbar.scrolled .navbar-toggler {
    border: none;
    color: var(--primary);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(33, 37, 41, 0.8), rgba(33, 37, 41, 0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-subtitle {
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
    animation-delay: 0.3s;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
    animation-delay: 0.6s;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--light);
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
    animation-delay: 0.9s;
}

.hero-buttons {
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
    animation-delay: 1.2s;
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.about-img {
    position: relative;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-content {
    padding: 30px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.about-feature-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--off-white);
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.about-feature-content h5 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

/* Services Section */
.services-section {
    background-color: var(--primary);
    color: var(--white);
    /*background-color: var(--off-white);*/
}

.services-section .section-title{
    color: var(--white);
}

.services-section .section-subtitle{
    color: var(--secondary);
}

.services-section p{
    color: var(--primary);
}

.services-section .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.services-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.service-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensures uniform height */
    justify-content: space-between;
    background-color: var(--white);
    padding: 20px 15px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card p{
    flex-grow: 1; /* Makes content expand to fill space */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures uniform spacing */
}

.service-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: var(--off-white);
    color: var(--primary);
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: var(--white);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
    position: relative;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--off-white);
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-content h5 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.contact-form {
    background-color: var(--off-white);
    padding: 40px;
}

.form-control {
    height: 50px;
    border: none;
    padding: 10px 15px;
    margin-bottom: 20px;
    background-color: var(--white);
}

.form-control:focus {
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
    border: 1px solid var(--primary);
}

textarea.form-control {
    height: 150px;
    resize: none;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 10px 0 10px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.footer span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--secondary);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--white);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
    bottom: -10px;
    left: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.brand-link{
    color: var(--secondary);
    text-decoration:none;
}
.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top:10px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .navbar.scrolled .navbar-brand,
    .navbar.scrolled .nav-link {
        color: var(--primary) !important;
    }
    
    .navbar-collapse {
        background-color: var(--white);
        padding: 20px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-collapse .nav-link {
        color: var(--primary) !important;
    }
    
    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link.active {
        color: var(--secondary) !important;
    }
}

.date{
    background-color:var(--primary);
    color:var(--light);
    padding:4px;
    border-radius:20px;
}

.menu-card {
    display: flex;
    flex-direction: column;
    height: 100%; /* Makes all cards equal height */
    background-color: var(--white);
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.menu-img {
    height: 250px;
    overflow: hidden;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-img img {
    transform: scale(1.1);
}

.menu-info {
    flex-grow: 1; /* Ensures the content stretches */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures uniform spacing */
    padding: 25px;
}

.menu-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary);
}


.menu-desc {
    color: var(--gray);
    margin-bottom: 20px;
}