/* Reset and basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Initial header style */
header {
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    color: white; /* Default text color */
    background: rgba(255, 255, 255, 0.1); /* Transparent background */
    box-shadow: none;
    transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease; /* Smooth transition */
  }
  
  /* When the user scrolls */
  header.scrolled {
    background-color: white; /* White background when scrolled */
    color: black; /* Text color changes to black */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add shadow after scrolling */
  }
  
  /* Make sure the links inside the header also change color */
  header.scrolled a {
    color: black; /* Link color changes to black when scrolled */
  }
  
  /* Optional: Change the color of the menu icon if needed */
  header.scrolled .nav-toggle {
    color: black; /* Change hamburger menu icon color to black */
  }
  
  /* Navigation for large screens */
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
  }
  
  nav ul li a:hover {
    color: #FFA500;
  }
  
  /* Hamburger icon styles */
  .nav-toggle {
    display: none; /* Hidden by default */
    font-size: 1.5em;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    left: 1rem;
  }
  
  /* Sidebar styles for small screens */
  .sidebar {
    display: none; /* Hidden by default */
    position: fixed;
    top: 60px; /* Adjusted for header height */
    left: 0;
    width: 80%;       /* Use a larger width for better visibility */
    max-width: 300px; /* Cap the maximum width */
    height: 100%;
    background-color: whitesmoke;
    color: black;
    flex-direction: column;
    padding: 20px 0;
    z-index: 1000;
    text-align: center;
  }
  
  /* Sidebar visible when active */
  .sidebar.active {
    display: flex;
  }
  
  /* Sidebar main links styling */
  .sidebar a {
    display: block;          /* Make links block-level for full-width clickable areas */
    color: black;
    text-decoration: none;
    font-size: 20px;
    margin: 10px 0;
    padding: 10px;
  }
  
  .sidebar a:hover {
    color: aqua;
  }
  
  /* Dropdown container within the sidebar */
  .sidebar .dropdown {
    width: 100%;
  }
  
  /* Style for dropdown trigger (the parent link) */
  .sidebar .dropdown > a {
    font-size: 20px;
  }
  
  /* Dropdown content hidden by default */
  .sidebar .dropdown-content {
    display: none;
    flex-direction: column;
    align-items: center;
    margin-top: 5px;
  }
  
  /* When dropdown is toggled open, show its content */
  .sidebar .dropdown.active .dropdown-content {
    display: flex;
  }
  
  /* Style for dropdown items */
  .sidebar .dropdown-content a {
    font-size: 18px;
    padding: 8px 0;
    width: 100%;
    text-align: center;
    border-top: 1px solid #ddd;
  }
  
  /* Optional: Remove the border from the first dropdown item */
  .sidebar .dropdown-content a:first-child {
    border-top: none;
  }
  
  /* Media Queries */
  
  /* Large screens: hide the hamburger and show nav links */
  @media (min-width: 769px) {
    .nav-toggle {
      display: none !important; /* Hide the hamburger icon */
    }
  
    nav ul {
      display: flex; /* Show nav links horizontally */
    }
  }
  
  /* Small screens: show the hamburger and hide nav links */
  @media (max-width: 768px) {
    .nav-toggle {
      display: block; /* Show the hamburger icon */
    }
  
    nav ul {
      display: none; /* Hide nav links */
    }
  }
  
/* Home Section */
#home {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 51, 0.85), rgba(0, 0, 51, 0.7));
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.content {
    color: #fff;
    text-align: center;
    max-width: 900px;
    padding: 0 30px;
    position: relative;
    margin-top: 0px;
    z-index: 2;
    transform: translateY(-20px);
}

.content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease forwards;
}

.content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #FFA500, #FF6347);
    color: #fff;
    border: none;
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(255, 165, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-indicator .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: #fff;
    border-radius: 3px;
    animation: scrollAnim 2s ease infinite;
}

.scroll-indicator p {
    color: #fff;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 10px;
}



