body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.top-div{
    height: 320px;
    background: linear-gradient(135deg,#9da6f7, #03024d);
    box-shadow: 0 8px 20px rgba(255, 255, 254, 0.884);
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 130px;
    margin-top: 0; /* Remove negative margin */
    background: linear-gradient(135deg, #9da6f7, #03024d);
    box-shadow: 0 8px 20px rgba(255, 255, 254, 0.884);
    position: fixed; /* Make header fixed */
    top: 0; /* Fix it to the top */
    width: 100%; /* Full width */
    z-index: 100; /* Ensure it’s above other elements */
}
.navbar-desktop li a {
    text-decoration: none;
    color: orange;
    font-size: 19px;
}

.logo-icon{
    /* background-color: black; */
    height: 135px;
}
.logo img {
    width: 100%;
    height: 100%;
}

.navbar-desktop {
    display: flex; /* Show navigation items in desktop view */
    margin: 5px;
    position: relative;
    z-index: 10;
}

.navbar-desktop ul {
    display: flex;
    gap: 10px; /* Space between navigation items */
    list-style-type: none;
}

.navbar-desktop li a {
    text-decoration: none;
    color: orange;
    font-size: 20px;
    padding: 7px;
}
.navbar-desktop .dropdown .dropdown-content a {
    font-size: 16px;
    color: #03024d;
}
.navbar-desktop .dropdown .dropdown-content a:hover{
    color: orange;
}
.navbar-desktop .dropdown .dropbtn {
    font-size: 20px;
    color: orange;
    padding: 10px;
}

.dropdown {
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 18px;
    border: none;
    outline: none;
    color: orange;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 20;
}

/* Links inside the dropdown */
.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    /* background-color: rgb(12, 3, 134); */
    color: white;
}
 
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    color: orange;
    display: none; /* Hide by default */
    margin-right: 10px;
}

/* Media query for mobile view */
@media (max-width: 900px) {
    .navbar-desktop {
        display: none; /* Hide navigation items on mobile */
    }
    .menu-icon {
        display: block; /* Show hamburger menu on mobile */
    }
}

.navbar {
    position: fixed;
    /* top: 0; */
    left: 0;
    width: 100%;
    height: auto;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    /* align-items: center; */
    margin-top: -90px;
    text-align: justify;
}

.navbar.open {
    transform: translateX(0);
}

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

.navbar li {
    margin: 5px;
}

.navbar a {
    color: orange;
    text-decoration: none;
    font-size: 15px;
}

.navbar .dropdown {
    width: 120px;
}

.navbar .dropdown-content{
    background-color: #03024d;
    /* margin-left: -30px; */
}
.navbar .dropdown-content a {
    padding: 5px;
}
.close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}
.navbar ,.dropdown .dropbtn {
    font-size: 15px;
    padding: 5px;
}


/* =============== image section =================== */
.image-section {
    position: relative;
    height: 25vh; /* Full viewport height */
    overflow: hidden; /* Ensures content doesn't overflow */
    z-index: 0;
    margin-top: 70px;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire section */
    z-index: 0; /* Sends the image behind the text */
}

.overlay {
    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; /* Places the overlay above the image */
}

.text-container {
    position: relative;
    top: 50%;
    left: 20px; /* Adjust as needed */
    transform: translateY(-50%);
    color: white; /* Change text color as needed */
    z-index: 2; /* Ensure text is above the overlay */
    margin-top: -6px;
}

.text-container h1 {
    font-size: 25px; /* Adjust font size as needed */
    /* margin: 0; */
    /* background-color: #03024d; */
    width: 500px;
    /* color: #9da6f7; */
    margin-top: 22px;
}

.text-container p {
    font-size: 24px; 
}
.text-container .slide-text {
    position: absolute;
    white-space: nowrap;
    font-size: 16px;
    font-weight: bold;
    animation: slideInOut 12s infinite; /* Infinite sliding effect */
}

@keyframes slideInOut {
    0% {
        left: 100%; /* Start the text outside the container from the right */
    }
    50% {
        left: 0; /* Move the text to the container's starting position */
    }
    100% {
        left: -100%; /* Move the text outside the container to the left */
    }
}
@media (max-width:900px) {
    .image-section{
        height: 20vh;
    }
    .text-container h1 {
        font-size: 18px;
        margin-top: 30px;
    }
    .text-container p {
        font-size: 17px;
    }
}

/* ================== accordion ==================== */


/* Container for the entire page */
.page-container {
    display: flex;
    flex-direction: row; /* Horizontally align the sidebar and content */
    width: 100%;
    min-height: 100vh;
}

