/* Reset default margin and padding for all elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensures padding and border are included in element dimensions */
}

/* Ensure html and body take full height */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif; /* Default font */
    text-align: center; /* Center-align text */
    background-color: #ffffff; /* White background */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Additional global styles */
body {
    line-height: 1.6; /* Improve readability */
    color: #333; /* Default text color */
}

/* White Header Line */
/* Header Line */
.header-line {
    width: 100%;
    height: 25px; /* Thickness of the line */
    background-color: white; /* Color of the line */
    position: fixed; /* Fixed at the top */
    top: 10px;
    left: 0;
    z-index: 1001; /* Place it above the header */
}

/* Header */
/* Header */
header {
    background-color: #004080; /* Blue background */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 150px; /* Adjust header height as needed */
    padding: 0 20px; /* Adjusted padding */
    position: fixed; /* Fix header at the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensure header is above other content */
    border-bottom: 2px solid white; /* Add border line between header and slider */
}

/* Slider container */
.slider-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 140px); /* Full height minus header height */
    margin-top: 140px; /* Push slider down by header height */
    overflow: hidden;
}

#logo {
    height: 148px; /* Adjusted logo size */
    width: auto; /* Maintain aspect ratio */
}

/* Navigation */
.navbar {
    display: flex;
    align-items: center;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 50px; /* Increased gap between buttons */
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 22px; /* Increased font size */
    padding: 12px 20px; /* Increased padding */
    transition: background-color 0.3s, transform 0.3s;
    border-radius: 5px; /* Slight rounded corners */
}

.navbar ul li a:hover {
    background-color: #004080; /* Background color on hover */
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Left Navigation */
.nav-left {
    margin-right: auto; /* Push logo to the center */
}

/* Right Navigation */
.nav-right {
    margin-left: auto; /* Push logo to the center */
}

/* Footer */

/* Footer */
.footer {
    background-color: #222;
    color: #fff;
    padding: 80px;
    display: flex;
    justify-content: center;
    position: relative; /* Ensure footer stays at the bottom */
    z-index: 1; /* Place footer above the slider */
}

.footer-container {
    display: flex;
    align-items: center;
    width: 190%;
    max-width: 13500px; /* Limit width for better readability */
    justify-content: space-between;
}

/* Logo Section */
.footer-logo img {
    max-height: 280px; /* Adjust logo size */
    width: auto; /* Maintain aspect ratio */
}

/* Content Section */
.footer-content {
    flex: 1;
    padding: 0 20px;
    text-align: left; /* Align content to the left */
}

.footer-content h2 {
    margin-bottom: 10px;
    font-size: 20px; /* Heading size */
}

.footer-content p {
    font-size: 20px; /* Smaller text for concise content */
    line-height: 1.4; /* Tight line spacing */
    color: #ccc;
    margin: 0; /* Remove default margin */
}

/* Buttons Section */
.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Equal spacing between button groups */
}

.button-group {
    display: flex;
    gap: 15px; /* Equal spacing between buttons */
}

button {
    background-color: #444;
    color: white;
    border: none;
    padding: 15px 15px;
    cursor: pointer;
    border-radius: 12px;
    font-size: 14px; /* Smaller font size for buttons */
    transition: background-color 0.3s;
}

button:hover {
    background-color: #555; /* Background color on hover */
}

/* Slider Container */
.slider-container {
    position: relative;
    width: 100%; /* Full width */
    height: calc(100vh - 3000px); /* Full height minus header height */
    margin: 0; /* Remove margin */
    overflow: hidden;
}

/* Slider */
.slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%; /* Full height */
}

/* Slides */
.slides {
    display: flex;
    width: 100%;
    height: 100%; /* Full height */
}

.slides img {
    width: 100vw; /* Full viewport width */
    height: 100%; /* Full height */
    object-fit: cover; /* Ensure images cover the area */
}

/* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}
/* Header */
header {
    transition: background-color 0.5s ease; /* Smooth background color transition */
}