/* Sound controls */
.sound-control {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.sound-control:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





/* Section Styles */
section {
    padding: 60px 20px;
    text-align: center;
}

/* About, Projects, Partners, Contact */
section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Form */
form input, form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: blue;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: blue;
}
/* Explanation Section */
/* Explanation Section */
#explanation {
    background-color: #000033; /* Dark blue background color */
    background-image: url('in-touch.png'); /* Add the path to your image */
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center center; /* Centers the image */
    background-attachment: fixed; /* Keeps the image fixed as the user scrolls */
    color: white;
    padding: 60px 20px; /* Adjusted padding to accommodate the background */
    height: 80vh; /* Set the height to 80% of the viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: start; /* Align text to the left */
    padding-left: 40px; /* Adds padding to the left for text */
    width: 100%; /* Ensures the section spans the full width */
}

#explanation .content {
    max-width: 800px; /* Optional: To limit the width of the content */
    text-align: start; /* Ensures left-alignment of text */
    width: 100%; /* Ensures the content takes full available width */
}

#explanation h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: start;
    font-weight: bold;
    color: white; /* Ensures the text color for h2 is white */
}

#explanation p {
    font-size: 1.2em;
    margin-top: 5px;
    line-height: 1.6;
    opacity: 0.9;
    color: white; /* Ensures the text color for p is white */
    max-width: 600px; /* Optional: Limiting the width of the paragraph for better readability */
}


  

/* Contact Form Section */
#contact {
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 600px; /* Reduced size */
    margin: 30px auto;
}

/* Contact Section Title */
#contact h2 {
    font-size: 2.2em;
    color: #000033;
    margin-bottom: 20px;
}

/* Contact Section Paragraph */
#contact p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Form Group */
.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
}

.form-group label {
    font-size: 1.1em;
    color: #333;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    color: #333;
    transition: box-shadow 0.3s ease;
    background-color: #f3f4f6;
    width: 100%;
}

/* Input Fields */
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: #FFA500;
    border: #FFA500;
}

/* Submit Button */
.submit-btn {
    background-color: #000033;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    width: 100%;
    max-width: 200px; /* Button size */
    margin-top: 20px;
}

.submit-btn:hover {
    background-color: #2a2a72;
}

/* Footer Styles */
footer {
    background-color: #000033;
    color: white;
    text-align: center;
    padding: 10px 0;
}

/* Section Styles */
section {
    padding: 60px 20px;
    text-align: center;
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Form */
form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: blue;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: blue;
}

/* Footer Styles */
footer {
    background-color: #000033;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
}

/* Small screens: center text, adjust padding for footer */
@media (max-width: 768px) {
    footer {
        padding: 15px;
        font-size: 0.9em;
    }
}
/* Slider Section */
#slider-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Slider Container */
.slider-container {
    width: 100%;
    height: 100%;
    justify-content: flex-start;
    display: flex;
    position: relative;
    overflow: hidden;
}

/* Slider */
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    justify-content: flex-start;
}

/* Card Container */
.card-container {
    display: flex;
    flex-direction: column; /* Stack image and content vertically */
    align-items: center;
    justify-content: flex-start; /* Ensure items are aligned from the top */
    width: 100%;
    padding: 10px; /* Reduced padding further from 30px to 20px */
    object-fit: contain;
    flex-wrap: wrap;
    box-sizing: border-box;
    min-height: 100vh; /* Ensure the container takes up full height of the viewport */
}

/* Image Card */
.image-card img {
    width: 100%; /* Ensure the image spans the container */
    max-width: 400px; /* Optional: Set a max width for smaller images */
    height: auto;
    justify-content: flex-start;
    margin-top: 10px; /* Reduced margin-top from 40px to 20px */
    border-radius: 10px;
    object-fit: contain; /* Preserve aspect ratio */
    margin-bottom: 15px; /* Add some space below the image */
}