/* Sidebar on the left side */
.sidebar {
    width: 240px; /* Set a fixed width for the sidebar */
    background-color: white;
    padding: 20px;
    box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.1);
}
.sidebar p {
    color: orange;
    font-size: 22px;
}
.sidebar ul {
    list-style-type: none;
    padding: 0;
    
}

.sidebar li {
    margin-bottom: 10px;
    border-bottom: 2px solid whitesmoke;
    /* background: #03024d; */
}

.sidebar a {
    color: #03024d;
    text-decoration: none;
    font-size: 14px;
    display: block;
}

.sidebar a:hover {
    color: #ff7b00; /* Highlight the links on hover */
}


/* ======================= test box ==================== */
.test-box {
    background: linear-gradient(135deg, #9da6f7, #03024d); /* Soft light gradient */
    border-radius: 15px; /* Smooth rounded corners */
    padding: 25px 30px; /* Padding for inner space */
    width: 150px; /* Optional: Limits width to maintain readability */
    margin: 40px auto; /* Centers the quote box */
    box-shadow: 0 6px 15px rgba(72, 85, 255, 0.2); /* Soft, blue-ish shadow for a floating effect */
    position: relative;
    font-family: 'Georgia', serif; /* Elegant serif font */
    font-size: 1.25rem; /* Slightly larger font size */
    color: #333; /* Dark text for readability */
    text-align: center; /* Centers the text inside */
    height: 350px;
    margin-top: 60px;
    margin-left: 80px;
    color: whitesmoke;
    /* font-weight: bold; */
    /* text-align: center; */
  }
  
  .test-box::before {
    content: "“"; /* Open quote mark */
    font-size: 3rem; /* Large, decorative quote mark */
    color: #4682b4; /* Deep blue color for the quote mark */
    position: absolute;
    top: 15px;
    left: 10px;
  }
  
  .test-box::after {
    content: "”"; /* Close quote mark */
    font-size: 3rem; /* Matching size to the open quote mark */
    color: #4682b4; /* Deep blue color */
    position: absolute;
    bottom: -10px;
    right: 10px;
  }
  
  .test-text {
    font-style: italic; /* Makes the quote feel more formal */
    margin: 0; /* Removes any extra margin from the paragraph */
    margin-top: 30px;
  }
  
@media (max-width:900px) {
    .test-box{
        width: 70%;
        height: auto;
        margin: auto;
        margin-top: 20px;
    }
    .test-text{
        /* background-color: #333; */
        margin-top: 10px;
    }
}

/* Main content area */
.main-content {
    flex: 1; /* Take up the remaining space */
    margin-left: 20px; /* Add space between the sidebar and content */
    padding: 20px;
    /* background-color: blue; */
    margin-bottom: 30px;
}

/* Accordion Styles */
.accordion {
    width: 90%;
    margin: 20px auto;
    margin-bottom: 80px;
    /* background-color: black; */
}

.accordion-item {
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-bottom: 10px;
}

.accordion-button {
    background-color: whitesmoke;
    color: orange;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    border-radius: 10px;
}

.accordion-button:hover {
    background-color: #03024d;
}

.accordion-content {
    display: none;
    padding: 15px;
    border-top: 1px solid #ccc;
}

.accordion-content p {
    font-size: 17px;
}

/* Division container for two columns */
.division-container {
    display: flex;
    justify-content: space-between; /* Optional: adds space between the divs */
    width: 90%;
    margin: auto;
    margin-top: 10px;
}

.division-text, .division-text2 {
    width: 48%; /* Adjust width as needed */
    padding: 10px;
}

.division-text p, .division-text2 p {
    font-size: 18px;
    color: gray;
}

.division-text2 {
    border-left: 1px solid gray;
}

.division-text .l-div , .division-text2 .l-div{
    /* background-color: #0056b3; */
    text-align: center;
}
.division-text .l-div img, .division-text2 .l-div img{
    width: 220px;
    height: 200px;
    border-radius: 50px;
}
.division-text .l-div p, .division-text2 .l-div p {
    font-size: 18px;
}
.container-last-div{
    /* background-color: #0056b3; */
    width: 800px;
    margin: auto;
    margin-right: 30px;
    margin-top: -40px;
    margin-bottom: 70px;
    padding: 8px;
}

/* Media queries for responsiveness */
@media (max-width: 1400px) {
    .division-text p, .division-text2 p {
        font-size: 16px;
    }
}

@media (max-width: 1030px) {
    /* Mobile responsiveness */
    .page-container {
        flex-direction: column; /* Stack the sidebar and content vertically */
    }

    .sidebar {
        width: 100%; /* Sidebar takes full width */
        margin-bottom: 20px;
        display: none;
    }

    .main-content {
        margin-left: 0;
    }

    .division-container {
        flex-direction: column; /* Stack the division texts vertically */
        width: 100%; /* Full width */
    }

    .division-text, .division-text2 {
        width: 80%; /* Make divs full width */
        margin: auto;
        text-align: center;
    }

    .division-text2 {
        border: transparent;
        margin-top: -20px;
    }

    .division-text p, .division-text2 p {
        font-size: 15px;
        text-align: justify;
    }

    .accordion-button {
        font-size: 14px;
    }

    .accordion-content p {
        font-size: 14px;
    }

    .test-box{
        width: 70%;
        height: auto;
        margin: auto;
        margin-top: 20px;
    }
    .test-text{
        /* background-color: #333; */
        margin-top: 10px;
    }
    .container-last-div{
        width: 90%;
        margin: auto;
        margin-top: -70px;
        margin-bottom: 30px;
        font-size: 16px;
    }
}



/* ============ footer -================ */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    /* background-color: #333; */
    color: orange;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: linear-gradient(135deg,#9da6f7, #03024d);
}

.social-icons a {
    margin-right: 15px; /* Spacing between icons */
}

.social-icons img {
    width: 24px; /* Set appropriate icon size */
    height: 24px;
}
.copyright{
    margin-right: 25px;
}

@media (max-width:900px) {
    .copyright{
        font-size: 15px;
    }
}
/* ==================== about us =================== */
.about-us{
    width: 500px;
    margin: auto;
    margin-top: 40px;
    padding: 10px;
    margin-bottom: 50px;
    background-color: #007BFF;
    /* float: right; */
    margin-right: 160px;
}

.about-us .top-about-text{
    color: gray;
    font-size: 19px;
}
.about-us .second-top-about-text{
    color: black;
    font-size: 17px;
}
.about-us p{
    color: black;
    font-size: 17px;
}
.about-us h4{
    font-size: 18px;
}
@media (max-width:900px) {
    .about-us{
        width: 80%;
        padding: 10px;
        margin-top: 30px;
    }
    .about-us .top-about-text{
        font-size: 17px;
    }
}

/* ================ partners ==================== */

/* Main Partners Section */
.partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px; /* Increased space for better breathing room */
    padding: 30px;
    background-color: #f4f4f4; 
    border-radius: 10px;
    margin-top: 100px;
  }
  
  /* Partner item */
  .partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    max-width: 180px;
    background-color: #fff; /* White background for each partner block */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Partner Link: Make the whole block clickable */
  .partner-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
  }
  
  /* Partner Logo */
  .partner-logo {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    transition: transform 0.3s ease;
  }
  
  /* Hover effect on logo: Slight zoom effect */
  .partner:hover .partner-logo {
    transform: scale(1.05);
  }
  
  /* Partner Name */
  .partner-name {
    font-size: 18px;
    font-weight: bold;
    color: #333; /* Darker text color */
    transition: color 0.3s ease;
  }
  
  /* Hover effect on name: Change color */
  .partner:hover .partner-name {
    color: #ff6600; /* Orange hover color */
  }
  
  /* Hover effect on the whole partner block */
  .partner:hover {
    transform: translateY(-5px); /* Slight lift effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* More prominent shadow */
  }
  
  /* Responsive Design for smaller screens */
  @media (max-width: 600px) {
    .partners {
      justify-content: center;
      padding: 20px;
      width: 80%;
      height: auto;
      margin-top: 10px;
      margin: auto;
      margin-bottom: 40px;
    }
  
    .partner {
      max-width: 130px; /* Reduced size for mobile screens */
      padding: 15px;
    }
  
    .partner-logo {
    width: 200px;
      max-height: 80px; /* Smaller logo size on mobile */
    }
  
    .partner-name {
      font-size: 16px;
    }
  }

  

