/*******************************/
/********* General CSS *********/
/*******************************/    
body {
    color: #454040;
    font-weight: 500;
    background: #ffffff;
    font-family: 'Quicksand', sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: black;
}

a {
    color: #4a4c70;
    transition: color 0.3s ease;
}

a:hover,
a:active,
a:focus {
    color: black;
    outline: none;
    text-decoration: none;
}

/* Custom Button Styling */
.btn.btn-custom,
.btn.btn-custom1 {
    padding: 12px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: bolder;
    border-radius: 0;
    transition: ease-out 0.3s;
    box-shadow: inset 0 0 0 0;
}

/* Button with red hover effect */
.btn.btn-custom {
    color: #777777;
    border: 2px solid black;
    box-shadow: inset 0 0 0 0 rgb(189, 9, 9);
}

.btn.btn-custom:hover {
    color: white;
    box-shadow: inset 0 0 0 30px rgb(189, 9, 9);
}

/* Button with white hover effect (used for carousel) */
.btn.btn-custom1 {
    color: white;
    border: 2px solid white;
    box-shadow: inset 0 0 0 0 white;
}

.btn.btn-custom1:hover {
    color: black;
    box-shadow: inset 0 0 0 30px white;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1521px;
}

/* Specific override for carousel's container-fluid to span full width */
.carousel .container-fluid {
    max-width: 100%;
    width: 100%;
    padding: 0;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
    font-size: inherit;
    margin-left: 0;
}


/**********************************/
/****** Loader & Back to Top ******/
/**********************************/
#loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0s linear 0.3s;
    z-index: 999;
}

#loader.show {
    transition: opacity 0.6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #dddddd;
    border-top: 5px solid #FDBE33;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.back-to-top {
    position: fixed;
    display: none;
    background: rgb(189, 9, 9);
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top i {
    color: white;
    padding-top: 10px;
}

.back-to-top:hover {
    background: white;
}

.back-to-top:hover i {
    color: black;
}


/**********************************/
/********** Top Bar & Nav *********/
/**********************************/
.top-bar {
    position: absolute;
    height: 45px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 3;
}

.top-bar .top-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-bar .top-bar-left img {
    max-width: 180px;
    height: auto;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.navbar {
    position: relative;
    transition: 0.5s;
    z-index: 999;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: 0.5s;
}

.navbar .navbar-brand {
    margin: 0;
    color: #ffffff;
    font-size: 45px;
    line-height: 0px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 60px;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 15px 8px 15px;
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: rgb(189, 9, 9);
    transition: none;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: none;
    background: #ffffff;
    padding: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    min-width: 200px;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.navbar .dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar .dropdown-menu .dropdown-item {
    color: #333;
    padding: 12px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 500;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus {
    background-color: #f8f9fa;
    color: rgb(189, 9, 9);
}

/*******************************/
/********** Hero CSS ***********/
/*******************************/
.carousel {
    position: relative;
    width: 100vw;
    min-height: 100px; /* Increased height */
    background: #ffffff;
    margin-bottom: 45px;
    overflow: hidden;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    min-height: 700px; /* Increased height */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: auto;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-text {
    position: relative;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
    padding: 100px 20px;
}

.carousel .carousel-text h1 {
    text-align: center;
    color: #ffffff;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel .carousel-text p {
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    margin-bottom: 25px;
}

.carousel .carousel-btn .btn:first-child {
    margin-right: 15px;
}

.carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 60px;
    top: calc(50% - 30px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 9;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FDBE33;
    background: rgba(256, 256, 256, 0.2);
    font-size: 22px;
    transition: 0.3s;
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #FDBE33;
}

#videoModal .modal-dialog,
#videoModal2 .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body,
#videoModal2 .modal-body {
    position: relative;
    padding: 0;
}

#videoModal .close,
#videoModal2 .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 210px 0 90px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(img/mainimg5.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header h2 {
    position: relative;
    color: white;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: rgb(189, 9, 9);
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #ffffff;
}

.page-header a:hover {
    color: #FDBE33;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #ffffff;
}

.page-header a:last-child::after {
    display: none;
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 45px auto;
}

.section-header p {
    margin-bottom: 5px;
    position: relative;
    font-size: 30px;
    font-weight: 800;
    text-transform: capitalize;
    color: rgb(189, 9, 9);
}

.section-header h2 {
    margin: 0;
    font-size: 50px;
    font-weight: 700;
}


/*******************************/
/********* Media Queries *******/
/*******************************/
@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
    .top-bar .top-bar-left img {
        max-height: 180px;
    }
    .navbar {
        position: absolute;
        width: 100%;
        top: 45px;
        padding: 20px 60px;
        background: transparent !important;
        z-index: 9;
    }
    .navbar.nav-sticky {
        padding: 10px 60px;
        background: #20212B !important;
        border-bottom: none;
    }
    .page .navbar {
        background: #20212B !important;
    }
    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 17px;
        letter-spacing: 1px;
        font-weight: bolder;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 15px 25px;
        background: #20212B !important;
    }
    .navbar .navbar-brand {
        padding: 5px 0;
        font-size: 16px;
        letter-spacing: 1px;
        line-height: normal;
    }
    .navbar a.nav-link {
        padding: 5px;
    }
    .navbar .dropdown-menu {
        box-shadow: none;
        border-radius: 0;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        background: rgba(255, 255, 255, 0.05);
    }
    .navbar .dropdown-menu .dropdown-item {
        color: #ffffff;
    }
    .navbar .dropdown-menu .dropdown-item:hover {
        background-color: transparent;
        color: rgb(189, 9, 9);
    }
    .top-bar {
        display: none !important;
    }
    .carousel .carousel-item,
    .carousel .carousel-img,
    .carousel .carousel-img::after {
        min-height: auto;
    }
    .carousel .carousel-text {
        max-width: 90%;
        padding-top: 100px;
        padding-bottom: 50px;
        justify-content: flex-start;
    }
    .carousel .carousel-text h1 {
        font-size: 35px;
        margin-bottom: 15px;
    }
    .carousel .carousel-text p {
        font-size: 16px;
        padding: 0 5px;
    }
    .carousel .carousel-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .carousel .carousel-btn .btn {
        width: 80%;
        max-width: 250px;
        margin: 5px 0 !important;
    }
    .page-header {
        padding: 60px 0;
    }
    .page-header h2 {
        font-size: 45px;
    }
    .page-header a {
        font-size: 20px;
    }
    .section-header h2 {
        font-size: 45px;
    }
}