/* Content Card */
.content-card {
    object-fit: contain;
    display: flex;

    margin-top: 10px; /* Reduced margin-top from 40px to 20px */
    flex-direction: column; /* Ensure content is stacked vertically */
    align-items: center; /* Center content horizontally */
    justify-content: flex-start; /* Align items from the top */
    gap: 20px; /* Add space between elements */
    max-width: 1200px; /* Maximum width */
    width: 90%; /* Make the card width responsive */
    margin: auto; /* Center the card */
    padding: 20px; /* Padding around the content */
    flex-grow: 1; /* Ensure the content area expands to take available space */
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Add some shadow for visual appeal */
    color: white; /* Set text color to white */
    min-height: 300px; /* Set a minimum height to ensure it looks balanced */
}

/* Heading style */
.content-card h2 {
    margin: 0 0 10px;
    font-size: 1.5rem; /* Adjust font size */
    text-align: center; /* Center the headings */
}

/* Paragraph style */
.content-card p {
    background: rgba(255, 255, 255, 0.1); /* Background for the paragraph */
    padding: 10px; /* Padding around text */
    font-size: 1rem; /* Adjust font size */
    line-height: 1.5; /* Add line spacing for readability */
}

/* Button style */
.content-card button {
    padding: 10px 20px;
    border: none;
    background: #333;
    color: #fff;
    height: auto;
    border-radius: 5px;
    cursor: pointer;
    width: auto; /* Let the button adjust to its content width */
    margin-top: 15px; /* Add some space above the button */
}

/* Hover effect for button */
.content-card button:hover {
    background: #555;
}

/* Slide */
.slide {
    display: flex;
    align-items: center;
    justify-content: center; /* Center the content */
    min-width: 100%;
    box-sizing: border-box;
    padding: 10px;
}

.slide img {
    width: 80%; /* Increase image width */
    height: auto;
    max-height: 70vh; /* Restrict the height to prevent overflow */
    border-radius: 10px;
    object-fit: contain; /* Maintain aspect ratio */
    margin-right: 20px;
}

.slide-content {
    text-align: left;
    max-width: 40%;
}

.slide-content h2 {
    margin: 0 0 10px;
    font-size: 2rem;
    color: white;
}

.slide-content p {
    font-size: 1.2rem;
    color: white;
}

/* Media Query for Small Screens (max-width: 768px) */
@media (max-width: 768px) {

    /* Card Container */
    .card-container {
        flex-direction: column; /* Stack image and content vertically */
        padding: 10px; /* Adjust padding for small screens */
        gap: 15px; /* Add gap between items */
        min-height: auto; /* Remove min-height for smaller screens */
    }

    /* Image Card */
    .image-card img {
        width: 100%; /* Make image responsive */
        height: auto;
        margin-top: 10px; /* Adjust top margin */
        max-width: 100%; /* Ensure the image fills the container */
        object-fit: contain;
        margin-bottom: 10px; /* Reduce bottom margin */
    }

    /* Content Card */
    .content-card {
        width: 100%; /* Make content card full width */
        padding: 10px; /* Reduce padding for better fit */
        background: rgba(255, 255, 255, 0.2); /* Adjust background opacity */
        box-shadow: none; /* Remove box shadow */
        min-height: auto; /* Remove minimum height for better fit */
        color: white;
    }

    .content-card h2 {
        font-size: 1.2rem; /* Adjust font size for smaller screens */
        text-align: center;
    }

    .content-card p {
        font-size: 0.9rem; /* Adjust font size for smaller screens */
        line-height: 1.4;
    }

    /* Button style */
    .content-card button {
        width: 100%; /* Make the button full width */
        padding: 12px;
        font-size: 1rem; /* Adjust font size for better fit */
    }

    /* Hover effect for button */
    .content-card button:hover {
        background: #444; /* Change hover background color */
    }

    /* Slide */
    .slide {
        flex-direction: column; /* Stack image and text vertically */
        padding: 10px; /* Reduce padding */
    }

    .slide img {
        width: 100%; /* Make image fully responsive */
        height: auto;
        max-height: 50vh; /* Adjust max height for small screens */
        margin-bottom: 15px; /* Add margin below the image */
    }

    .slide-content {
        text-align: center; /* Center-align text on small screens */
        max-width: 100%; /* Use full width */
    }

    .slide-content h2 {
        font-size: 1.6rem; /* Adjust heading font size */
    }

    .slide-content p {
        font-size: 1rem; /* Adjust paragraph font size */
    }
}
.learn-more {
    background-color:black; /* Bright blue color for visibility */
    color: white; /* Text color */
    border: none; /* Remove default border */
    border-radius: 5px; /* Slightly rounded corners */
    margin-top: 5px; /* Padding for a button-like appearance */
    font-size: 1rem; /* Default font size */
    font-weight: bold; /* Make text bold */
    text-transform: uppercase; /* Capitalize text */
    margin-bottom: 10px;
    cursor: pointer; /* Pointer cursor for interactivity */
    transition: all 0.3s ease-in-out; /* Smooth hover effect */
}