/* =============== container ================ */
.container {
    display: flex;
    justify-content: flex-start;
    gap: 10px; /* Small space between divs */
    padding: 20px;
    flex-wrap: wrap; /* Allow items to wrap when needed */
    width: 1100px;
    margin: auto;
    margin-bottom: 30px;
    /* background-color: #03024d; */
}

.box {
    width: 300px; /* Initial width */
    /* Remove max-width to allow resizing */
    color: white;
    text-align: center;
    background: linear-gradient(135deg, #9da6f7, #03024d); 
    border-radius: 15px; /* Smooth rounded corners */
    padding: 25px 30px; /* Padding for inner space */
    margin: 40px auto; /* Centers the quote box */
    box-shadow: 0 6px 15px rgba(72, 85, 255, 0.2); /* Soft, blue-ish shadow for a floating effect */
    position: relative;
    font-family: 'Georgia', serif; /* Elegant serif font */
    font-size: 1.25rem; /* Slightly larger font size */
    color: #333; /* Dark text for readability */
    text-align: center; /* Centers the text inside */
    height: 380px;
    margin-top: 220px;
    margin-left: 80px;
    color: whitesmoke;
}

.box2 {
    width: 500px; /* Initial width */
    /* Remove max-width to allow resizing */
    padding: 20px;
    text-align: justify;
    min-width: 200px; /* Prevents div from being too small */
    color: gray;
    font-size: 19px;
}

/* Decorative quote marks */
.box::before {
    content: "“"; /* Open quote mark */
    font-size: 3rem; /* Large, decorative quote mark */
    color: #4682b4; /* Deep blue color for the quote mark */
    position: absolute;
    top: -10px;
    left: 10px;
}

.box::after {
    content: "”"; /* Close quote mark */
    font-size: 3rem; /* Matching size to the open quote mark */
    color: #4682b4; /* Deep blue color */
    position: absolute;
    bottom: -10px;
    right: 10px;
}

.box p {
    font-style: italic; /* Makes the quote feel more formal */
    margin: 0; /* Removes any extra margin from the paragraph */
    margin-top: 90px;
}

/* Media Query for screen widths 1050px or below */
@media (max-width: 1050px) {
    .container {
        width: 90%; /* Container width adjusted to 90% */
        flex-direction: column; /* Stack the divs vertically */
        gap: 20px; /* Add more space when stacked */
        text-align: center;
        margin-bottom: 50px;
    }

    .box {
        width: 65%; /* Allow box to take up 45% of the container width */
        height: auto;
        margin: 20px auto; /* Center box with margin */
        margin-top: 20px;
    }

    .box p {
        margin-top: 10px;
        font-style: italic;
    }

    .box2 {
        width: 65%; /* Allow box2 to take up 45% of the container width */
        margin-bottom: 40px;
        margin: auto;
        /* background-color: black; */
    }
}

/* Media Query for smaller screen widths (900px or below) */
@media (max-width: 900px) {
    .container {
        width: 100%; /* Container takes full width of screen */
        flex-direction: column; /* Stack items vertically */
        gap: 20px; /* Add more space when stacked */
        text-align: center;
    }

    .box {
        width: 70%; /* Increase width to 70% on small screens */
        height: auto;
        margin: 20px auto; /* Center box with margin */
        margin-top: 20px;
    }

    .box2 {
        width: 70%; /* Increase width to 70% on small screens */
        margin-bottom: 40px;
        margin: auto;
        /* background-color: black; */
    }
}











  /* ========== contact ===================== */
/* General Styling for the Contact Section */
.contact-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap; /* Allows wrapping when screen is small */
    margin-top: 80px;
}

