/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #f4f7fa;
    color: #333;
}

/* Top Header Styles */
.top-header {
    background-color: #2a4d69; /* Darker blue for the top header */
    color: #fff;
    padding: 10px 0;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.top-header .contact-info span {
    margin-right: 20px;
}

.top-header .right-menu {
    display: flex;
    align-items: center;
}

.client-login {
    margin-right: 20px;
    color: #ff9800; /* Highlight color for client login */
    text-decoration: none;
    transition: color 0.3s ease;
}

.client-login:hover {
    text-decoration: underline;
}

.social-media {
    display: flex;
    gap: 10px;
}

.social-icon img {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.social-icon img:hover {
    opacity: 0.7;
}

/* Existing Header */
/* Existing Header */
header {
    background-color: #1e3d58;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

header .logo {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li {
    display: inline;
    position: relative;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, background-color 0.3s ease;
    padding: 10px 15px;
    border-radius: 5px;
}

header nav ul li a:hover {
    text-decoration: underline;
    background-color: #f0f8ff;
    color: #1e3d58;
}

/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Button */
.dropbtn {
    cursor: pointer;
    background-color: #1e3d58;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.dropbtn:hover {
    background-color: #f0f8ff;
    color: #1e3d58;
}

/* Dropdown Content */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1e3d58;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Dropdown Link */
.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f0f8ff;
    color: #1e3d58;
}


/* Dropdown Content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Section */
.hero {
    background: url('climber.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: right;
    height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.hero-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 600px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1f3e59b3;
    padding: 20px;
    border-radius: 8px;
}

.stat {
    text-align: center;
    color: #fff;
    padding: 10px;
}

.stat h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.stat p {
    font-size: 30px;
    font-weight: bold;
}

/* Main Compliance Information Section */
.compliance-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
}

/* Left Section (Fixed Text) */
.compliance-left {
    flex: 0 0 40%;
    position: sticky;
    top: 0;
}

.compliance-left h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
}

/* Right Section (Sliding Paragraph) */
.compliance-right {
    flex: 1;
    padding-left: 20px;
}

/* Slider Container */
.slider {
    position: relative;
    max-width: 100%;
    margin: 20px 0;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.fade {
    opacity: 0;
    animation: fade 1.5s forwards;
}

@keyframes fade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Read More Button */
.read-more {
    margin-top: 20px;
}

.read-more .cta-btn {
    display: inline-block;
    background-color: #1e3d58;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
}

.read-more .cta-btn:hover {
    background-color: #08488b;
}

/* About Us Section */
.about {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

.features {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature {
    flex: 1;
    margin: 0 10px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 250px;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Services Section */
.services {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.service-cards {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    margin: 0 10px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 250px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Mutual Funds Section */
.mutual-funds {
    padding: 60px 20px;
    text-align: center;
}

.mutual-funds h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

/* Contact Section */
.contact {
    background: #1e3d58;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.contact form {
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.contact input:focus,
.contact textarea:focus {
    border-color: #ff9800;
    outline: none;
}

.contact button {
    background-color: #ff9800;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact button:hover {
    background-color: #e68900;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    font-size: 14px;
}

footer nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
}

footer nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer nav ul li a:hover {
    text-decoration: underline;
}

/* Blog Section */
.blog {
    padding: 60px 20px;
    background: #fff;
}

.blog h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-post {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-post h3 {
    margin-bottom: 10px;
}

.blog-post p.post-date {
    font-size: 14px;
    color: #888;
}

.blog-post .read-more {
    display: inline-block;
    margin-top: 10px;
    color: #ff9800;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post .read-more:hover {
    text-decoration: underline;
}

.sidebar {
    margin-top: 40px;
}

.sidebar h3 {
    margin-bottom: 20px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 10px 0;
}

.sidebar ul li a {
    color: #1e3d58;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar ul li a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Useful Tools Section */
.useful-tools {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.useful-tools h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.useful-tools p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.tools-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
}

.tool-box {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.tool-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.tool-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.tool-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 8px;
}

.tool-info h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.tool-info p {
    margin: 5px 0 0;
    font-size: 14px;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .tools-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .tools-container {
        grid-template-columns: 1fr;
    }
}

/*Testomonial  */
/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #f4f7fa;
    color: #333;
}

/* Top Header Styles */
.top-header {
    background-color: #2a4d69; /* Darker blue for the top header */
    color: #fff;
    padding: 10px 0;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.top-header .contact-info span {
    margin-right: 20px;
}

.top-header .right-menu {
    display: flex;
    align-items: center;
}

.client-login {
    margin-right: 20px;
    color: #ff9800; /* Highlight color for client login */
    text-decoration: none;
    transition: color 0.3s ease;
}

.client-login:hover {
    text-decoration: underline;
}

.social-media {
    display: flex;
    gap: 10px;
}

.social-icon img {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.social-icon img:hover {
    opacity: 0.7;
}

/* Existing Header */
header {
    background-color: #1e3d58;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

header .logo {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li {
    display: inline;
    position: relative;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, background-color 0.3s ease;
    padding: 10px 15px;
    border-radius: 5px;
}

header nav ul li a:hover {
    text-decoration: underline;
    background-color: #f0f8ff;
    color: #1e3d58;
}

/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Button */
.dropbtn {
    cursor: pointer;
    background-color: #1e3d58;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.dropbtn:hover {
    background-color: #ff9800;
}

/* Dropdown Content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Client Testimonial Styles */
/* Testimonial section styles */
.client-testimonial {
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.client-testimonial h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

/* Testimonial slider container */
/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container for the whole testimonial section */
.testimonial-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 10%;
    background-color: #ffffff
}
/* Testimonial Box */
.testimonial-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #c2c2c2;  /* Light background for the whole box */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    transition: transform 0.3s ease;
}

.testimonial-container:hover {
    transform: translateY(-5px);  /* Lift the box slightly on hover */
}

/* Left section - Testimonial Text */
.testimonial-text {
    flex: 1;
    padding-right: 40px;
    font-size: 1.2em;
    line-height: 1.6;
    color: #fff; /* White text for contrast */
    font-style: italic;
    background: linear-gradient(135deg, #c5e4ff, #1e3d58); /* Colorful gradient background */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative; /* For positioning the quote icon */
}

/* Add some space and separate the text visually */
.testimonial-text p {
    margin-bottom: 20px;
}


/* Left section - Text */



.testimonial-text {
    flex: 1;
    padding-right: 40px;
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
    font-style: italic;
} 

.testimonial-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    padding: 10px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-slide.active {
    display: block;
}

/* Right section - Image */
.testimonial-image {
    flex: 1;
    padding-left: 40px;
    display: flex;
    justify-content: center;  /* Center the image horizontally */
}

.testimonial-image img {
    width: 100%;
    max-width: 800px; /* Increase the width to make it more stretched */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.testimonial-image img:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Optional: Add styling to buttons (if manual controls are needed) */
.testimonial-slider-controls {
    text-align: center;
    margin-top: 20px;
}

.testimonial-slider-controls button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 50%;
    margin: 5px;
}

.testimonial-slider-controls button:hover {
    background-color: #555;
}

/* ARN Details Section */
/* ARN Details Section */
.arn-details {
    background-color: #fff;
    padding: 20px;
    margin: 0 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow-x: auto; /* To allow horizontal scrolling if needed */
}

.arn-header,
.arn-row {
    display: grid;
    grid-template-columns: 150px 1fr 1fr 1fr 1fr; /* 150px for the label column and flexible space for values */
    gap: 0px 15px; /* Space between columns */
    font-family: Arial, sans-serif;
    text-align: left;
    font-size: 14px;
    border-collapse: collapse; /* For seamless borders between cells */
}

/* Grid Styling */
.arn-column {
    padding: 12px;
    border: 1px solid #ddd; /* Light grey border between grid items */
}

/* Header Styling */
.arn-header {
    background-color: #f0f0f0;
    font-weight: bold;
}

.arn-column {
    background-color: #fff; /* White background for values */
    color: #555;
}

/* Row Styling */
.arn-row:nth-child(even) {
    background-color: #f9f9f9; /* Alternating background for even rows */
}

.arn-column:hover {
    background-color: #f1f1f1; /* Highlight cells on hover */
}

/* Footer Styling */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* Copyright Section Styling */
.copyright {
    background-color: #222;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    font-size: 24px; /* Adjust font size for the brand text */
    font-weight: bold;
    color: #333; /* Adjust color if needed */
    margin: 0;
}

.logo-image {
    width: 40px; /* Adjust logo size */
    height: auto;
    margin-right: 10px; /* Space between the logo and text */
}

/* Navigation Styling */
nav ul {
    list-style-type: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
}

nav ul li a:hover {
    background-color: #f1f1f1;
    border-radius: 5px;
}


/* Meet Our Team Section */
.team {
    background-color: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
}

.team h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3d58;
    margin-bottom: 20px;
}

.team p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* Set grid layout for team members */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 items in a row for large screens */
    gap: 40px; /* Increase space between team members */
    justify-items: center; /* Center items horizontally */
}

/* Center the last two members in the second row */
.team-grid > .team-member:nth-child(4),
.team-grid > .team-member:nth-child(5) {
    justify-self: center; /* Center them horizontally in their grid cells */
}

/* Adjust layout for medium screens (up to 1024px) */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 items in a row for medium screens */
    }

    /* Center the last two team members in the second row for medium screens */
    .team-grid > .team-member:nth-child(4),
    .team-grid > .team-member:nth-child(5) {
        justify-self: center; /* Center them horizontally */
    }
}

/* Adjust layout for very small screen sizes (1-column layout) */
@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr; /* 1 item per row for small screens */
    }
}

/* Ensures proper spacing for the grid and the layout of team members */
.team-member {
    position: relative;
    border-radius: 12px; /* Subtle rounded corners for team member */
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2); /* Softer, larger shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
    background-color: #fff;
    padding: 10px;
}

/* Image Styling */
.team-image img {
    width: 90%; /* Reduce image width for better spacing */
    max-height: 280px; /* Set a maximum height for a neat and uniform look */
    object-fit: cover; /* Ensures images are cropped proportionally */
    display: block;
    margin: 0 auto; /* Center the image inside the container */
    border-radius: 8px; /* Soft rounded corners for the images */
    transition: transform 0.3s ease; /* Smooth zoom effect */
}

/* Add hover effect to images */
.team-image:hover img {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

/* Add subtle animation and transition to the team info box */
.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    opacity: 0; /* Initially hidden */
}

/* Make the team info visible on hover */
.team-member:hover .team-info {
    transform: translateY(0); /* Slide the info box up */
    opacity: 1; /* Make it visible */
}

/* Team Info Title */
.team-info h3 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
    color: #ffffff; /* Golden color for emphasis */
}

/* Team Info Description */
.team-info p {
    font-size: 1rem;
    margin-top: 10px;
    font-weight: 300;
    color: #ecf0f1; /* Slightly lighter text color */
}

/* Add subtle hover effect on team member containers */
.team-member:hover {
    transform: translateY(-5px); /* Slight lift effect on hover */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}


/* Hover Effects */
.team-member:hover {
    transform: translateY(-5px); /* Slightly lift the team member card */
}

.team-member:hover .team-image img {
    transform: scale(1.05); /* Slight zoom effect on image */
}

.team-member:hover .team-info {
    transform: translateY(0); /* Reveal the info on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 items in a row */
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr; /* 1 item in a row */
    }
}


/* Help Section Styles */
.help-section {
    width: 100%;
    background-color: #1e3d58; /* Background color */
    padding: 15px 0; /* Reduced padding to lift the text */
    text-align: center;
    color: white;
    font-family: Arial, sans-serif;
    margin-bottom: 20px; /* Adds space above the footer */
}

.help-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.help-text {
    font-size: 1.5rem; /* Increased font size for the help text */
    font-weight: bold;
    margin-right: 30px; /* Adds space between the text and button */
    line-height: 1.5; /* Adjust the line height to control text position */
    padding-bottom: 10px; /* Optional: adjust to lift text */
}

.help-number {
    color: #fcb800; /* Highlight phone number */
    font-weight: bold;
}

.contact-button {
    background-color: #fcb800;
    color: #1e3d58;
    padding: 15px 30px; /* Increased padding to make the button larger */
    text-decoration: none;
    font-size: 1.2rem; /* Increased font size for button */
    border-radius: 4px;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s ease;
    margin-top: px; /* Optional: add small margin to adjust button position */
}

.contact-button:hover {
    background-color: #d19400; /* A darker shade on hover */
    color: white;
}


/* Overview Section */
#overview {
    background-color: #f7f7f7;
    padding: 40px 0;
}

#overview .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.overview-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.overview-image {
    max-width: 50%;
    height: auto;
    border-radius: 8px;
}

.overview-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
}


/* About Us Section */
#about-us {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: left;
}

#about-us .container {
    max-width: 1200px;
    margin: 0 auto;
}