.learn-more:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.05); /* Slight zoom effect */
}

.learn-more:active {
    transform: scale(1); /* Reset zoom on click */
}

@media (max-width: 768px) {
    .learn-more {
        width: 80%; /* Make button full-width on small screens */
        font-size: 0.9rem; /* Slightly smaller text */
        padding: 15px; /* Adjust padding for touch screens */
        margin-bottom: 10px;
    }
}

/* Our Champions Section */
#champions {
    padding: 50px 20px;
    background-color: #f9f9f9; /* Light gray background */
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #333; /* Dark text color */
    margin-bottom: 30px;
    text-transform: uppercase;
}

.champion-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; /* Space between cards */
}

.champion-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 300px; /* Fixed card width */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.champion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.champion-card img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 15px;
}

.champion-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #007BFF; /* Bright blue */
}

.champion-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .champion-container {
        flex-direction: column; /* Stack cards vertically on smaller screens */
    }

    .champion-card {
        width: 90%; /* Full width on smaller screens */
    }
}


/* About Us Section */
/* About Us Section */
#about {
    background-color: #000033; 
    
    padding: 20px;
    text-align: center;
    height: 80vh; /* Set the height to 80% of the viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#about h3 {
    font-size: 3em;
    margin-bottom: 20px;
    margin-top: 15px;
    font-weight: bold;
    color:#FFA500 ;
    text-transform: uppercase;
}

#about p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    color: white;
    line-height: 1.6;
    opacity: 0.85;
}

/* Mission and Vision Section Styling */
#mission, #vision {
    padding: 60px 20px;
    text-align: center;
    background-color: #f0f0f0;
    color: #333;
}

#mission h2, #vision h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #000033; /* Dark Blue accent */
}

#mission p, #vision p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: #555;
}

/* Team Section Styling */
#team {
    padding: 60px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

#team h2 {
    font-size: 2.8em;
    margin-bottom: 40px;
    color: #333;
}

.team-container {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next row */
    justify-content: center; /* Center items in the row */
    gap: 20px; /* Add spacing between items */
}

.team-member {
    flex: 0 1 calc(33.333% - 20px); /* Three members per row, accounting for spacing */
    background-color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease; /* Add hover effect */
}

.team-member:hover {
    transform: translateY(-5px); /* Subtle lift on hover */
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #003366;
}

.team-member p {
    font-size: 1.1em;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .team-member {
        flex: 0 1 calc(50% - 20px); /* Two members per row on medium screens */
    }
}

@media (max-width: 768px) {
    .team-member {
        flex: 0 1 100%; /* One member per row on smaller screens */
    }
}