@media (max-width: 767.98px) {
    .carousel .carousel-text h1 {
        font-size: 30px;
    }
    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
    .page-header {
        padding: 45px 0;
    }
    .page-header h2 {
        font-size: 35px;
    }
    .page-header a {
        font-size: 18px;
    }
    .section-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h1 {
        font-size: 25px;
    }
    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
    .section-header h2 {
        font-size: 35px;
    }
}

/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
  /*padding: 45px 0;*/
    padding: 0px;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {
    width: 100%;
    height: 100vh;
}

.about .about-tab {
    width: 100%;
}

.about .about-tab .nav.nav-pills .nav-link {
    padding: 8px;
    font-weight: 600;
    background: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    transition: none;
}

.about .about-tab .nav.nav-pills .nav-link:hover,
.about .about-tab .nav.nav-pills .nav-link.active {
    color: rgb(189, 9, 9);
    padding-bottom: 7px;
    border-bottom: 3px solid black;
}

.about .about-tab .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.about .about-tab .tab-content .container {
    padding: 0;
}

@media (max-width: 991.98px) {
    .about .section-header {
        margin-top: 30px;
    }
}

/*****NEW CODE FOR ABOUT PAGE****/
/* Custom styles for the About Us page content */
.about-section {
    padding: 60px 0;
    background: #fff;
}

.about-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #20212B; /* Dark text for headings */
    text-align: center;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666; /* Lighter text for paragraphs */
}

.about-img {
    position: relative;
    width: 100%; /* Ensure it takes full width of its column */
    height: 100%;
    min-height: 300px; /* Minimum height for the image container */
    background-size: cover;
    background-position: center;
    border-radius: 8px; /* Slightly rounded corners for images */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}


/* Existing .about styles from your input, adjusted for compatibility */
.about {
    position: relative;
    width: 100%;
    /*padding: 45px 0; /* This padding might be overridden by .about-section padding */
    padding: 0px;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-tab {
    width: 100%;
}

.about .about-tab .nav.nav-pills .nav-link {
    padding: 8px;
    font-weight: 600;
    background: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    transition: none;
}

.about .about-tab .nav.nav-pills .nav-link:hover,
.about .about-tab .nav.nav-pills .nav-link.active {
    color: rgb(189, 9, 9);
    padding-bottom: 7px;
    border-bottom: 3px solid black;
}

.about .about-tab .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.about .about-tab .tab-content .container {
    padding: 0;
}

@media (max-width: 991.98px) {
    .about .section-header {
        margin-top: 30px;
    }
}

/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 45px;
    transition: .3s;
}

.service .service-icon {
    position: relative;
    width: 60px;
}

.service .service-icon i {
    position: relative;
    display: block;
    color: rgb(189, 9, 9);
    font-size: 60px;
    line-height: 60px;
    margin-top: 5px;
}

.service .service-text {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
}

.service .service-text::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% - 10px);
    top: 5px;
    left: 0;
    background: black;
}

.service .service-text::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 40px;
    top: calc(50% - 20px);
    left: -1px;
    background: rgb(189, 9, 9);
}

.service .service-text h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service .service-text p {
    margin: 0;
}

/*******************************/
/********** Facts CSS **********/
/*******************************/
.facts {
    position: relative;
    width: 100%;
    /* Increased margin for better separation from other sections on desktop */
    margin: 60px 0; 
    min-height: 400px;
    display: flex;
    align-items: center;

    /* REVISED FIX: Remove background-color here. Let the ::before handle the overlay. */
    background-color: transparent; 
    
    /* Apply ONLY the image here */
    background-image: url(img/factsimg.png);
    
    /* Ensure the image covers the container and is centered */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    /* Desktop default: fixed attachment for parallax effect */
    background-attachment: fixed; 
}

