:root {
    --primary: #C2190B;
    --secondary: #C0AE8E;
    --accent-1: #F7F3EB;
    --accent-2: #b9a052;
    --accent-3: #915ee1;
}

html {
  scroll-behavior: smooth;
}
.parent{
    background-color: #eae3cb;
     padding-top: 15px;

}

.p-height{
   height: 100vh ;
}

.parent-row{
    border-radius: .75rem;
    margin-left: 2px;
    height: 105px;
}


.parent-row img{
    border-radius: 70%;
}

.parent-row p{
    margin: 0;
    font-size: 0.9rem ;
}
.row-child{
    height: 180px;
    background-color: #d5c697;
    border-radius: .75rem;
}


header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9); /* Optional semi-transparent background */
    z-index: 1000; /* Ensures it stays above the hero */
}
h1, h2 {
    font-family: 'Playfair Display', serif; /* Stylish for headings */
}

.hero-text h1 {
    font-size: 45px; /* Bigger for main heading */
    color: black !important;

}

.hero-text h3 {
    font-size: 18px !important; /* Smaller for subheading */
        color: black !important;

}

.hero-text {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    color: black !important;
}
@media (max-width: 576px) {
      .hero-text h1 {
        padding-top: 20px !important;
        font-size: 45px; /* Bigger for main heading */
    }

    .hero-text h3 {
        font-size: 18px !important; /* Smaller for subheading */
    }

    .hero-text {
        font-family: 'Roboto', sans-serif;
        font-weight: bold;
        color: white !important;
    }
}

p, body {
    font-family: 'Inter+Tight', sans-serif; /* Clean for general text */
}
.navbar .navbar-brand {
    font-family: 'Roboto', sans-serif; /* Use any font */
    font-size: 22px; /* Adjust as needed */
    font-weight: bold;
    color: black !important;
}
.navbar {
    background: rgba(255,250,250,0.4) !important;
            backdrop-filter: blur(10px);
            border-radius: 20px;
            margin: 1rem 1rem;
            border: 1px solid rgba(255,255,255,0.2);
}
s
.navbar .nav-link {
    font-family: 'Roboto', sans-serif !important; /* Same font as brand */
    font-size: 18px !important;
    color: black !important;
}
/* Mobile */
@media (max-width: 576px) {
  .hide-mobile {
    display: none !important;
  }
}
.parent .navbar .nav-link {
    font-family: 'Roboto', sans-serif !important; /* Same font as brand */
    font-size: 12px !important;
    color: #39414b !important;
}
/* Make the logo and text align */
.logo-container {
    display: flex;
    align-items: center;
}

/* Adjust logo size */
.logo-img {
    width: 80px; /* Reduce size */
    height: auto;
}

/* Add a small vertical separator */
.separator {
    width: 2px;
    height: 60px;
    background-color: black; /* Adjust color */
    margin: 0 10px; /* Spacing */
}

.news-section{
        height: auto !important;
    }
 .carousel-container {

            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            height: auto !important;
        }

        /* Responsive image sizing */
        .carousel-img {
            width: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }


        /* Enhanced carousel captions */
         /* Enhanced carousel captions */
        .carousel-caption {
            position: absolute;
            background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
            border-radius: 10px;
            bottom: 1.25rem;
            left: 10%;
            right: 15%;
            transform: none;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            z-index: 10;
        }


        .carousel-caption h5 {
            color: #fff;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .carousel-caption p {
            color: #f8f9fa;
            font-size: 1rem;
            margin-bottom: 0;
            line-height: 1.4;
        }

        /* Enhanced indicators */
        .carousel-indicators {
            bottom: -70px;
            margin-bottom: 0;
        }

        .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid #3498db;
            background-color: transparent;
            transition: all 0.3s ease;
        }

        .carousel-indicators [data-bs-target].active {
            background-color: #3498db;
            transform: scale(1.2);
        }

        /* Enhanced navigation buttons */
        .carousel-control-prev,
        .carousel-control-next {
            width: 60px;
            height: 60px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(52, 152, 219, 0.8);
            border-radius: 50%;
            border: 2px solid #fff;
            transition: all 0.3s ease;
        }

        .carousel-control-prev {
            left: 20px;
        }

        .carousel-control-next {
            right: 20px;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: rgba(52, 152, 219, 1);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            padding-top: 40px !important;
            width: 24px;
            height: 24px;
        }

        /* Hover effects */
        .carousel-item:hover .carousel-img {
            transform: scale(1.05);
        }

        /* Mobile optimizations */
        @media (max-width: 768px) {
            .carousel-img {
                height: 40vh;
            }

            .carousel-caption {
                bottom: 10px;
                padding: 5px;
                width: 83%;
            }

            .carousel-caption h5 {
                font-size: 1.2rem;
            }

            .carousel-caption p {
                font-size: 0.9rem;
            }

            .carousel-control-prev,
            .carousel-control-next {
                width: 25px;
                height: 25px;
            }

            .carousel-indicators {
                bottom: -40px;
            }
        }

        /* Add some spacing for indicators */
        .carousel-wrapper {
            margin-bottom: 0px;
        }

        /* Smooth transitions */
        .carousel-item {
            position: relative;
            transition: transform 0.6s ease-in-out;
        }

        /* Loading state for images */
        .carousel-img {
            background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
        }

        /* Section styling */
        .news-section {
              padding-top: 60px;
              padding-right: 30px;
              padding-left: 30px;
              padding-bottom: 60px;

            height : auto !important;

        }

        .section-intro {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 40px;
        }
