/* General Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Abhaya Libre", Arial, sans-serif;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.60);
    padding: 1rem 0;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
}

.navbar-brand img {
    max-height: 70px;
}

.navbar-dark .navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0px;
}

.navbar-dark .navbar-brand {
    color: white !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgb(0, 0, 0) !important; /* Force white color */
    padding: 4px 15px;
    text-transform: uppercase;
    font-weight: 700;
    
}

/* Optional: Change hover state color */
.navbar-dark .navbar-nav .nav-link:hover {
    color: #007bff !important;
}

.navbar.scrolled.navbar-dark .navbar-nav .nav-link {
    color: rgb(0, 0, 0) !important; /* Force white color */
}

/* Optional: Change hover state color */
.navbar.scrolled.navbar-dark .navbar-nav .nav-link:hover {
    color: #007bff !important;
}

/* Section Styles */
section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.parallax-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.42);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: justify;
    color: white;
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Remove these unused classes */
.hero-slider,
.hero-slide,
.slider-pagination,
.animated-text {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .video-background video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* How We Operate Section */
#operate {
    background-image: url('../images/operate-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}



#operate h2 {
    color: white;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 3rem;
}

#operate p.subheaing {
    color: white;
    margin-bottom: 12px;
    font-size: 1.4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.operate-box {
    background: white;
    padding: 8px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    height: 100%;
    background-image: url("../images/box-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.box-bg {
    background-image: url("../images/box-bg.jpg") !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.operate-box .svg-container {
    height: 60px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.operate-box .svg-container object {
    width: 50px;
    height: 50px;
}

/* Style for SVG elements inside the object */
.operate-box .svg-container object svg {
    stroke: #007bff;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Contact Form */
.content-box {
    background: rgba(255, 255, 255, 0.59);
    padding: 1.5rem;
    border-radius: 1rem;
    /* box-shadow: 0 0 20px rgba(0,0,0,0.1); */
}

.content-box h3 {
    color: #333;
    font-weight: 600;
}

/* Form styles */
.form-control {
    border-radius: 0.5rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.btn-primary {
    padding: 0.8rem 2rem;
    border-radius: 0.5rem;
    width: 100%;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Footer Styles */
footer {
    background: #333;
    color: white;
    padding: 1.5rem 0;
}

footer p {
    margin: 0;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}

footer a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    display: inline-block;
}

.footer-social a {
    margin: 0 10px;
    font-size: 1.1rem;
}

.footer-links {
    white-space: nowrap;
}

@media (max-width: 768px) {
    footer .row > div {
        text-align: center !important;
        margin-bottom: 1rem;
    }
    
    footer .row > div:last-child {
        margin-bottom: 0;
    }
}

/* Who We Are Section */
.who-we-are-content {
    text-align: justify;
    line-height: 1.8;
}

.who-we-are-content p {
    font-size: 1.4rem;
    color: #ffffff;
}

#about {
    position: relative;
    overflow: hidden;
}

#about .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#about .container {
    position: relative;
    z-index: 2;
}

#about .video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

#about .content-box {
    background: rgba(0, 0, 0, 0);
    position: relative;
    z-index: 2;
}

#about h2 {
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
    font-size: 3rem;
}


/* Our Team Section */
#team {
    background-image: url('../images/team-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

#team .content-box {
    background: none;
    max-width: 800px;
}

#team h2 {
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
    font-size: 3rem;
}

.team-content {
    text-align: justify;
}

.team-content p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #ffffff;
}

/* News section */
#news {
    background-image: url('../images/news-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

#news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Optional: adds a dark overlay */
    z-index: 0;
}

#news .container {
    position: relative;
    z-index: 1;
}

#news h2 {
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    font-size: 3rem;
}

/* #news p {
    font-size: 1.4rem;
    line-height: 1.8;
} */

.news-card {
    background: rgb(0 0 0 / 25%);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    /* backdrop-filter: blur(5px); 
    border: 1px solid #ffffff4f;*/
}

.news-header {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1rem;
}

.news-logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.news-header h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 500;
}

.news-content h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-content p {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    opacity: 0.9;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .news-logo {
        margin-bottom: 1rem;
    }
}

/* Contact Section Styles */
#contact {
    background-image: url('../images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Keep existing contact styles */
#contact .content-box {
    background: rgba(255, 255, 255, 0.59);
    padding: 1.5rem;
    border-radius: 1rem;
}

.contact-address {
    position: absolute;
    bottom: -5px;
    right: 15px;
    color: white;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-address p {
    margin: 0;
}

/* Update responsive styles */
@media (max-width: 768px) {
    .contact-address {
        position: static;
        text-align: center;
        margin-top: 2rem;
    }
}

/* Active nav item styles */
.navbar-dark .navbar-nav .nav-link.active {
    /* color: #007bff !important;  Or any color you prefer */
    font-weight: 600;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: #007bff; /* Or match your active color */
}

/* Privacy Policy Page Styles */
.privacy-content {
    padding: 4rem 0;
    min-height: auto;
}

.privacy-content .content-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    margin-bottom: 3rem;
}

.privacy-content h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.privacy-content h3 {
    color: #333;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.privacy-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-content ul {
    color: #666;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-content ul li {
    margin-bottom: 0.5rem;
}

.privacy-content .last-updated {
    color: #999;
    font-style: italic;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 2rem 0;
    }
    
    .privacy-content .content-box {
        padding: 1.5rem;
    }
}

/* Privacy Policy Hero Section */
#privacy-hero {
    min-height: 350px;
    height: 350px;
    padding-top: 100px; /* Account for navbar height */
}

#privacy-hero .hero-content {
    padding-top: 0;
}

#privacy-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

#privacy-hero p {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    #privacy-hero {
        min-height: 300px;
        height: 300px;
    }
    
    #privacy-hero h1 {
        font-size: 2rem;
    }
    
    #privacy-hero p {
        font-size: 1rem;
    }
}

/* Additional Privacy Policy Content Styles */
.privacy-content .intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
}

.privacy-content .note {
    font-style: italic;
    color: #666;
}

.privacy-content a {
    color: #007bff;
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

.privacy-content ul {
    margin-bottom: 2rem;
}

.privacy-content h2 {
    margin-top: 2rem;
}

/* Disclaimer Content Styles */
.disclaimer-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.disclaimer-content p:last-child {
    margin-bottom: 0;
}

/* Legal Content Styles */
.legal-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
    color: #666;
    line-height: 1.8;
}

.legal-content p:last-child {
    margin-bottom: 0;
}

.bg-static {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}
/* news-Pagecontent */

.news-Pagecontent {
    padding: 4rem 0;
    min-height: auto;
}

.news-Pagecontent .content-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    margin-bottom: 3rem;
}
.news-Pagecontent  .news-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
   
    /* backdrop-filter: blur(5px); 
    border: 1px solid #ffffff4f;*/
}
.news-Pagecontent .news-logo{
    border-radius: 5px ;
    box-shadow: 0 0 5px #ccc;
}

.news-Pagecontent h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.news-Pagecontent h3 {
    color: #333;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.news-Pagecontent p {
    color: #666;
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.news-Pagecontent  .news-date{
    font-style: italic;
    color: #007bff;
}