/* Responsive design adjustments */
@media (max-width: 768px) {
    #about h2 {
        font-size: 2.2em;
    }

    #about p {
        font-size: 1em;
    }

    #mission h2, #vision h2 {
        font-size: 2.2em;
    }

    #mission p, #vision p {
        font-size: 1em;
    }

    .team-member {
        width: 90%;
        margin: 20px auto;
    }

    .team-member img {
        width: 120px;
        height: 120px;
    }
}
/* OUR SERVICES */

.services-section {
    background-color: whitesmoke;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 60, 0.8) 0%, rgba(0, 0, 51, 0.9) 100%);
    z-index: 0;
}

.services-header {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
    z-index: 1;
}

.section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.highlight {
    color: #FFA500;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: #FFA500;
    border-radius: 10px;
}

.section-subtitle {
    color: #a0a0c0;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 25px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
}

.divider-line {
    width: 80px;
    height: 2px;
    background-color: rgba(255, 165, 0, 0.5);
}

.divider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #FFA500;
    margin: 0 8px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(145deg, #000044, #000028);
    border-radius: 15px;
    padding: 30px 25px;
    color: white;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 165, 0, 0.1), transparent);
    transition: all 0.6s ease;
    z-index: 1;
}

.service-card:hover::before {
    top: 100%;
    left: 100%;
}

.service-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon {
    font-size: 2.8rem;
    color: #FFA500;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: #FFD700;
}

.icon-glow {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.3) 0%, rgba(255, 165, 0, 0) 70%);
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover .icon-glow {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, rgba(255, 215, 0, 0) 70%);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 15px 0;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: #FFA500;
}

.service-card p {
    color: #a0a0c0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 60, 0.9), transparent);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.service-card:hover .card-overlay {
    bottom: 0;
    opacity: 1;
}

.learn-more {
    background-color: #FFA500;
    color: #000033;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.learn-more:hover {
    background-color: #FFD700;
    transform: scale(1.05);
}

.featured-card {
    background: linear-gradient(145deg, #000055, #000033);
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #FFA500;
    color: #000033;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.services-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.cta-button {
    background: linear-gradient(to right, #FFA500, #FF8C00);
    color: #000033;
    border: none;
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transform: rotate(30deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.cta-button:hover::after {
    left: 100%;
    opacity: 1;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow: auto;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(145deg, #000055, #000033);
    color: #000033;
    margin: 50px auto;
    width: 90%;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 165, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: modalFadeIn 0.5s;
}

@keyframes modalFadeIn {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    color: #a0a0c0;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.close-modal:hover {
    color: #FFA500;
    transform: rotate(90deg);
}

.modal-header {
    padding: 30px;
    /* background: linear-gradient(to right, rgba(0, 0, 70, 0.8), rgba(0, 0, 40, 0.8)); */
    display: flex;
   
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header #modalIcon {
    font-size: 3rem;
    margin-right: 20px;
}

.modal-header h2 {
    font-size: 2rem;
    margin: 0;
    color: white;
}

.modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-footer {
    padding: 20px 30px;
    text-align: right;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-cta {
    background: linear-gradient(to right, #FFA500, #FF8C00);
    color: #000033;
    border: none;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 15px;
    }
    
    .services-container {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 30px auto;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 50px 10px;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .modal-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .modal-header #modalIcon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .modal-body, .modal-footer {
        padding: 20px;
    }
}
/* EXPLAING THE SERVICES */

#intro-services {
    background-color: #000033; /* Dark blue background color */
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center center; /* Centers the image */
    background-attachment: fixed; /* Keeps the image fixed as the user scrolls */
    color: white;
    padding: 60px 20px; 
    height: 80vh; /* Set the height to 80% of the viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: start; /* Align text to the left */
    padding-left: 40px; /* Adds padding to the left for text */
    width: 100%; /* Ensures the section spans the full width */

}

#intro-services h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #FFA500; /* Highlighted orange for headings */
}

#intro-services p {
    font-size: 1.1rem;
    color: #E0E0E0; /* Light gray for better readability */
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}


/* About Industries Section */
#about-industries {
    background-color: #000033;
    background-image: linear-gradient(rgba(0, 0, 51, 0.8), rgba(0, 0, 51, 0.9)), url('https://source.unsplash.com/random/1600x900/?technology');
    background-size: cover;
    
    background-position: center center;
    background-attachment: fixed;
    color: white;
    padding: 120px 40px;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

#about-industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 51, 0.6), transparent);
    z-index: 1;
}

#about-industries .content {
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

#about-industries h2 {
    color: #FFA500;
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#about-industries h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #FFA500, #FF6347);
    border-radius: 10px;
}

#about-industries p {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 30px;
    max-width: 900px;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Industries Served Section */
#industries-served {
    padding: 120px 40px;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    position: relative;
}

