
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins" , "sans-serif";
}

body, html {
    height: 100%;
    overflow-x: hidden;
}
header{
    z-index: 1000;
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 200px;
    transition: 0.5s ease;
}
/* Dropdown container */
.dropdown {
    position: relative;

    display: inline-block;
}

/* Button to open the dropdown */
.dropbtn {
     /* Set background color to black */
    color: #fff; /* Set text color to white */
    padding: 14px 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #000; /* Set background color to black */
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.result {
    color: white; /* Make the text white */
    text-align: center; /* Center-align the text */
    margin-top: 20px; /* Add some spacing above the result */
    font-size: 1.5em; /* Increase the font size */
    font-weight: bold; /* Make the text bold */
}

/* Links inside the dropdown */
.dropdown-content a {
    color: #fff; /* Set text color to white */
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of links when hovered */
.dropdown-content a:hover {
    background-color: #444; /* Darken the background on hover */
}

/* Show the dropdown when hovering over the container */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Style for dropdown button when hovered */
.dropdown:hover .dropbtn {
    background-color: #333; /* Darken the button on hover */
}
/* Calculator Styles */
.calculator-container {
    background-color: #222; /* Dark container for calculators */
    width: 90%;
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

h2 {
    text-align: center;
    color: #fff;
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background-color: #333;
    color: #fff;
    border: 1px solid #444;
    border-radius: 4px;
    font-size: 16px;
}

input:focus {
    border-color: #777;
    outline: none;
}

/* Button Styles */
button {
    width: 100%;
    padding: 12px;
    background-color: #0A2940; /* Dark blue background */
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #1A1B1E;
}

#sip-result, #emi-result, #loan-result {
    margin-top: 20px;
    padding: 12px;
    background-color: #333;
    color: #fff;
    text-align: center;
    font-size: 18px;
    border-radius: 4px;
}

/* Dark Theme Specific Styles */
.dark-theme {
    background-color: #121212; /* Dark background for body */
}

.dark-theme header {
    background-color: #000; /* Black header */
}

.dark-theme .navigation-items a:hover {
    color: #00bcd4; /* Light blue hover effect */
}
#video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
 h2 {
            font-size: 24px;
            margin-bottom: 20px;
        }
                        p {
                            font-size: 16px;
                            line-height: 1.6;
                            margin-bottom: 30px;
                            color: #fff;

                        }


 label {
            color: white;
            font-size: 16px;
            display: block;
            margin-bottom: 5px;
        }
header .brand{
    color: #fff;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

header .navigation{
    position: relative;

}
header .navigation .navigation-items a{
    position: relative;
    color: #fff;
    font-size: 1.2em;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s ease;
}
header .navigation .navigation-items a:before{
    content: '';
    position: absolute;
    background: #fff;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}
header .navigation .navigation-items a:hover:before{
    width: 100%;
}

section{
    padding: 200px 200px;

}
section {
    margin-bottom: px; /* Decrease the gap between sections */
}

.home{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #2d2f33;
    z-index: -1;
    overflow: hidden;
}
.home:before{
    z-index: 777;
    content: '';
    position: absolute;
    background: rgba(45, 47, 51, 0.3);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.home .content{
    z-index: 888;
    color: #fff;
    width: 70%;
    margin-top: 50px;
    position: relative;
    font-family: Arial, sans-serif;
}

.home .content h1{
    font-size: 3em;
    font-weight: 30;
    text-transform: uppercase;
    letter-spacing: 5 px;
    line-height: 65px;
    margin-bottom: 20px;
}

.home .content h1 span{
    font-size: 1.2em;
    font-weight: 10;
}

.home .content p{
    margin-bottom: 65px;
    font-size: 1.2em;

}
.home .content a{
    background: #fff;
    padding: 15px 35px;
    color: #2d2f33;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
}
.media-icons{
    position: absolute;
    z-index: 9999;
    right: 30px;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    transition: 0.5s ease;
}
.media-icons a{
    margin: 10px 0; /* Space between icons */
    color: #fff; /* Change icon color */
    text-decoration: none; /* Remove underline */
    font-size: 1.6em;
    transition: 0.3s ease;
    display: inline-block !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 1000 !important;
}

.media-icons a:not(:last-child){
    margin-bottom: 20px;
}
.media-icons a:hover{
    transform: scale(1.3);
}
.media-icons i{
    pointer-events: none;
}

.home .video{
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Ensures the video covers the entire container */
    z-index: -1;

}

.home .video-container {
    position: absolute; /* Keep the video in place while scrolling */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
.home .video-slide {
  object-fit: cover !important;
  max-width: 100%;
  height: auto;
}

.logo {
    position: absolute;
    top: 20px; /* Adjust as needed */
    left: 75px; /* Adjust as needed */
    z-index: 1000; /* Ensure it appears above other elements */
}

.logo img {
    max-width: 100px; /* Limit the logo size */
    height: auto; /* Maintain aspect ratio */
}


/* Services Section */
#services {
    padding: 50px 20px; /* Adjusted padding for uniform spacing */
     /* Matches the background of #photos */
    text-align: center; /* Centers the content within the section */
}

#services h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #000000; /* White text for better contrast */
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

#services .items {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* Ensures it is responsive */
}

#services .item {
    background-color: #fff;
    padding: 20px;
    flex: 0 1 24%;
    border-radius: 8px;
    width: calc(33.33% - 20px); /* 3 items per row on large screens */
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out; /* Smooth transitions for hover effects */
}

#services .item i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 20px;
}

#services .item h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 10px;
}

#services .item p {
    font-size: 1rem;
    color: #8e9094;
}