.primary-heading-color{
    color: var(--primary);
}
.secondary-heading-color{
    color: var(--secondary);
}
.ruler{
    border: none; /* Remove default border */
    height: 1px; /* Set thickness */
    background-color: var(--secondary); /* Use CSS variable or any color */
}
.custom-spacing {
    margin-top: 125px; /* Adjust as needed */
    margin-bottom: 70px;
}
.table-container {
    width: 90%;  /* Adjust this value as needed */
    margin: 0 auto; /* Centers the table within the section */
}

header.masthead {
  position: relative;
  margin-bottom: 3rem;
  padding-top: calc(8rem + 57px);
  padding-bottom: 8rem;
  background: no-repeat center center;
  background-color: #6c757d;
  background-size: cover;
  background-attachment: scroll;
}
header.masthead:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #212529;
  opacity: 0.5;
}
header.masthead .page-heading,
header.masthead .post-heading,
header.masthead .site-heading {
  color: #fff;
}
header.masthead .page-heading,
header.masthead .site-heading {
  text-align: center;
}
header.masthead .page-heading h1, header.masthead .page-heading .h1,
header.masthead .site-heading h1,
header.masthead .site-heading .h1 {
  font-size: 3rem;
}
header.masthead .page-heading .subheading,
header.masthead .site-heading .subheading {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.1;
  display: block;
  margin-top: 0.625rem;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
header.masthead .post-heading h1, header.masthead .post-heading .h1 {
  font-size: 2.25rem;
}
header.masthead .post-heading .meta,
header.masthead .post-heading .subheading {
  line-height: 1.1;
  display: block;
}
header.masthead .post-heading .subheading {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0.75rem 0 2rem;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
header.masthead .post-heading .meta {
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  font-family: "Lora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
header.masthead .post-heading .meta a {
  color: #fff;
}
@media (min-width: 992px) {
  header.masthead {
    padding-top: 12.5rem;
    padding-bottom: 12.5rem;
  }
  header.masthead .page-heading h1, header.masthead .page-heading .h1,
  header.masthead .site-heading h1,
  header.masthead .site-heading .h1 {
    font-size: 5rem;
  }
  header.masthead .post-heading h1, header.masthead .post-heading .h1 {
    font-size: 3.5rem;
  }
  header.masthead .post-heading .subheading {
    font-size: 1.875rem;
  }
}

.feature-icon {

  width: 7rem;
  height: 7rem;
  border-radius: .75rem;
  background-color: var(--accent-1) !important;
}

#computer-img{
    padding-left : 10 px;
}

.hero-btn{
    background-color: #373019 !important;
    border-color: #373019 !important;
    color: #ffffff !important;
}
.footer-container{
     background-color: var(--accent-2); /* Apply secondary color */
    padding: 15px 0; /* Reduce height */
}
.container-bottom {
    background-color: var(--accent-2);
    padding-bottom: 0 !important;  /* Corrected */
    margin-bottom: 0 !important;   /* Ensures no extra space */
}

footer {
    margin-bottom: 0 !important;  /* Removes extra bottom margin */
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    color: white;
    overflow: hidden;
}


/* Hero background image container */
.hero-bg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}

.bg-overlay {
    background-color: rgba(0, 0, 0, 0.7); /* Adjust opacity to your liking */
    z-index: 1;
}

/* Mobile */
@media (max-width: 576px) {
    .hero {
        position: relative; /* <-- Required for ::before to work */
        height: 100vh;
        min-height: 100vh;
        display: flex;
        align-items: center;
        color: white !important;
        padding-top: 10px;
        background-position: center;
        background-size: cover;

    }

    .hero-body::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7); /* Adjust darkness */
        z-index: 1; /* Put the overlay behind the content */
    }

    .hero-body > * {
        position: relative;
        z-index: 2; /* Ensures text/content appears above overlay */
    }
}