#industries-served::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f0f0f0' fill-opacity='0.5' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

#industries-served .section-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

#industries-served h2 {
    text-align: center;
    color: #000033;
    font-size: 3rem;
    margin-bottom: 70px;
    position: relative;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#industries-served h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #000033, #0066cc);
    border-radius: 10px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
    color: #555;
}
.card-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responsive grid adjustments */
@media (min-width: 600px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .card-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .card-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.industry-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    height: 320px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(240, 240, 240, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.industry-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.industry-card::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFA500, #FF6347);
    opacity: 0.2;
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.industry-card:hover::before {
    width: 400%;
    height: 400%;
}

.card-icon {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 51, 0.05);
    border-radius: 50%;
    padding: 20px;
    transition: all 0.4s ease;
}

.industry-card:hover .card-icon {
    background-color: rgba(255, 165, 0, 0.1);
    transform: scale(1.1);
}

.card-icon i {
    color: #000033;
    transition: all 0.4s ease;
}

.industry-card:hover .card-icon i {
    color: #FFA500;
    transform: scale(1, 1) rotate(5deg);
}

.industry-card h3 {
    color: #000033;
    font-size: 1.6rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    font-weight: 600;
    transition: all 0.3s ease;
}

.industry-card:hover h3 {
    color: #0066cc;
}

.industry-card p {
    color: #666;
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Count section */
.count-section {
    background: linear-gradient(135deg, #000033, #00004d);
    padding: 80px 20px;
    color: white;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.count-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.count-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.count-item {
    text-align: center;
    padding: 20px;
    width: 220px;
    margin: 15px;
}

.count-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFA500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.count-label {
    font-size: 1.2rem;
    color: #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Call to action */
.cta-section {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://source.unsplash.com/random/1600x900/?business');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    color: #000033;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.cta-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #FFA500, #FF6347);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .card-container {
        gap: 20px;
    }
    
    .industry-card {
        width: 280px;
    }
}

@media (max-width: 768px) {
    #about-industries {
        padding: 80px 20px;
        text-align: center;
    }

    #about-industries h2 {
        font-size: 2.8rem;
    }

    #about-industries h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    #industries-served h2 {
        font-size: 2.5rem;
    }

    .card-container {
        flex-direction: column;
        align-items: center;
    }

    .industry-card {
        width: 100%;
        max-width: 350px;
        height: auto;
        min-height: 300px;
    }

    .count-item {
        width: 45%;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    #about-industries h2 {
        font-size: 2.3rem;
    }

    #about-industries p {
        font-size: 1.1rem;
    }

    .count-item {
        width: 100%;
    }

    .count-number {
        font-size: 3rem;
    }
}


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

.dropdown-content li {
    float: none;
}

.dropdown-content li a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content li a:hover {
    background-color: #ddd;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Dropdown styles in sidebar */
.sidebar .dropdown {
    position: relative;
}

.sidebar .dropdown-content {
    display: none;
    flex-direction: column;
    background-color: #444;
    padding-left: 20px; /* Indent sub-menu */
}

.sidebar .dropdown-content a {
    color: white;
    padding: 10px;
    text-decoration: none;
}

.sidebar .dropdown-content a:hover {
    background-color: #575757;
}

.sidebar .dropdown.active .dropdown-content {
    display: flex; /* Show the dropdown content */
}
/* HISTORY */
 /* History Timeline Section */
 #history {
    display: flex;
    flex-direction: column;
    padding: 80px 5%;
    background-color: #f4f4f4;
    position: relative;
}