/* Hover Effects */
#services .items .item:hover {

    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

#services .items .item:hover i {
    color: #f4f4f4;
}

#services .items .item:hover h3 {
    color: #f4f4f4;
}

/* Responsive Design */
@media (max-width: 992px) { /* Medium screens (tablets) */
    #services .item {
        width: calc(50% - 20px); /* 2 items per row */
    }

    #services h2 {
        font-size: 2em; /* Slightly smaller heading */
    }
}

@media (max-width: 768px) { /* Small screens (mobile devices) */
    #services .item {
        width: 100%; /* 1 item per row */
        margin-bottom: 20px; /* Add spacing between items */
    }

    #services h2 {
        font-size: 1.8em; /* Adjust heading size */
    }

    #services .item i {
        font-size: 35px; /* Slightly smaller icon */
    }
}

@media (max-width: 576px) { /* Extra small screens (smaller mobile devices) */
    #services h2 {
        font-size: 1.5em; /* Reduce heading size further */
    }

    #services .item {
        padding: 15px;
    }

    #services .item p {
        font-size: 0.9rem; /* Smaller text for better fit */
    }
}


/* Goals Section */
.goal-section {
    background-color: #243A5E;
    padding: 50px 10px;
    color: #fff;
    position: relative;
    background-image: url('video/photo1.jpg'); /* Your background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 1px; /* Rounded corners for a modern feel */
}

.goal-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Darker translucent overlay */
    z-index: 1;
    border-radius: 12px; /* Match border-radius of the section */
}

.goal-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2; /* Text above overlay */
    text-align: left;
    max-width: 1100px;
    margin: 0 auto;
}

.goal-img img {
    max-width: 50%;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transform: scale(1.05); /* Slightly zoomed effect */
    transition: transform 0.3s ease; /* Smooth hover effect */
}

.goal-img img:hover {
    transform: scale(1.1); /* Zoom effect on hover */
}

.goal-text {
    flex: 1;
    margin-left: 20px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.6); /* Darker background for readability */
    border-radius: 10px;
    backdrop-filter: blur(5px); /* Slight blur for a frosted glass effect */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.goal-text h2 {
    font-size: 3rem;
    color: #000000;
}
.goal-text h3 {
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #7d7f85; /* A golden color for a bold impact */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.goal-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #7d7f85;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.contents {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.content p {
    margin-left: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .goal-content {
        flex-direction: column; /* Stack image and text vertically on smaller screens */
        align-items: center;
        gap: 20px;
    }

    .goal-img img {
        max-width: 80%; /* Adjust image size on smaller screens */
    }

    .goal-text h3 {
        font-size: 1.6rem;
    }

    .goal-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .goal-content {
        flex-direction: column;
    }
}