/* NEW: Reliable Transparent Overlay using a Pseudo-element */
.facts::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Apply the overlay color here (0.5 opacity black) */
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1; /* Ensure it is below the content (which should have z-index: 2 or be default) */
}

/* Ensure all facts content sits ABOVE the overlay */
.facts .container {
    position: relative;
    z-index: 2; 
}


/* NEW DESIGN: Horizontal Flex Layout for each fact item */
.facts .facts-item {
    display: flex; /* Use flex to align icon and text horizontally */
    flex-direction: row;
    align-items: center; /* Vertically center content */
    margin: 20px 0; 
    padding: 25px 15px; /* Increased padding */
    
    background-color: transparent; 
    border-radius: 0; 
    
    /* Subtle accent: right border that moves to the left on hover */
    border-left: 3px solid transparent; 
    transition: all 0.4s ease; 
}

/* Hover effect: Highlights the item with the accent border */
.facts .facts-item:hover {
    background-color: rgba(255, 255, 255, 0.05); /* Subtle hover background fade */
    border-left: 3px solid rgb(189, 9, 9); /* Accent line appears on the left */
}

/* Styling the Icon - Now a bold, outlined accent piece */
.facts .facts-item i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px; /* Larger icon container */
    height: 80px;
    margin: 0 20px 0 0; 
    font-size: 70px; 
    
    /* Outlined/Bordered look for a modern, architectural feel */
    color: rgb(178, 6, 6); /* Accent color for the icon */
    background: transparent; 
    
    line-height: normal; 
    transition: all 0.4s ease;
}

/* Fact Text Block - Contains number and description */
.facts .facts-text {
    padding-left: 0; 
    text-align: left; /* Align text to the left */
}

.facts .facts-text h3 {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 58px; /* Prominent count number */
    font-weight: 800; 
    margin-bottom: 5px; /* Space between number and description */
}

.facts .facts-text h3::after {
    position: absolute;
    top: 5px; 
    color: rgba(255, 255, 255, 0.8); 
    font-size: 26px; 
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.facts .facts-text h3.facts-plus::after {
    content: "\f067";
    right: -35px; 
}

.facts .facts-text h3.facts-dollar::after {
    content: "\f155";
    right: -28px; 
}

.facts .facts-text p {
    color: rgba(255, 255, 255, 0.7); /* Muted white for secondary text */
    font-size: 17px; 
    font-weight: 400; 
    margin: 0;
}

/***************************************/
/********** Mobile CSS Fixes ***********/
/***************************************/

@media (max-width: 767.98px) {

    .facts {
        /* Mobile fixes for background display and overlap */
        background-attachment: scroll; 
        margin: 0; 
        padding: 100px 0 30px 0; 
        height: auto; 
        min-height: auto;
        display: block; 
    }

    /* Adjust the spacing and width of the cards on mobile */
    .facts .col-lg-3,
    .facts .col-md-6 {
        margin-bottom: 0; 
        padding: 0 10px; /* Increased horizontal padding slightly */
    }

    /* Keep facts-item as a flex row on mobile for the new layout */
    .facts-item {
        margin: 15px 0; /* More vertical space between items */
        padding: 10px 0; 
        border-left: 3px solid transparent; 
        border-right: 3px solid rgba(255, 255, 255, 0.1); /* Subtle vertical divider */
    }

    .facts .facts-item:hover {
        border-left: 3px solid rgb(189, 9, 9);
        border-right-color: rgba(255, 255, 255, 0.2);
    }
    
    /* Styling the Icon on mobile */
    .facts .facts-item i {
        width: 50px; 
        height: 50px;
        font-size: 55px;
        margin: 0 15px 0 0; 
        border-width: 2px; /* Thinner border on mobile */
    }

    /* Adjust font size for better mobile readability */
    .facts .facts-text {
        padding-left: 0;
        /* Ensure the text content takes the remaining space */
        flex-grow: 1; 
    }

    .facts-text h3 {
        font-size: 32px; /* Slightly smaller number */
        line-height: 1.1;
        margin-bottom: 2px;
    }

    .facts .facts-text h3::after {
        top: 0px; 
        font-size: 14px;
        right: -18px;
    }

    .facts-text p {
        font-size: 12px;
        font-weight: 400;
    }
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
/* General Blog Section Styling */
/* General Blog Section Styling */
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
    background-color: #f8f9fa; /* A slightly lighter background for the whole section */
}

/* Article Block (The clickable unit) */
.blog .blog-item {
    margin-bottom: 30px;
    background: #ffffff; /* White background for individual blocks */
    border-radius: 8px; /* Slightly rounded corners for a softer look */
    overflow: hidden; /* Ensures image corners match block corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Subtle shadow for depth */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth hover transition */
    display: flex; /* Use flexbox to organize image and content */
    flex-direction: column; /* Stack image, then content */
    text-decoration: none; /* Remove default underline from the link */
    color: inherit; /* Inherit text color for consistency */
    height: 550px; /* Fixed height for each blog block for consistency */
}

.blog .blog-item:hover {
    transform: translateY(-8px); /* Lifts the card on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* More pronounced shadow on hover */
}

.blog .blog-img {
    width: 100%;
    height: 200px; /* Fixed height for images */
    overflow: hidden; /* Crop images if they don't fit the aspect ratio */
}

.blog .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images cover the area without distortion */
    transition: transform 0.3s ease-in-out; /* Smooth zoom on hover */
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.05); /* Slightly zooms image on block hover */
}