#history:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #003366, #003366, transparent);
}

.history-item {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    justify-content: space-between;
    position: relative;
}

.history-content {
    width: 45%;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.history-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.history-content h2 {
    color: #003366;
    margin-bottom: 20px;
    font-size: 28px;
    position: relative;
    padding-bottom: 10px;
}

.history-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #4dabf7;
}

.history-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.btn-register {
    display: inline-block;
    padding: 12px 24px;
    background-color: #003366;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #003366;
}

.btn-register:hover {
    background-color: transparent;
    color: #003366;
}
/* History About Section */
#history-about {
    background-color: #000033;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(0, 0, 51, 0.8), rgba(0, 0, 51, 0.8)), url('background.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-bottom: 50px;
    position: relative;
}

#history-about:after {
    content: 'OUR JOURNEY THROUGH TIME';
    position: absolute;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    padding: 0 20px;
}


.history-image {
    width: 45%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #000033, #003366);
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.history-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.history-image:after {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.year {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #003366;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding: 15px 25px;
    border-radius: 50px;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.connector {
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: #003366;
    top: 50%;
    z-index: 1;
}

.history-item:nth-child(odd) .connector {
    right: 45%;
    transform: translateY(-50%);
}

.history-item:nth-child(even) .connector {
    left: 45%;
    transform: translateY(-50%);
}

/* Footer Styles */
footer {
    background-color: #000033;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }

  .footer-column {
    flex: 1 1 200px;
  }

  .footer-column h3 {
    border-bottom: 1px solid #555;
    padding-bottom: 8px;
    margin-bottom: 15px;
    font-size: 18px;
  }

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

  .footer-column ul li {
    margin-bottom: 10px;
  }

  .footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-column ul li a:hover {
    color: #00bcd4;
  }

  .social-icons a {
    color: #ccc;
    margin-right: 15px;
    font-size: 30px;
    transition: color 0.3s;
  }

  .social-icons a:hover {
    color: #00bcd4;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    border-top: 1px solid #444;
    padding-top: 15px;
  }

  .up-button {
    float: right;
    text-decoration: none;
    color: #00bcd4;
    font-size: 18px;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .up-button {
      float: none;
      display: inline-block;
      margin-top: 10px;
    }
  }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    #history:before {
        left: 30px;
    }

    .history-item {
        flex-direction: column;
        margin-left: 30px;
        margin-bottom: 70px;
    }

    .history-content, .history-image {
        width: 100%;
        max-width: 600px;
        margin-bottom: 30px;
    }

    .year {
        left: 30px;
        transform: translateY(-50%);
    }

    .connector {
        width: 30px;
        left: 30px;
    }

    #history-about:after {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    #history-about {
        height: 60vh;
    }

    #history-about:after {
        font-size: 2rem;
    }

    .history-content h2 {
        font-size: 24px;
    }

    .history-image {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .history-content {
        padding: 20px;
    }

    .history-image {
        height: 220px;
    }

    #history-about:after {
        font-size: 1.5rem;
    }

    .year {
        font-size: 18px;
        padding: 10px 18px;
    }
}




 /* Style the dropdown menu */
.dropdown {
    position: relative;
}





/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Style the arrow */
.dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    text-decoration: none;
   
}

.dropdown > a .fas {
    font-size: 0.8em;
    transition: transform 0.3s;
}

/* Rotate the arrow when hovering over dropdown */
.dropdown:hover > a .fas {
    transform: rotate(180deg);
}