/* banner Section Styling */
.banner-section {
    background-image: url('video/photo2.jpg'); /* Replace with the path to your image */
    background-size: cover;
    background-position: center;
    background-color: #f4f4f4; /* Light gray background */
    padding: 150px 100px;
    text-align: center;
    margin: 10px 0; /* Space above and below the banner */
    border-radius: 100px;
    position: relative; /* To position the overlay */
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow for better appearance */
}
.banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: 1; /* Ensures it sits behind the text */
}
.banner-content {
    position: relative;
    z-index: 2; /* Brings text and button above the overlay */
    color: #fff; /* White text for better contrast */
}
.banner-content h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: #fff; /* Text color */
}
.franchise-link {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.franchise-link:hover {
    color: #00cc99;
}
.banner-button {
    background-color: #007bff; /* Button background color */
    color: #fff; /* Button text color */
    padding: 10px 20px;
    text-decoration: none;
    font-size: 24px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.banner-button:hover {
    background-color: #0056b3; /* Darker shade on hover */
}
/* PL Section Styling */
.pl-capital-banner {
    background-image: url('video/photo2.jpg'); /* Replace with the path to your banner background image */
    background-size: cover; /* Ensure the background covers the section */
    background-position: center;
    background-color: #f4f4f4;
    padding: 50px 20px; /* Adjust padding for spacing */
    text-align: center;
    margin: 20px 0; /* Space around the banner */
    border-radius: 100px;
    position: relative; /* For overlay handling */
    overflow: hidden; /* Prevent overflow from elements */
}

.pl-capital-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay with 40% opacity */
    z-index: 1; /* Keeps it behind the content */
}

.pl-capital-content {
    position: relative;
    z-index: 2; /* Places content above the overlay */
    color: #fff; /* Text color for contrast */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pl-capital-content h2 {
    font-size: 24px;
    margin-top: 15px;
    font-weight: bold;
}
.pl-capital-content p {
    font-size: 18px;
    margin-bottom: 20px;
}
.services-container {
    display: flex;
    justify-content: center;
    gap: 40px; /* Spacing between columns */
    flex-wrap: wrap;
}
.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    text-align: left;
}
.services-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px; /* Space for the icon */
}

.services-list li::before {
    content: "\2022"; /* Unicode for bullet */
    color: #00cc99; /* Accent color for the bullet */
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.5;
}
.authorised-person {
    font-size: 25px;
    font-weight: bold;
    color: #fff; /* Adjust color as needed */
    text-align: center;
    margin-top: 5px;
}
.pl-capital-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-container {
    display: flex;
    flex-direction: row; /* Ensures images are in a single row */
    align-items: center;
    justify-content: center;
    gap: 20px; /* Adds spacing between the images */
}

.pl-logo {
    width: 200px; /* Adjust the size as needed */
    height: auto;
}

.new-logo {
    margin-left: 10px; /* Adds some space between the logos */
}




/* Teams Section Styling */
#teams {
    /* Other styles */
    margin-top: 1px; /* Reduce the bottom margin */
    text-align: center; /* Center-align text content */
}

#teams h3 {
    color: #070708;
    font-size: 20px;
    padding-bottom: 1px;
    text-transform: uppercase;
    margin: 0 auto;
}

.teams h4 {
    color: #48749c;
}

.teams h5 {
    padding-top: 25px;
    color: #89909c;
    display: flex;
    justify-content: center;
    padding-left: 0;
}

#teams h2 {
    font-size: 40px;
    font-weight: 600;
    color: #121e59;
    margin-bottom: 20px;
    text-align: center; /* Center align the heading */
}

#teams h2 span {
    font-weight: 600;
    font-size: 40px;
}

#teams p {
    font-size: 20px;
    color: #070708;
    padding-left: 0; /* Remove left padding */
    line-height: 1.6;
    margin-bottom: 100px;
    text-align: center; /* Center align the paragraph */
}

#teams .wrapper .card-items {
    display: flex;
    margin-top: -50px;
    justify-content: space-evenly;
    overflow: hidden;
    flex-wrap: wrap; /* Allow wrapping for responsiveness */
}

#teams .wrapper .card {
    margin: 20px;
    display: flex;
    flex-direction: column;
    background-color: #f6f6f6;
    border-radius: 5px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 280px;
    z-index: 1;
    transition: all 0.5s ease;
    text-align: center; /* Center align text within the card */
}