/* New wrapper to control overall content height */
.blog .blog-content-wrapper {
    display: flex; /* Use flexbox for text and actions */
    flex-direction: column;
    justify-content: space-between; /* Pushes button to the bottom */
    padding: 25px; /* Padding for the entire content area */
    flex-grow: 1; /* Allows it to take up remaining space */
}

/* Blog Meta (Author and Date) */
.blog .blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #999999;
    margin-bottom: 15px;
}

.blog .blog-meta i {
    margin-right: 5px;
    color: rgb(189, 9, 9); /* Accent color for icons */
}

.blog .blog-text {
    flex-grow: 1; /* Allows text section to grow */
    margin-bottom: 15px; /* Space between text and button */
}

.blog .blog-text h3 {
    font-size: 20px; /* REDUCED FONT SIZE */
    font-weight: 700;
    margin-bottom: 10px;
    color: #4a4c70; /* Consistent heading color */
    line-height: 1.3;
    display: -webkit-box; /* For multi-line ellipsis */
    -webkit-line-clamp: 2; /* Limit title to 2 lines */
    line-clamp: 2; /* Standard property for compatibility */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}



/* "View Article" Button Styling */
.blog .blog-actions {
    margin-top: auto; /* Pushes the button to the bottom of the wrapper */
    text-align: right; /* Align button to the right */
}

.blog .view-article-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgb(212, 49, 49); /* Accent color for button */
    color: black; /* Text color for button */
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer; /* Indicate it's clickable */
    text-decoration: none; /* Ensure no underline */
    border: 1px solid black; /* Border for hover effect */
}

.blog .view-article-btn:hover {
    background-color: black; /* Darker background on hover */
    color: white; /* Accent text on hover */
    border-color: white;
}

.blog .view-article-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.blog .view-article-btn:hover i {
    transform: translateX(5px); /* Arrow moves on hover */
}