/* Each item inside the contact section */
.contact-item {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 8px;
    background-color: #f9f9f9; /* Light background color for all items */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
    transition: all 0.3s ease-in-out; /* Smooth transition for hover effects */
}

.contact-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Darker shadow on hover */
    transform: translateY(-5px); /* Slight lift on hover */
}

/* Styling the iframe */
.contact-item.iframe iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Styling the Contact Details */
.contact-item.details {
    display: flex;
    flex-direction: column;
}

.contact-item.details h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-item.details p {
    font-size: 16px;
    margin: 5px 0;
    color: #555;
}

.contact-item.details strong {
    color: #333;
}

/* Styling the Contact Form */
.contact-item.form h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-item.form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item.form input{
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s;
}
.contact-item.form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
    height: 200px;
    box-sizing: border-box;
    transition: border-color 0.3s; 
}
.contact-item.form input:focus, 
.contact-item.form textarea:focus {
    border-color: #007BFF; /* Focus state with blue border */
    outline: none; /* Remove default outline */
}

.contact-item.form button {
    padding: 12px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-item.form button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Responsive Styling for Smaller Screens (900px and below) */
@media (max-width: 1100px) {
    .contact-section {
        flex-direction: column;
        gap: 20px;
        margin-top: 10px;
        margin-bottom: 60px;
    }

    .contact-item {
        flex: none;
        width: 100%;
    }

    .contact-item.iframe iframe {
        height: 300px; /* Adjust iframe height on smaller screens */
    }
}


/* ================= quotediv ========================== */
.quote-div{
    width: 70%;
    margin: auto;
    background-color: #03024d;
    color: white;
    border-bottom-right-radius: 120px;
    border-top-left-radius:120px ;
    margin-bottom: 80px;
    padding: 20px;
    text-align: center;
}
.quote-div p {
    font-size: 16px;
    padding: 10px;
}