#teams .wrapper .card:hover {
    background: #0A2940;
    transform: scale(1.05);
    cursor: pointer;
}

#teams .wrapper .card .card-header {
    display: inline-block;
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 30px auto;
    transform: translateY(40px);
}

#teams .wrapper .card .card-header img {
    width: 100%;
    height: auto;
}

#teams .wrapper .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: 200px;
}

#teams .wrapper .card h3 {
    font-size: 16px;
    color: #070708;
    padding: 30px;
}

#teams .wrapper .card .card-body h4 {
    font-size: 14px;
    font-weight: 600;
    color: #95A2BB;
    margin-top: 0px;
}

/* Responsive Design */
@media (max-width: 992px) { /* Medium screens (tablets) */
    #teams h2 {
        font-size: 2.5em; /* Slightly smaller heading */
    }

    #teams p {
        font-size: 18px; /* Smaller paragraph text */
    }

    .wrapper .card-items {
        flex-direction: column;
    }

    .wrapper .card {
        width: 90%; /* Make cards take more width on smaller screens */
    }
}

@media (max-width: 768px) { /* Small screens (mobile devices) */
    #teams h2 {
        font-size: 2em;
    }

    #teams p {
        font-size: 16px; /* Adjust font size for small screens */
    }

    .wrapper .card-items {
        flex-direction: column;
        align-items: center; /* Center cards */
    }

    .wrapper .card {
        width: 100%; /* Full width on smaller screens */
    }
}

@media (max-width: 576px) { /* Extra small screens */
    #teams h2 {
        font-size: 1.8em;
    }

    #teams p {
        font-size: 14px; /* Adjust font size further */
    }

    .wrapper .card {
        width: 100%; /* Ensure cards are full width */
        margin-bottom: 20px; /* Add spacing between cards */
    }
}
/* our mentor Styles */
/* Mentor Section Styling */
.mentor {
    background: #ff5361; /* Light gray background */
    padding: 50px 20px;
    text-align: center;
}

.mentor h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}

.mentor-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.mentor-image img {
    width: 400px; /* Adjust width */
    height: 400px; /* Adjust height */
    border-radius: 50%; /* Make it circular */
    object-fit: cover; /* Maintain proportions */
    border: 5px solid #fff; /* Add a border for styling */
}

.mentor-info {
    max-width: 600px;
    text-align: left;
    color: #555;
}

.mentor-info h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.mentor-info p {
    font-size: 1.5rem;
    line-height: 1.5;
    margin: 5px 0;
}

@media (max-width: 768px) {
    .mentor-container {
        flex-direction: column;
        text-align: center;
    }

    .mentor-info {
        text-align: center;
    }
}


/* photos Styles */
#photos {
    text-align: center;
    padding: 50px 20px;
    background-color: #243A5E;
}

#photos h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #fff;
}

.media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
    justify-items: center;
}

.media-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-item img,
.media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.media-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.media-item:hover img,
.media-item:hover video {
    transform: scale(1.1);
}

video {
    max-height: 300px; /* Set max height for consistency */
    background: #000; /* Fallback background for video element */
}

/* Contact Section Styling */
#contact {
    background-color: #123456; /* Replace #123456 with your desired color code */
    padding: 50px 20px;
    color: #fff; /* Ensure text color contrasts with the background */
    text-align: center; /* Center all text within this section */
}

#contact h2 {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

#contact p {
    color: #fff;
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 50px;
    padding-left: 0;
    padding-right: 0;
}

#contact .wrapper form {
    display: flex;
    flex-direction: column;
    max-width: 550px;
    margin: 0 auto;
    align-items: center; /* Center form elements */
}

#contact .wrapper form input {
    padding: 8px;
    border: #ddd 1px solid;
    outline: none;
    border-radius: 5px;
    margin: 15px 0;
    width: 100%; /* Ensure input fields take up the full width of the form */
    max-width: 500px; /* Set a max-width for input fields */
}

#contact .wrapper form .button {
    padding: 8px;
    margin-bottom: 100px;
    background: #0A2940;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: 100%; /* Make the button the same width as the input fields */
    max-width: 500px;
}