/* Pagination Styling (remains mostly the same) */
.blog .pagination {
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog .pagination .page-link {
    color: #4a4c70;
    border-radius: 5px;
    border-color: #dee2e6;
    margin: 0 5px;
    padding: 8px 15px;
    transition: all 0.3s ease-in-out;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #ffffff;
    background: #FDBE33;
    border-color: #FDBE33;
}

.blog .pagination .disabled .page-link {
    color: #999999;
    background-color: #e9ecef;
    cursor: not-allowed;
}

.blog .blog-text p.summary-text {
    margin: 0;
    font-size: 16px;
    color: #6c757d; /* Softer text color for summary */
    line-height: 1.6;
    height: 153.6px; /* Adjusted for 6 lines (16px font * 1.6 line-height * 6 lines) */
    overflow: hidden; /* Hide overflow text */
    display: -webkit-box; /* For multi-line ellipsis */
    -webkit-line-clamp: 6; /* Limit summary to 6 lines */
    line-clamp: 6; /* Standard property for compatibility */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis; /* Add ellipsis for truncated text */
}

/* Also, review your responsive adjustments if they override this for smaller screens */
@media (max-width: 767.98px) {
    .blog .blog-text p.summary-text {
        height: auto; /* You might want to keep this for mobile to auto-expand, or adjust as well */
        -webkit-line-clamp: 6; /* Adjust this to match the desired lines on mobile too if not 'auto' */
        line-clamp: 6; /* Standard property for compatibility */
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .blog .section-header h2 {
        font-size: 38px;
    }
    .blog .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .blog .blog-item {
        height: 460px; /* Adjust height for tablets if needed */
    }
    .blog .blog-img {
        height: 180px; /* Adjust image height for tablets */
    }
    .blog .blog-text h3 {
        font-size: 18px; /* Further reduced for tablets */
    }
    .blog .blog-text p.summary-text {
        height: 70px; /* Adjust summary height for tablets */
    }
}

@media (max-width: 767.98px) {
    .blog .section-header h2 {
        font-size: 30px;
    }
    .blog .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .blog .blog-item {
        height: auto; /* Allow height to auto-adjust on mobile for better content display */
        min-height: 450px; /* But ensure a minimum height */
    }
    .blog .blog-img {
        height: 220px; /* Larger image on mobile */
    }
    .blog .blog-content-wrapper {
        padding: 20px;
    }
    .blog .blog-text h3 {
        font-size: 18px; /* Adjusted for mobile */
        -webkit-line-clamp: 3; /* Allow more lines for title on mobile */
        line-clamp: 3; /* Standard property for compatibility */
    }
    .blog .blog-actions {
        text-align: center; /* Center button on mobile */
        margin-top: 20px;
    }
}

/* Add to your existing CSS file */

/* Basic styling for Owl Carousel navigation arrows */
.blog-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #4a4c70 !important; /* Your darker color */
    color: #FDBE33 !important; /* Your accent color */
    padding: 10px 15px !important;
    border-radius: 50% !important; /* Make them round */
    font-size: 20px !important;
    line-height: 1;
    transition: all 0.3s ease;
    outline: none; /* Remove outline on focus */
}

.blog-carousel .owl-nav button:hover {
    background: #FDBE33 !important;
    color: #4a4c70 !important;
}

.blog-carousel .owl-nav .owl-prev {
    left: -40px; /* Adjust position */
}

.blog-carousel .owl-nav .owl-next {
    right: -40px; /* Adjust position */
}

/* Hide navigation arrows on smaller screens if desired */
@media (max-width: 767.98px) {
    .blog-carousel .owl-nav {
        display: none;
    }
}

/*******************************/
/*********** Team CSS **********/
/*******************************/
/* Scopes the dark background, padding, and font to ONLY the section */
        .team-section-container {
            background-color: #000000; /* Black background */
            padding: 4rem 0;
            font-family: 'Quicksand', sans-serif; 
            color: #ffffff; /* Default white text for the section */
        }
        @media (min-width: 768px) {
            .team-section-container {
                padding: 6rem 0; 
            }
        }

        .team-text-content-classy h3{
            color: white;
        }
        
        /* ================================================= */
        /* HEADER STYLING                                    */
        /* ================================================= */
        .section-header-classy .section-subtitle-classy {
            color: #dc2626; /* Red */
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-size: 30px;
        }
        .section-header-classy .section-title-classy {
            color: #ffffff;
            font-weight: 700;
            font-size: 2.5rem;
        }
        
        /* Red accent line/divider */
        .accent-line-classy {
            width: 4rem;
            height: 0.25rem;
            background-color: #dc2626;
            margin: 1rem auto 0;
            border-radius: 9999px;
        }

        /* ================================================= */
        /* TEAM CARD STYLING                                 */
        /* ================================================= */

        .team-card-classy {
            background-color: #111111; /* Deeper black for card */
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.1); 
            transition: all 0.4s ease;
            text-align: center;
            height: 100%;
            padding: 2rem;
            border-radius: 0.75rem;
            overflow: hidden;
            color: #ffffff; 
        }

        .team-card-classy:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
            background-color: #1a1a1a;
        }
        
        /* Circular Image Wrapper */
        .team-image-wrapper-classy {
            width: 170px;
            height: 170px;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid black; /* Black ring border */
            box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.1); 
            transition: transform 0.4s ease;
            filter: grayscale(10%);
        }
        
        .team-card-classy:hover .team-image-wrapper-classy {
            transform: scale(1.05);
            filter: grayscale(0%);
        }

        .team-image-wrapper-classy img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block; 
        }

        /* Text Content */
        .team-text-content-classy h3 {
            font-size: 1.875rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .team-designation-classy {
            color: #dc2626;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 0.875rem;
        }
        
        .description-text-classy {
            color: #d1d5db; /* Light gray text */
            font-size: 1rem;
            line-height: 1.625;
            margin-bottom: 1.5rem; /* Increased margin for better spacing */
        }


        /* Social Links */
        .team-socials-overlay-classy {
            display: flex;
            justify-content: center;
        }
        
        .social-icon-classy {
            background-color: transparent;
            color: #ffffff;
            border: 1px solid #dc2626; 
            width: 36px;
            height: 36px;
            line-height: 36px;
            display: flex; /* Using flex for perfect centering of Font Awesome icon */
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            margin: 0 0.4rem;
            transition: background-color 0.3s ease, color 0.3s ease;
            font-size: 1rem;
            text-decoration: none;
        }

        .social-icon-classy:hover {
            background-color: #dc2626;
            color: #111111;
        }
        
        /* Call to Action Button Styling */
        .btn-team-cta-classy {
            background-color: #dc2626;
            color: #ffffff;
            padding: 0.75rem 2.5rem;
            border-radius: 9999px;
            transition: all 0.3s ease;
            font-weight: 700;
            box-shadow: 0 4px 10px rgba(220, 38, 38, 0.4);
            display: inline-block;
            text-decoration: none;
        }

        .btn-team-cta-classy:hover {
            background-color: #b91c1c;
            transform: translateY(-2px);
        }

        /*******************************/
/********** Event CSS **********/
/*******************************/
/* Event Section General Styling */
.event-section {
    background-color: #f8f8f8; /* Very light grey background for the section */
    padding: 80px 0; /* Vertical padding for spacing */
}

.event-section .section-header {
    margin-bottom: 60px;
}

.event-section .section-subtitle {
    color: rgb(189, 9, 9); /* Red accent color */
    font-size: 30px; /* Adjusted for better hierarchy */
    font-weight: 700; /* Bold for emphasis */
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1.5px; /* Slightly more letter spacing */
}

.event-section .section-title {
    font-size: 2.5em; /* Larger, more impactful title */
    font-weight: 800; /* Extra bold */
    color: #000000; /* Black for main title */
    line-height: 1.2;
    position: relative;
    padding-bottom: 15px; /* Space for underline */
}

.event-section .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px; /* Underline width */
    height: 4px; /* Underline thickness */
    background-color: rgb(189, 9, 9); /* Red underline */
    border-radius: 2px;
}