/*login and registration styling */
.login {
	width: 100%;
	height:100%;
	font-family: 'Open Sans', sans-serif;
	background: #092756;
	background: -moz-radial-gradient(0% 100%, ellipse cover, rgba(104,128,138,.4) 10%,rgba(138,114,76,0) 40%),-moz-linear-gradient(top,  rgba(57,173,219,.25) 0%, rgba(42,60,87,.4) 100%), -moz-linear-gradient(-45deg,  #670d10 0%, #092756 100%);
	background: -webkit-radial-gradient(0% 100%, ellipse cover, rgba(104,128,138,.4) 10%,rgba(138,114,76,0) 40%), -webkit-linear-gradient(top,  rgba(57,173,219,.25) 0%,rgba(42,60,87,.4) 100%), -webkit-linear-gradient(-45deg,  #670d10 0%,#092756 100%);
	background: -o-radial-gradient(0% 100%, ellipse cover, rgba(104,128,138,.4) 10%,rgba(138,114,76,0) 40%), -o-linear-gradient(top,  rgba(57,173,219,.25) 0%,rgba(42,60,87,.4) 100%), -o-linear-gradient(-45deg,  #670d10 0%,#092756 100%);
	background: -ms-radial-gradient(0% 100%, ellipse cover, rgba(104,128,138,.4) 10%,rgba(138,114,76,0) 40%), -ms-linear-gradient(top,  rgba(57,173,219,.25) 0%,rgba(42,60,87,.4) 100%), -ms-linear-gradient(-45deg,  #670d10 0%,#092756 100%);
	background: -webkit-radial-gradient(0% 100%, ellipse cover, rgba(104,128,138,.4) 10%,rgba(138,114,76,0) 40%), linear-gradient(to bottom,  rgba(57,173,219,.25) 0%,rgba(42,60,87,.4) 100%), linear-gradient(135deg,  #670d10 0%,#092756 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3E1D6D', endColorstr='#092756',GradientType=1 );
}

.primary-cta {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    opacity: 0;
    transform: translateY(20px);
}

/* Fade-in animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-first {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.fade-in-second {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.fade-in-third {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

/* Glow effect */
.glow-effect {
    position: relative;
    z-index: 1;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg,
        #ff0080, #ff8c00, #40e0d0, #ff0080,
        #8a2be2, #00ff00, #ff1493, #00bfff);
    background-size: 200% 200%;
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    filter: blur(8px);
    animation: glowShift 3s ease-in-out infinite, glowPulse 2s ease-in-out infinite alternate;
    transition: opacity 0.3s ease;
}

.glow-effect:hover::before {
    opacity: 0.8;
}

@keyframes glowShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes glowPulse {
    0% {
        filter: blur(8px) brightness(1);
    }
    100% {
        filter: blur(12px) brightness(1.2);
    }
}

/* Hover effects */
.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.primary-cta:active {
    transform: translateY(0);
}

/* Inner shimmer effect */
.primary-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent);
    transition: left 0.5s ease;
}

.primary-cta:hover::after {
    left: 100%;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .primary-cta {
        padding: 12px 24px;
        font-size: 20px;
        width: 100%;
    }
}

/* Hero text styles */
.footer-text {
    color: white;
}
.fee-info {
    max-width: 600px; /* Restricts width for better readability */
    margin: 0 auto; /* Centers content */
    font-size: 1.1rem; /* Slightly larger text */
    line-height: 1.0;
}

body {
    font-family: Arial, sans-serif;
}
.sidebar {
    background: #f8f9fa;
    padding: 20px;
}
.content {
    padding: 20px;
}
.table {
    margin-top: 20px;
}
.card-team {
    max-width: 320px;
    margin: auto;
}
.custom-btn {
    background-color: var(--secondary) !important;

    color: white !important; /* Ensures text is readable */
}
.custom-btn:hover {
    background-color: #e04a2b !important; /* Slightly darker on hover */
}


       .dates_form-title {
            color: #495057;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }
        .btn-primary {
            background-color: #0d6efd;
            border-color: #0d6efd;
            padding: 0.5rem 2rem;
        }

.about {
    background: url('../images/hero1.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    padding-top: 100px; /* Prevent content from being hidden behind the navbar */
}

/* Dark overlay for better text readability */
.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
}

/* Hero text styles */
.about-text {
    position: relative;
    z-index: 2; /* Ensures text is above overlay */
    color: white;
    padding: 20px;
}

/* Button Customization */
.btn-warning {
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
}
.carousel-item img {
    width: 100%; /* Ensure responsiveness */
    height: 500px; /* Default height for small screens */
    object-fit: cover; /* Ensures images scale properly */
}

/* Increase image height for large screens (LG: 992px and above) */
@media (min-width: 992px) {
    .carousel-item img {
        height: 600px; /* Increase height for large screens */
    }
}

/* Even larger images for extra-large screens (XL: 1200px and above) */
@media (min-width: 1200px) {
    .carousel-item img {
        height: 800px; /* Increase height for extra-large screens */
    }
}
.club-hero{
height : 80 vh ;
}

.icon-square {
    padding: 0 !important;
    margin: 0 !important;
}

.icon-square img {
    margin-top: -10px; /* Adjust as needed */
}
body{
 background: #efeff3;
 margin: 0;
 font-family: 'Raleway', sans-serif;
 -webkit-font-smoothing: antialiased;
  color:#212121;
}
.wrapper{
  position: relative;
  clear:both;
  margin: 0 auto 75px auto;
  width: 100%;
  overflow: hidden;
}
.top{
  background: #4e89ae;
  height: 180px;
  border-top: 20px solid #43658b;
}

.top .title {
  width: 700px;
  margin: 38px auto 0 auto;
}

.title h1 {
  font-size:24px;
  color:#FFF;
  font-weight:500;
}

.content{
    margin: -80px auto 100px;
  padding-bottom: 20px;
}

.card{
  background: #fff;
  padding:20px;
  margin: 20px auto 0 auto;
  box-shadow: 0 2px 4px rgba(100,100,100,.1);
}

.article-card{
  background: #fff;
  padding:5px;
  margin: 20px auto 0 auto;
  box-shadow: 0 2px 4px rgba(100,100,100,.1);
}


.card h2 {
  font-size:21px;
  font-weight:500;
}

.card h2 a {
  color:#CC0000;
  text-decoration:none;
}

.card .text {
  color:#212121;
  margin-top:10px;
  font-size:15px;
  line-height:22px;
}


/* About Page Specific Styles */

/* Hero Section */
.about-hero {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.4);
    z-index: 1;
}

.hero-content {
    background-color: rgba(var(--accent-1-rgb), 0.75);
    backdrop-filter: blur(5px);
    max-width: 650px;
    margin: 0 auto;
    z-index: 2;
}

.divider-light {
    height: 3px;
    width: 80px;
    background-color: #fff;
}

/* Stats Cards */
.stats-card {
    background-color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid var(--primary);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.stats-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Section Headers */
.section-header {
    position: relative;
}

.divider {
    height: 3px;
    width: 80px;
    background-color: var(--accent-1);
    margin: 1rem auto;
}

/* Director Section */
.director-img-container {
    padding: 10px;
}

.img-border {
    border: 3px solid var(--accent-1);
    top: -10px;
    left: -10px;
    right: 20px;
    bottom: 20px;
    z-index: -1;
}

.director-message {
    background-color: #f8f9fa;
    position: relative;
    border-left: 4px solid var(--primary);
}

.quote-mark {
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 60px;
    line-height: 1;
    color: var(--accent-1);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.quote-mark.closing {
    left: auto;
    right: 20px;
    top: auto;
    bottom: -40px;
}

.director-name-badge {
    background-color: #fff;
    padding: 15px;
    margin-top: -30px;
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary);
}

/* Team Section */
.team-section {
    background-color: #f8f9fa;
}

.team-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img-container {
    position: relative;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    background-color: rgba(var(--primary-rgb), 0.8);
    transition: bottom 0.3s;
}

.team-card:hover .team-social {
    bottom: 0;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--accent-1);
    color: #fff;
}

.team-name {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.team-position {
    color: var(--accent-1);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-divider {
    height: 2px;
    width: 50px;
    background-color: var(--accent-1);
    margin-bottom: 15px;
}

.team-details {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.team-details li {
    margin-bottom: 8px;
    display: flex;
    align-items: start;
    gap: 10px;
}

.team-details i {
    color: var(--accent-1);
}

/* History Timeline */
.timeline-container {
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    width: 4px;
    background-color: var(--primary);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    width: 100%;
    margin-bottom: 70px;
    position: relative;
    display: flex;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::after {
    content: '';
    display: block;
    clear: both;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background-color: var(--accent-1);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
    z-index: 1;
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px var(--primary);
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 0;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-year {
    background-color: var(--primary);
    padding: 10px;
    text-align: center;
}

.timeline-year img {
    max-height: 80px;
    max-width: 100%;
}

.timeline-body {
    padding: 20px;
    background-color: #fff;
}

/* CTA Section */
.cta-section {
    background-color: #f8f9fa;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--accent-1));
    color: #fff;
}

.custom-btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.custom-btn-outline:hover {
    background-color: #fff;
    color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-right: auto;
    }

    .img-border {
        display: none;
    }

    .director-name-badge {
        margin: -30px 0 0 0;
    }
}

/* Footer Styles */

/* CTA Section - Optimized */
.cta-section {
    position: relative;
    z-index: 1;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--accent-2));
    color: #fff;
    transition: transform 0.3s;
}

.cta-box:hover {
    transform: translateY(-5px);
}

.custom-btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.custom-btn-outline:hover {
    background-color: #fff;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Main Footer */
.footer-main {
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.footer-top {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Footer Logo */
.footer-logo-container {
    display: inline-block;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.footer-logo {
    width: 160px;
    height: 160px;
    object-fit: contain;
    transition: transform 0.3s;
}

.footer-logo:hover {
    transform: scale(1.05);
}

/* Footer Headings and Content */
.footer-heading {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    position: relative;
}

.footer-divider {
    width: 40px;
    height: 3px;
    background-color: var(--accent-1);
    margin-bottom: 1.25rem;
}

.footer-address {
    font-style: normal;
    line-height: 1.6;
    color: #555;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 500;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-link {
    color: #555;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-link:before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--accent-1);
    transition: transform 0.2s;
}

.footer-link:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.footer-link:hover:before {
    transform: translateX(3px);
}

/* Social Media Section */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link-container {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s;
}

.social-link-container:hover {
    background-color: rgba(var(--primary-rgb), 0.1);
    transform: translateX(5px);
}

.social-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transition: transform 0.3s;
}

.social-link-container:hover .social-icon {
    transform: scale(1.1);
}

.social-name {
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.05);
}

.copyright {
    color: #777;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 20px;
}

.legal-link {
    color: #777;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.legal-link:hover {
    color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .footer-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .legal-links {
        justify-content: center;
        gap: 15px;
    }

    .social-link-container {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-link {
        padding-left: 0;
    }

    .footer-link:before {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer-top > div:nth-child(3),
    .footer-top > div:nth-child(4) {
        margin-top: 2rem;
    }
}
/* parent header styling */
 .contact-section-bulls {
            position: relative;

            background: linear-gradient(135deg, #bcc4c4 0%, #bcc4c4 50%, #f69c5d 100%);

            overflow: hidden;
        }

        .contact-section-bulls::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;

        }
        .section-header {
            text-align: center;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out;
        }
        .section-subtitle-bulls {
            font-size: 1.2rem;
            color: black;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        .contact-info {
            display: grid;
            gap: 1.5rem;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 0, 0, 0.2);
            border-radius: 20px;
            padding: 1rem;
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .info-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: black;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }


        .info-title a {
            font-size: 1.3rem;
            color:black !important;
        }
        .info-title-bulls i {
            font-size: 1.3rem;
        }

        .info-content {
            color: rgba(0, 0, 0, 0.8);
            line-height: 1.6;
        }

        .info-content a {
            color: rgba(0, 0, 0, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .info-content a:hover {
            color: #667eea;
        }
        .section-title {
            font-size: clamp(2.5rem, 6vw, 3.5rem);
            font-weight: 800;
            background: linear-gradient(135deg, #764ba2 0%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.8rem;
        }
         .section-title-bulls {
            font-size: clamp(2.5rem, 6vw, 3.5rem);
            font-weight: 800;
            background: linear-gradient(135deg, #24a8e1 0%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.8rem;
        }
        .flashes{
            background-color: #d5c697;
            border-radius: .75rem;
        }
        .alert-mod {
            background-color: #c9ecf4;
            border-radius: .75rem;
            padding: 0.5rem 0.5rem;
            }
        .comments{
            text-align: left;   /* aligns text to the left */
            font-size: 18px;
            padding: 0.2rem 0.3rem;
        }
        @media (max-width: 768px) {
    .article-container {
        padding: 0.1rem 0.1rem;
        border-radius: 2rem !important;
    }
    }
    .card-body {
    flex: 1 1 auto;
    padding: 0.5rem 0.95rem;
    color: var(--bs-card-color);

    .eng-container{
     padding: 0.1rem 0.1rem;
        border-radius: 2rem !important;
        background-color:#fcd8d2;
    }
     .article-body {
  font-size: 20px;   /* or 1.125rem */
  line-height: 1.6;  /* optional: improves readability */
}

/* chat interface design */