#contact .wrapper form .button:hover {
    background: #1A1B1E;
    color: #95A2BB;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1200px) {
    #contact h2 {
        font-size: 36px;
    }

    #contact p {
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    #contact h2 {
        font-size: 32px;
    }

    #contact p {
        font-size: 20px;
    }

    #contact .wrapper form input,
    #contact .wrapper form .button {
        max-width: 450px; /* Reduce width on medium screens */
    }
}

@media (max-width: 768px) {
    #contact h2 {
        font-size: 28px;
    }

    #contact p {
        font-size: 18px;
    }

    #contact .wrapper form input,
    #contact .wrapper form .button {
        max-width: 100%; /* Full width for input fields and button */
        padding: 10px;
    }
}

@media (max-width: 576px) {
    #contact h2 {
        font-size: 24px;
    }

    #contact p {
        font-size: 16px;
    }

    #contact .wrapper form input,
    #contact .wrapper form .button {
        max-width: 100%; /* Full width for input fields and button */
        padding: 12px;
    }
}

/* footer Section Styling */


.footer {
    background-color: #2d2f33;
    color: #fff;
    display: flex;
    padding: 20px 0;
    justify-content: flex-end;
    align-items: center;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.contact-info {
  text-align: right;
}

.contact-item {
  color: white;
  font-size: 16px;
  margin: 5px 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.contact-item i {
  margin-right: 10px;
  font-size: 18px;
}

.contact-item:hover {
  color: #ff9800;
}

.footer {
    background-color: #2d2f33;
    color: #fff;
    display: flex;
    padding: 20px 0;
    justify-content: flex-end;
    align-items: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr; /* 3 equal columns */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.f-about, .f-links, .f-services, .footer-content{
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-info {
  text-align: left;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.contact-item {
  color: white;
  font-size: 16px;
  margin: 5px 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.contact-item i {
  margin-right: 10px;
  font-size: 20px;
}
.contact-item span {
    font-size: 16px; /* Adjust text size */
    line-height: 1.5; /* Adjust line height for readability */
    margin-right: 10px;
}

.contact-item:hover {
  color: #ff9800;
}

.footer {
    background-color: #2d2f33;
    color: #fff;
    display: flex;
    padding: 20px 0;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;  /* Aligns content vertically */
}

.footer .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: right;
    text-align: center;
}

.contact-info {
    text-align: right;
    display: flex;
    justify-content: flex-start; /* Align items horizontally */
    width: 100%;
}

.contact-item {
    color: white;
    font-size: 16px;
    margin: 5px 20px; /* Add some spacing between items */
    display: flex;
    align-items: center;
    text-decoration: none;
}

.contact-item i {
    margin-right: 10px;
    font-size: 18px;
}

.contact-item:hover {
    color: #ff9800;
}

.footer h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
}

.footer a {
    color: #ddd;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer ul li a {
    text-decoration: none;
    color: #ddd;
    margin-left: 10px;
    font-size: 14px;
    transition: color 0.3s ease, background-color 0.3s ease;
    padding: 5px;
    display: inline-block;
}

.footer ul li a:hover {
    color: #f0a500;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.footer ul li ion-icon {
    color: #fff;
    margin-right: 8px;
    vertical-align: middle;
    transition: color 0.3s ease;
}

.footer ul li:hover ion-icon {
    color: #f0a500;
}
/* calculator Section Styling */
#calculator-container {
    /* Make the background color match the #services section */
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.calculator-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
.calculator-container input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.calculator-container button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.items {
    display: flex;
    justify-content: center;
    background-color: #2d2f33; /* Same background as #services */
    flex-wrap: wrap;
    padding: 20px;
    color: #fff;
}

.item {
    flex: 1;
    margin: 20px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease-in-out; /* Smooth transition for hover effect */
}

.item i {
    font-size: 36px;
    color: #007bff;
    margin-bottom: 15px;
}

.item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
.switch-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 10px 300px;
}

.switch-button button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Hover Effects */
.switch-button button:hover {
    background-color: #0056b3;
}
.calculator-container button:hover {
    background-color: #0056b3;
}

.calculator-container #sip-result,
.calculator-container #lumpsum-result {
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: bold;
}
.items .item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.items .item:hover i {
    color: #f4f4f4;
}

.items .item:hover h3 {
    color: #f4f4f4;
}

/* Responsive Design */
@media (max-width: 992px) { /* Medium screens (tablets) */
    .items {
        flex-direction: column;
        align-items: center;
    }

    .item {
        width: calc(50% - 20px); /* 2 items per row */
    }
}

@media (max-width: 768px) { /* Small screens (mobile devices) */
    .items {
        flex-direction: column;
    }

    .item {
        width: 100%; /* 1 item per row */
        margin-bottom: 20px; /* Add spacing between items */
    }
}

@media (max-width: 576px) { /* Extra small screens (smaller mobile devices) */
    .item p {
        font-size: 0.9rem; /* Smaller text for better fit */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer ul li {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .item {
        width: calc(50% - 20px); /* 2 items per row on smaller screens */
    }
}



@media (max-width: 480px) {
    .item {
        width: 100%; /* 1 item per row on very small screens */
    }
}
@media (max-width: 1040px){
    header {
        padding: 12px 20px;
    }
    section {
        padding: 100px 20px;
    }
    .home .media-icons {
        right: 15px;
    }
    header .navigation {
        display: none;
    }

}
/* get in touch styling */
.get-in-touch {
    width: 100%;
    height: 100vh;
    background: #243A5E;
    display: flex;
    align-items: center;
    justify-content: center;
}

form {
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 50px 60px; /* Adjusted padding for a larger form */
    width: 90%; /* Default responsive width */
    max-width: 700px; /* Increased max width for a larger form */
    border-radius: 15px; /* Slightly increased rounding for a modern look */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Added shadow for better visibility */
}

form h3 {
    color: #555;
    font-weight: 800;
    margin-bottom: 25px; /* Adjusted spacing */
    text-align: center; /* Centered the heading */
    font-size: 24px; /* Larger font size */
}

form input, form textarea {
    border: 0;
    margin: 15px 0; /* Increased spacing between inputs */
    padding: 15px; /* Larger padding for bigger input fields */
    outline: none;
    color: #000;
    background: #f5f5f5;
    font-size: 18px; /* Increased font size */
    border-radius: 8px; /* Slightly larger border radius */
}

form textarea {
    resize: none;
    color: #000;/* Disable manual resizing for cleaner layout */
}

form button {
    padding: 15px;
    background: #ff5361;
    color: #fff;
    font-size: 18px;
    border: 0;
    outline: none;
    cursor: pointer;
    width: 180px; /* Slightly larger button width */
    margin: 30px auto 0; /* Adjusted margin for better positioning */
    border-radius: 30px;
    transition: background 0.3s; /* Add hover effect */
}

form button:hover {
    background: #e94450; /* Slightly darker red on hover */
}

/* our services styling */
.our-services-section {
    margin-top: 100px; /* Offset for the fixed header */
    padding: 60px 20px;
    text-align: center;
    position: relative; /* To make sure the images stay on top of the video */
    z-index: 1;
}
.our-services-section .header {
    background: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}
.our-services-section .navigation a {
    color: white; /* Ensures navigation items are visible */
}
.video-container {
    position: relative; /* Keep the video in place while scrolling */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Behind the content */
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Ensures the video covers the entire container */
}

.services-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease;
    position: relative; /* To ensure images align properly */
    z-index: 1; /* Keeps content on top */
}

.service-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.service-item i {
    font-size: 40px;
    color: #ff5361;
    margin-bottom: 10px;
}
.our-services-section h2 {
    color: #000;
    font-size: 40px;
}

.service-item h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 20px;
    line-height: 1.5;
    color: #000;
}
.btn {
            display: inline-block;
            padding: 10px 20px;
            margin-top: 20px;
            background-color: #2980b9;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .btn:hover {
            background-color: #1c5985;
        }
/* Style the images */
.service-item .service-image {
    max-width: 100%; /* Ensure the image fits within the container */
    height: auto;
    border-radius: 8px; /* Optional: adds rounded corners */
    object-fit: cover;
    margin-bottom: 15px; /* Space between the image and the text */
}

/* For the insurance service, adjust the two images */
.our-services service-item-insurance {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 40px; /* Increased padding to make the section larger */
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease;
    position: relative;
    z-index: 1;
    margin-bottom: 40px; /* Extra margin to push down the next section */
}

.our-services service-images {
    display: flex;
    gap: 15px; /* Space between the images */
    margin-bottom: 15px;
}

.our-services service-images img {
    max-width: 48%; /* Ensure two images fit side by side */
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}
.our-services service-item-insurance .our-services service-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 15px;
}
/* Adjust the unlisted shares section to push it below */
.our-services unlisted-shares {
    margin-top: 60px; /* Adds space above the unlisted shares section */
}

/* Footer */
.our-services footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    margin-top: 40px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    header .navigation-items {
        display: block;
        text-align: center;
    }

    .services-items {
        grid-template-columns: 1fr;
    }

    .service-images {
        flex-direction: column; /* Stack images vertically on small screens */
        gap: 10px;
    }

    .service-images img {
        max-width: 100%; /* Ensure images take full width on small screens */
    }
    .service-item-insurance {
        padding: 20px; /* Reduce padding on small screens */
    }
    #unlisted-shares {
        margin-top: 40px; /* Less margin on smaller screens */
    }
}