/* Modern Event Card Styling */
.modern-event-card {
    background: #ffffff;
    border-radius: 15px; /* More pronounced rounded corners */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1); /* Soft, subtle shadow */
    overflow: hidden; /* Ensures rounded corners apply to image */
    height: 100%; /* Important for equal height in flex/grid layouts */
    display: flex;
    flex-direction: column; /* Stack image and content vertically */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-event-card:hover {
    transform: translateY(-10px); /* Lift effect on hover */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2); /* More prominent shadow on hover */
}

/* Card Image Container */
.card-image-container {
    position: relative;
    width: 100%;
    height: 250px; /* Adjusted image height */
    overflow: hidden;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area, cropping as needed */
    transition: transform 0.4s ease; /* Smooth zoom on hover */
}

.modern-event-card:hover .card-image-container img {
    transform: scale(1.08); /* Slight zoom effect on image hover */
}

/* Date Badge Overlay */
.date-badge {
    position: absolute;
    bottom: 20px; /* Slightly more from bottom */
    left: 20px; /* Slightly more from left */
    background: rgb(189, 9, 9); /* Vibrant red accent color for date */
    color: #fff;
    padding: 12px 18px; /* Increased padding */
    border-radius: 12px; /* More rounded */
    text-align: center;
    font-weight: 700;
    line-height: 1.1;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25); /* Stronger shadow for badge */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px; /* Ensure a minimum width for consistent shape */
}

.date-badge .date-day {
    font-size: 2.8em; /* Larger day number */
    line-height: 1;
}

.date-badge .date-month {
    font-size: 1.1em;
    text-transform: uppercase;
    margin-top: 5px;
}

.date-badge .date-year {
    font-size: 0.8em;
    opacity: 0.9;
    margin-top: 3px;
}


/* Card Content Area */
.card-content-area {
    padding: 30px; /* Generous internal padding */
    flex-grow: 1; /* Allows content area to fill remaining vertical space */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes meta details and button to bottom */
}

.card-content-area .card-title {
    font-size: 2em; /* Prominent title */
    font-weight: 700;
    color: #000000; /* Black title */
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-content-area .card-tagline {
    font-size: 1.05em; /* Slightly larger tagline */
    font-weight: 600;
    color: #333333; /* Darker grey for tagline */
    margin-bottom: 15px;
    line-height: 1.5;
}

.card-content-area .card-description {
    font-size: 0.95em; /* Standard paragraph size */
    color: #555555; /* Medium grey for description */
    line-height: 1.7;
    margin-bottom: 25px; /* More space before meta details */
    flex-grow: 1; /* Allows description to expand and push other elements down */
}

/* Card Meta Details (Time & Location) */
.card-meta-details {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    gap: 15px 30px; /* More space between meta items */
    margin-bottom: 20px; /* Space before button */
    border-top: 1px solid #eeeeee; /* Subtle separator */
    padding-top: 20px; /* More padding above separator */
}

.card-meta-details .meta-item {
    font-size: 0.9em; /* Slightly larger meta text */
    color: #666666; /* Darker grey for meta items */
    white-space: nowrap; /* Prevent line breaks for each meta item */
    display: flex; /* Use flex to align icon and text */
    align-items: center;
}

.card-meta-details .meta-item i {
    color: rgb(189, 9, 9); /* Red accent color for icons */
    margin-right: 10px;
    width: 22px; /* Slightly larger icon area */
    text-align: center;
}

/* Custom Buttons (Primary and Secondary) */
.btn-primary-custom {
    display: inline-flex; /* Use inline-flex to align icon and text and allow it to sit next to other elements if needed */
    align-items: center;
    justify-content: center; /* Center content within the button */
    gap: 8px; /* Space between text and icon */
    padding: 12px 28px; /* Increased padding for a larger button */
    font-size: 1em; /* Slightly larger font size */
    font-weight: 600;
    border-radius: 50px; /* Fully rounded button */
    background: rgb(189, 9, 9); /* Main theme accent color (Red) */
    color: #ffffff;
    border: 2px solid rgb(189, 9, 9);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2); /* Red shadow for button */
}

.btn-primary-custom:hover {
    background: #000000; /* Black on hover */
    border-color: #000000; /* Black border on hover */
    color: #ffffff;
    text-decoration: none; /* Remove underline on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Darker shadow on hover */
}