/* Buttons */
button {
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth transform and color transition */
}

/* Social Media Icons */
.social-icon {
    transition: transform 0.5s ease; /* Smooth rotation transition */
}

/* Logo */
#logo {
    transition: opacity 1s ease; /* Smooth fade-in transition */
}
/* Slider Container */
/* Slider Container */
.slider-container {
    position: relative;
    width: 100%; /* Full width */
    height: calc(100vh - 170px); /* Full height minus header height */
    margin: 0; /* Remove margin */
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%; /* Full height */
}

.slides {
    display: flex;
    width: 100%;
    height: 100%; /* Full height */
}

.slides img {
    width: 100vw; /* Each image takes full viewport width */
    height: 100%; /* Full height */
    object-fit: cover; /* Ensure images cover the area */
    border-right: 2px solid white; /* Add border between images */
    box-sizing: border-box; /* Ensure border is included in the width */
}

/* Remove border from the last image */
.slides img:last-child {
    border-right: none;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}
.video-container {
    width: 550px; /* Same as font size of h1 */
    height: 490px; /* Same as width to make it square */
    margin: 10px auto; /* Center the container */
    position: relative;
    overflow: hidden;
    border: 2px solid #000; /* Optional: Add a border */
}

/* Iframe styling */
.video-container iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: none; /* Remove iframe border */
}
.para{
    margin-top: 40px;
}
.para-2{
    margin-top: 20px;
}
/* Style for the h2 heading */
.font {
    margin-top: 35px;
    font-family: "Arial MT", Arial, sans-serif; /* Set font type to Arial MT */
    font-size: 28px; /* Increase font size */
}

/* Style for the "CISCE" text */
.font span {
    color: rgb(246, 167, 94); /* Set the color to yellow */
    text-decoration: underline black; /* Add black underline */
}
.interactive-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 1200px;
}

h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

/* Slider container */
.slider-container-2 {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Slider */
.slider {
    display: flex;
    transition: transform 0.5s ease;
}

/* Slides */
.slides-2 {
    display: flex;
    width: 100%;
}

.slides-2 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Navigation buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 24px;
    transition: background-color 0.3s ease;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Content section */
.content-2 {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h3 {
    font-size: 28px;
    color: #004080;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}
/* General styles */
* Slider container with border */
.slider-container-2 {
    position: relative;
    max-width: 1000px; /* Adjust as needed */
    margin: 0 auto;
    overflow: hidden;
    border: 4px solid #004080; /* Blue border */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Slider */
.slider {
    display: flex;
    transition: transform 0.5s ease;
}

/* Slides */
.slides-2 {
    display: flex;
    width: 300%; /* 3 images visible at a time */
    gap: 10px; /* Add gap between images */
    padding: 10px; /* Optional: Add padding inside the slider */
    transition: transform 0.5s ease; /* Smooth sliding animation */
}

.slides-2 img {
    width: calc(33.33% - 7px); /* Adjust width to account for the gap */
    flex-shrink: 0;
    border: 2px solid #004080; /* Optional: Add border around images */
    border-radius: 10px; /* Optional: Add rounded corners to images */
    box-sizing: border-box; /* Ensure border is included in width */
}

/* Navigation buttons */
.prev-2,.next-2 {
    position: absolute;
    top: 50%;
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 40%;
    font-size: 24px;
    transition: background-color 0.3s ease;
}

.prev-2:hover, .next-2:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-2 {
    left: 15px;
}

.next-2 {
    right: 20px;
}



/* Button styling */
.why-choose-button {
    background-color: #ffcc00; /* Yellow background */
    color: #004080; /* Blue text */
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin: 25px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.why-choose-button:hover {
    background-color: #e6b800; /* Darker yellow on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.why-choose-button:active {
    transform: scale(0.95); /* Slightly shrink on click */
}
.result{
    margin-bottom: 20px;
    margin-top: -40px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  color:#004080;
   
}
.result:hover {
  
    transform: scale(1.05); /* Slightly enlarge on hover */
}