/* services page */
/* General Styles */
.services {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: #000000;
    overflow: auto;
}
.services-page {
    background: #000000; /* Pure black */
    color: #ffffff; /* White text for contrast */
}


/* Header */
.services .header{
    z-index: 1000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    color: #333;

    justify-content: space-between;
    align-items: center;
    padding: 15px 200px;
    transition: 0.5s ease;
}

.brand {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: white;
}
.services .video-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.services .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.invest-btn {
    display: inline-block;
    background-color: #007bff; /* Blue color */
    color: white;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.invest-btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
}


/* Navigation */
.services .navigation {
    display: flex;
}

.services .navigation-items {
    position: absolute;
    top: 60px;
    right: 0;
    background: #2c3e50;
    width: 100%;
    display: none;
    z-index: 1000;
}
.services .navigation.active .navigation-items {
    display: flex;
    flex-direction: column;
}
.services .navigation .navigation-items a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s;
}

.services .navigation .navigation-items a:hover {
    color: #f1c40f;
}

/* Responsive Navigation Menu */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Services Section */
.our-services-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
}

.our-services-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* Services Grid */
.services-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Items */
.service-item {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 40px;
    color: #3498db;
    margin-bottom: 10px;
}

.service-item h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Associated With Section */
.associate-section {
    text-align: center;
    margin: 40px 0;
}