.btn-secondary-outline-custom {
    padding: 12px 28px;
    font-size: 1em;
    font-weight: 600;
    border-radius: 50px;
    background: transparent;
    color: #000000; /* Black text for outline button */
    border: 2px solid #000000; /* Black border */
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary-outline-custom:hover {
    background: #000000; /* Fill with black on hover */
    color: #ffffff; /* White text on hover */
    border-color: #000000;
    text-decoration: none;
}


/* Responsive Adjustments */
@media (max-width: 991.98px) { /* Medium devices (tablets) */
    .event-section {
        padding: 60px 0;
    }
    .event-section .section-title {
        font-size: 2.2em;
    }
    .modern-event-card {
        margin-bottom: 30px; /* Add margin between stacked cards */
    }
    .card-image-container {
        height: 250px; /* Adjust image height for tablets */
    }
    .card-content-area {
        padding: 25px;
    }
    .card-content-area .card-title {
        font-size: 1.8em;
    }
    .card-content-area .card-tagline {
        font-size: 1em;
    }
    .card-description {
        font-size: 0.95em;
    }
    .card-meta-details {
        flex-direction: column; /* Stack meta items vertically */
        align-items: flex-start;
        gap: 8px; /* Reduce gap when stacked */
    }
    .btn-primary-custom, .btn-secondary-outline-custom {
        width: 100%; /* Make buttons full width */
        text-align: center;
        justify-content: center; /* Center content in button */
    }
}

@media (max-width: 767.98px) { /* Small devices (phones) */
    .event-section {
        padding: 40px 0;
    }
    .event-section .section-title {
        font-size: 1.8em;
        padding-bottom: 10px;
    }
    .event-section .section-title::after {
        width: 60px;
        height: 3px;
    }
    .card-image-container {
        height: 200px; /* Further adjust image height for phones */
    }
    .date-badge {
        bottom: 15px;
        left: 15px;
        padding: 10px 15px;
        min-width: 70px;
    }
    .date-badge .date-day {
        font-size: 2.5em;
    }
    .date-badge .date-month {
        font-size: 1em;
    }
    .card-content-area {
        padding: 20px;
    }
    .card-content-area .card-title {
        font-size: 1.6em;
        margin-bottom: 10px;
    }
    .card-content-area .card-tagline {
        font-size: 1em;
        margin-bottom: 12px;
    }
    .card-description {
        font-size: 0.9em;
        margin-bottom: 20px;
    }
    .card-meta-details {
        margin-bottom: 15px;
        padding-top: 15px;
    }
    .card-meta-details .meta-item {
        font-size: 0.9em;
    }
    .card-meta-details .meta-item i {
        margin-right: 8px;
        width: 18px;
    }
    .btn-primary-custom, .btn-secondary-outline-custom {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

/*******************************/
/********* Contact CSS *********/
/*******************************/
/* Custom styles for the Contact Us page content */
/* Custom styles for the Contact Us page content */
.contact-section {
    position: relative; /* Needed for the pseudo-element overlay */
    padding: 80px 0; /* Increased padding for more space */
    background-color: #f8f9fa; /* Fallback background color */
    background-image: url('./img/Killings.png'); /* Example background image */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden; /* Ensure overlay doesn't spill */
    margin-bottom: 60px; /* Added space below the section */
    margin-top: 60px;
}

/* Overlay for the background image */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity (changed from 70%) */
    z-index: 1;
}

.contact-section .container {
    position: relative; /* Ensure content is above the overlay */
    z-index: 2;
}

.contact-section .contact-info,
.contact-section .google-form-container {
    background-color: rgba(255, 255, 255, 0.95); /* Slightly transparent white background for information boxes */
    padding: 50px; /* Increased padding */
    border-radius: 12px; /* More rounded corners */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); /* More prominent shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease; /* Smooth transition on hover, include border */
    border: 3px solid transparent; /* Initial transparent border */
    opacity: 85%;
}

.contact-section .contact-info {
    border: 3px solid black; /* Red border for contact-info */
}

.contact-section .google-form-container {
    border: 3px solid black; /* Red border for google-form-container */
}


.contact-section .contact-info:hover,
.contact-section .google-form-container:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
    /* No change to border on hover, it remains red */
}


.contact-section .section-title {
    font-size: 30px; /* Reduced from 38px */
    font-weight: 700;
    margin-bottom: 35px; /* More space below title */
    color: #000000; /* Black heading */
    position: relative;
    padding-bottom: 10px; /* Space for underline effect */
}

.contact-section .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px; /* Underline width */
    height: 4px; /* Underline thickness */
    background-color: rgb(120, 10, 10); /* Red underline */
    border-radius: 2px;
}

.contact-section .contact-info .d-flex {
    align-items: flex-start; /* Align icon to top of text */
    margin-bottom: 30px; /* More space between items */
}

.contact-section .contact-info .d-flex:last-child {
    margin-bottom: 0;
}