/* for elearning */
.btn-register {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000033;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .btn-register:hover {
    background-color: #333366;
  }
  
/* VIDEO FROM YOUTUBE */
/* .container {
    max-width: 100%;
    padding: 16px;
  }
  
  h1 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #030303;
  }
  
  .video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000;
  }
  
  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    /* height: 0;
  } */
  
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .youtube-link {
    display: inline-block;
    margin-top: 16px;
    text-decoration: none;
    color: #065fd4;
    font-size: 14px;
  }
  
  .youtube-link:hover {
    text-decoration: underline;
  }
  
  .youtube-link-container {
    display: flex;
    align-items: center;
  }
  
  .youtube-icon {
    margin-right: 6px;
    color: #ff0000;
  }
  
  /* Media query for larger screens */
  @media screen and (min-width: 768px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 24px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .video-container {
        max-width: 100%;
        border-radius: 0;
    }
  } 
   /* CCTV */
   :root {
    --primary-color: #000033;
    --secondary-color: #003366;
    --accent-color: #ffa500;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-light: #f8f9fa;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
    --transition-normal: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.section-title p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

/* CCTV Banner */
.cctv-banner {
    background: var(--primary-color);
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cctv-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/api/placeholder/1920/1080') center/cover no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.cctv-banner .overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 51, 0.7);
    padding: 3rem;
    color: white;
    text-align: center;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    animation: fadeIn 1s ease-in;
}

.cctv-banner .overlay h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cctv-banner .overlay p {
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* CCTV Content */
.cctv-content {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8f8f8 0%, #e8eaed 100%);
}

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

.cctv-content h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.cctv-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.cctv-content > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #555;
}

.cctv-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-box {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    width: 320px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border-bottom: 4px solid transparent;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom: 4px solid var(--accent-color);
}

.service-box i {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-color);
    background: rgba(0, 0, 51, 0.05);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    transition: var(--transition-normal);
}

.service-box:hover i {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-box p {
    color: #666;
    font-size: 1rem;
}

/* Enhanced Testimonials Section */
.testimonials {
    background-color: #f3f4f6;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 200px;
    color: rgba(0, 0, 51, 0.03);
    z-index: 1;
}

.testimonials::after {
    content: '\f10e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 50px;
    right: 50px;
    font-size: 200px;
    color: rgba(0, 0, 51, 0.03);
    z-index: 1;
}

.testimonials-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    flex: 0 0 100%;
    padding: 50px;
    background-color: white;
    position: relative;
    margin: 0;
}

.testimonial::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 30px;
    color: rgba(0, 0, 51, 0.1);
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.client-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    position: relative;
}

.client-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.testimonial:hover .client-img img {
    transform: scale(1.1);
}

.client-details {
    flex-grow: 1;
}

.client-details h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.client-details p {
    color: #6b7280;
    font-size: 1rem;
    font-style: italic;
}

.rating {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 24px;
    letter-spacing: 2px;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    position: relative;
    padding: 0 20px;
}

.dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(0, 0, 51, 0.2);
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: rgba(0, 0, 51, 0.4);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.dot.active::after {
    border-color: var(--primary-color);
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    transform: translateY(-50%);
    padding: 0 20px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: none;
    font-size: 1.2rem;
}

.nav-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta p {
    margin-bottom: 40px;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition-normal);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background-color: #ff8c00;
}

.btn:hover::before {
    left: 100%;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
    .cctv-banner .overlay h1 {
        font-size: 2.5rem;
    }

    .service-box {
        width: calc(50% - 30px);
    }

    .testimonial {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .cctv-banner {
        height: 60vh;
    }

    .cctv-banner .overlay {
        padding: 2rem;
    }

    .cctv-banner .overlay h1 {
        font-size: 2rem;
    }

    .section-title h2, .cctv-content h2, .cta h2 {
        font-size: 2rem;
    }

    .service-box {
        width: 100%;
    }

    .testimonial {
        padding: 25px;
    }

    .client-img {
        width: 60px;
        height: 60px;
    }

    .client-details h4 {
        font-size: 1.2rem;
    }

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

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}