.associate-section h2 {
    font-size: 28px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 10px;
}

.logo-container img {
    height: 70px;
    max-width: 160px;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

.logo-container img:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: #222; /* Dark background */
    color: white; /* White text */
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    position: relative;
    width: 100%;
}


/* ==================== RESPONSIVE STYLES ==================== */

/* Small Screens (Tablets & Mobile) */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .navigation-items {
        display: none;
        flex-direction: column;
        background-color: #2c3e50;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .navigation-items a {
        display: block;
        padding: 10px;
    }

    .menu-toggle {
        display: block;
    }

    .navigation.active .navigation-items {
        display: flex;
    }

    /* Services Section */
    .services-items {
        grid-template-columns: 1fr;
    }

    .our-services-section h2 {
        font-size: 28px;
    }

    /* Associated With Section */
    .associated-with-section h2 {
        font-size: 28px;
    }
}

/* Extra Small Screens (Mobile Phones) */
@media (max-width: 480px) {
    .brand {
        font-size: 20px;
    }

    .menu-toggle {
        font-size: 24px;
    }

    .our-services-section h2,
    .associated-with-section h2 {
        font-size: 24px;
    }

    .service-item {
        padding: 15px;
    }

    .service-item h3 {
        font-size: 20px;
    }

    .service-item p {
        font-size: 14px;
    }

    .banner img {
        max-width: 100%;
    }
}

/* mutual funds page */
.mutual-funds {
    background-color: #121212;
    color: #fff;
    padding: 100px 50px;
    text-align: center;
}

.container {
    background: rgba(0, 0, 0, 0.85); /* Black background with slight transparency */
    color: white; /* White text */
    text-align: center; /* Center-align all content */
    padding: 50px 20px; /* Add padding for spacing */
    border-radius: 10px; /* Smooth rounded corners */
    width: 80%; /* Adjust width */
    margin: 50px auto; /* Center the container */
}