.contact-section .contact-info i {
    font-size: 30px; /* Still large, but this is for the icon, not text */
    color: rgb(120, 10, 10); /* Red icons */
    margin-right: 25px; /* More space to the right of icon */
    width: 60px; /* Fixed width for icon alignment */
    text-align: center;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.contact-section .contact-info h5 {
    font-size: 18px; /* Reduced from 22px */
    font-weight: 600;
    color: #000000; /* Black sub-headings */
    margin-bottom: 8px; /* More space below sub-heading */
}

.contact-section .contact-info p {
    font-size: 15px; /* Reduced from 17px */
    color: #444444; /* Darker grey text for better readability */
    margin-bottom: 0;
}

.contact-section .contact-info a {
    color: #444444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-section .contact-info a:hover {
    color: rgb(189, 9, 9); /* Red on hover for links */
}

.contact-section .google-form-container iframe {
    border: 1px solid #cccccc; /* Slightly darker border for the iframe */
    border-radius: 8px;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.05); /* Inner shadow for iframe */
}

.contact-section .google-form-container p.text-muted {
    font-size: 16px; /* Retaining this size for descriptive text */
    color: #666666; /* Consistent dark grey */
    margin-top: 20px; /* More space above this text */
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .contact-section {
        padding: 60px 0;
    }
    .contact-section .contact-info,
    .contact-section .google-form-container {
        padding: 35px; /* Adjusted padding */
    }
    .contact-section .section-title {
        font-size: 28px; /* Reduced from 32px */
        margin-bottom: 25px;
    }
    .contact-section .section-title::after {
        width: 50px;
        height: 3px;
    }
    .contact-section .contact-info i {
        font-size: 2.2rem;
        margin-right: 18px;
        width: 45px;
    }
    .contact-section .contact-info h5 {
        font-size: 17px; /* Reduced from 19px */
    }
    .contact-section .contact-info p {
        font-size: 14px; /* Reduced from 15px */
    }
    .contact-section .google-form-container iframe {
        height: 600px; /* Adjust height for smaller screens */
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 40px 0;
    }
    .contact-section .contact-info,
    .contact-section .google-form-container {
        padding: 25px;
    }
    .contact-section .section-title {
        font-size: 24px; /* Reduced from 28px */
        margin-bottom: 20px;
    }
    .contact-section .section-title::after {
        width: 40px;
        height: 2px;
    }
    .contact-section .contact-info i {
        font-size: 1.8rem;
        margin-right: 15px;
        width: 35px;
    }
    .contact-section .contact-info h5 {
        font-size: 15px; /* Reduced from 17px */
    }
    .contact-section .contact-info p {
        font-size: 13px; /* Reduced from 14px */
    }
    .contact-section .google-form-container iframe {
        height: 500px; /* Further adjust height for mobile */
    }
}

/*******************************/
/********* Footer CSS **********/
/*******************************/
/* Color Variables for easy theme management */
/* Color Variables based on the new design */
/* Color Variables based on the new design */
/* Footer specific styles with Black, Red, and White theme */
.footer {
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text */
    padding: 60px 0 30px 0;
    font-family: 'Quicksand', sans-serif;
}

.footer-top {
    padding-bottom: 30px;
}

.footer-logo {
    font-family: 'Georgia', serif !important;
    font-size: 28px;
    font-weight: 700;
    color: rgb(189, 9, 9); /* Red for logo/accent */
    margin-bottom: 20px;
}

.footer-about p {
    color: #cccccc; /* Slightly lighter white for body text */
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-cta-btn {
    background-color: rgb(189, 9, 9); /* Red button background */
    color: #ffffff; /* White button text */
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.footer-cta-btn:hover {
    background-color: #cc0000; /* Darker red on hover */
    color: #ffffff;
}

.footer-link h3, .footer-contact h3 {
    font-size: 22px;
    font-weight: 600;
    color: rgb(189, 9, 9); /* Red for section headings */
    margin-bottom: 25px;
    position: relative;
}


.footer-link a, .footer-contact p {
    display: block;
    color: #ffffff; /* White for links and contact text */
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link a:hover {
    color: rgb(189, 9, 9); /* Red on link hover */
}

.footer-contact p i {
    margin-right: 10px;
    color: rgb(189, 9, 9); /* Red for contact icons */
}

.footer-contact p a{
    color: #ffffff;
}

.footer-contact p a:hover{
    color: rgb(242, 83, 83);
}

.footer-social .btn-social {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1); /* Slightly transparent white for social buttons */
    border-radius: 50%;
    margin-right: 8px;
    color: #ffffff; /* White icons */
    transition: background-color 0.3s ease;
}

.footer-social .btn-social:hover {
    background: rgb(189, 9, 9); /* Red background on social button hover */
    color: #ffffff; /* White icon on hover */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Light white border */
    padding-top: 20px;
    margin-top: 30px;
    font-size: 14px;
    color: #cccccc; /* Slightly lighter white for copyright text */
}

.footer-bottom a {
    color: rgb(189, 9, 9); /* Red for links in copyright */
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}