#about-us .about-us-title {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #333;
    font-weight: bold;
    letter-spacing: 1px;
}

.about-us-content {
    display: flex;
    justify-content: space-between; /* Distribute space between the two sections */
    gap: 40px; /* Space between the text containers */
}

.about-us-text {
    max-width: 48%; /* Keep each paragraph in a container of approximately 48% width */
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
}

.about-us-text p {
    margin-bottom: 20px;
}
/* Scrolling */
html {
    scroll-behavior: smooth;
}


/* Video Corner Section Styling */
.video-corner {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.video-corner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.video-corner p {
    font-size: 1.25rem;
    color: #777;
    margin-bottom: 40px;
}

.video-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.video-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.video-card iframe {
    border-radius: 8px;
    max-width: 100%;
}

.video-card h3 {
    font-size: 1.6rem;
    margin-top: 20px;
    color: #333;
}

.video-card p {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
    .video-corner h2 {
        font-size: 2rem;
    }

    .video-corner p {
        font-size: 1.1rem;
    }

    .video-cards {
        grid-template-columns: 1fr;
    }
}


/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Style for the disclaimer scroll */
.disclaimer-section {
    width: 100%;
    height: 300px; /* Set the height for the scroll area */
    overflow: hidden; /* Hide any content outside of the container */
    position: relative;
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.disclaimer-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}


/* Ensure smooth scrolling */
#disclaimer-text {
    overflow-y: scroll; /* Enable vertical scrolling */
    max-height: 300px; /* Limit the height of the scrolling area */
    padding: 10px;
    font-family: Arial, sans-serif;
    color: #333;
    background: #f9f9f9;
    scroll-behavior: smooth;
}


.disclaimer-text {
    font-size: 1.2rem;
    color: #333;
    text-align: center;
    max-width: 90%; /* Limit text width */
    padding: 10px;
    white-space: normal;
    display: inline-block;
    overflow-y: scroll;
    height: 100%;
    padding-right: 10px;
    animation: scroll-up 40s linear infinite; /* Scroll effect */
}

/* Title style */
.disclaimer-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fcb800;
}

/* Animation for scrolling effect */
@keyframes scroll-up {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}

/* Footer Styles */
footer {
    background-color: #222;
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

footer p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

footer a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

footer .footer-content div {
    flex: 1 1 250px;
    margin-bottom: 20px;
}

/* Bottom Copyright Section */
footer .footer-content {
    text-align: center;
    margin-top: 30px;
    font-size: 1rem;
}