.container h1 {
    font-size: 2.5rem; /* Make heading bigger */
    font-weight: bold;
    margin-bottom: 20px; /* Add space below heading */
}

.container p {
    font-size: 1.2rem; /* Increase paragraph text size */
    margin-bottom: 30px; /* Add space below paragraph */
}

.funds-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Ensure responsiveness */
    gap: 20px;
}

.fund-box {
    background: rgba(255, 255, 255, 0.1); /* Slight white transparency for contrast */
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    min-width: 250px;
}

.fund-box h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.fund-box p {
    font-size: 1rem;
}

.cta-button {
    display: inline-block;
    background: #ff9800; /* Eye-catching orange */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #e68900; /* Darker shade on hover */
}

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

.mutual-funds .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Black transparent overlay */
.mutual-funds .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* 60% black transparency */
    z-index: 0;
}

/* Mutual Funds Page Content */
.mutual-funds {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    z-index: 1;
}

.mutual-funds .content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.mutual-funds .content h1 {
    font-size: 3em;
    font-weight: 700;
}

.mutual-funds .content span {
    color: #00bcd4; /* Accent color */
}

.mutual-funds .content p {
    font-size: 1.2em;
    margin-top: 20px;
}

.mutual-funds .content a {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #00bcd4;
    color: #fff;
    font-size: 1.1em;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
}

.mutual-funds .content a:hover {
    background: #0097a7;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 50px;
  margin: 0 40px;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 80px;
  margin: 0 50px;
}
.slider-heading {
  text-align: center;
  font-size: 28px; /* Adjust size as needed */
  font-weight: bold;
  margin-bottom: 20px; /* Space between heading and slider */
  color: #333; /* Adjust color as needed */
}

/* insuarance page */
/* Transparent black overlay for video */
.insurance-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Black film effect */
.insurance-banner .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 50% transparent black */
    top: 0;
    left: 0;
}

/* Content Styling */
.insurance-banner .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 20px;
    border-radius: 10px;
}

.insurance-banner .content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.insurance-banner .content h1 span {
    color: #f7c308; /* Highlighted color */
}

.insurance-banner .content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .insurance-banner .content h1 {
        font-size: 2.5rem;
    }

    .insurance-banner .content p {
        font-size: 1rem;
    }
}


/* unlisted shares page*/
/* Banner Section */
.investment-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Video Background */
.video-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay for Better Readability */
.investment-banner .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Darker overlay for a premium investment feel */
    top: 0;
    left: 0;
}

/* Content Styling */
.investment-banner .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 750px;
    padding: 25px;
    border-radius: 10px;
}

.investment-banner .content h1 {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.investment-banner .content h1 span {
    color: #ffd700; /* Gold color for an elite investment vibe */
}

.investment-banner .content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .investment-banner .content h1 {
        font-size: 2.5rem;
    }

    .investment-banner .content p {
        font-size: 1.1rem;
    }
}

/* accounting and taxation page */
/* Banner Section */
.accounting-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Video Background */
.video-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay for Better Readability */
.accounting-banner .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Slightly lighter for a professional feel */
    top: 0;
    left: 0;
}

/* Content Styling */
.accounting-banner .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 750px;
    padding: 25px;
    border-radius: 10px;
}

/* Headline Styling */
.accounting-banner .content h1 {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

/* Highlighted Text */
.accounting-banner .content h1 span {
    color: #1E90FF; /* Professional blue for financial credibility */
}

/* Description Text */
.accounting-banner .content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .accounting-banner .content h1 {
        font-size: 2.5rem;
    }

    .accounting-banner .content p {
        font-size: 1.1rem;
    }
}

/* others page */

/* Banner Section */
.services-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Video Background */
.services-banner .video-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.services-banner .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay for Better Readability */
.services-banner .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for a premium financial feel */
    top: 0;
    left: 0;
}

/* Content Styling */
.services-banner .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 20px;
    border-radius: 10px;
}

/* Headline Styling */
.services-banner .content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Highlighted Text */
.services-banner .content h1 span {
    color: #1E90FF; /* Professional blue */
    font-weight: bold;
}

/* Description Text */
.services-banner .content p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 20px;
        margin: 30px auto;
    }

    .content h1 {
        font-size: 2.2rem;
    }

    .content p {
        font-size: 1rem;
    }
}
