/* style.css */


/* Basic Styling */

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    /* min-width: 1024px; */
}

 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} 
.highlight-link {
    color: #ffcc00; /* Same color as the highlighted text */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.highlight-link:hover {
    color: #fff; /* Change color on hover for a nice effect */
}


/* Fade-in and move-up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* General Header styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(199, 190, 190, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem;
}

/* Nav container */
header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo styles */
.logo img {
    height: 50px;
}

/* Main navigation list */
header ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header ul li {
    display: inline-block;
}

/* Navigation links */
header ul li a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s ease;
}

header ul li a:hover {
    background-color: #444;
    color: white;
    border-radius: 5px;
}

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

header .dropdown:hover .dropdown-content {
    display: block;
}

header .dropdown-content li a {
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
}

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

/* Hamburger Menu for Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Responsive header */
@media (max-width: 768px) {
    /* Flex adjustments for mobile */
    header nav {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

   /*  /* Hide the main menu initially 
    header ul {
        display: none; /* Initially hide the menu 
        flex-direction: column;
        gap: 10px;
        width: 100%;
        position: absolute;
        top: 60px; /* Adjust this value based on your header height 
        right: 0;
        background-color: #fff;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        z-index: 999; /* Make sure it is above other elements 
    }
 */
    /* Show when menu toggle is active */
    header ul.active {
        display: flex; /* Show menu when active */
    }

    header ul li {
        display: block;
        text-align: left;
        margin: 10px 0;
    }

    /* Hamburger menu becomes visible */
    .menu-toggle {
        display: flex;
    }

    /* Mobile dropdown content */
    .dropdown-content {
        position: absolute; /* Position it relative to the dropdown */
        background-color: #f1f1f1;
        box-shadow: none;
        min-width: 160px; /* Ensure it has a minimum width */
        z-index: 1000; /* Make sure it's above other content */
    }

    /* Show dropdown when active */
    .dropdown.active .dropdown-content {
        display: block; /* Show the dropdown when it's active */
    }
}

/* Hero section styles */
.hero {
    background-image: url('../images/b1.jpeg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}

/* Section styles */
section {
    padding: 4rem 0;
}

section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

/* About section styles */
.about p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Divisions section styles */
.division-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.division-card {
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.division-card:hover {
    transform: translateY(-10px);
}

.division-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.division-card h3 {
    margin-bottom: 1rem;
}

/* Clients section styles */
.clients {
    padding: 2rem 0;
    background-color: #f9f9f9;
}

.client-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.client {
    width: 200px;
    margin: 1rem;
    text-align: center;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    transition: transform 0.3s;
}

.client:hover {
    transform: scale(1.05);
}

.client img {
    width: 100%;
    border-radius: 8px;
}

.feedback {
    font-style: italic;
    color: #555;
}

.department {
    font-weight: bold;
    margin-top: 0.5rem;
    color: #333;
}

.rating {
    color: #FFD700; /* Gold color for rating stars */
}

/* Flash effect for images */
.flash-effect {
    animation: flash 1s infinite alternate;
}

@keyframes flash {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.7;
    }
}


/* Contact section styles */
.contact {
    background-color: #f8f8f8;
    text-align: center;
}



/* Contact Page Styles */
.contact-content {
    padding: 2rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info, .contact-form {
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
}

.contact-info h2, .contact-form h2 {
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #007bff;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group textarea {
    height: 150px;
}

/* Division pages styles */
.division-hero {
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 4rem 0;
}

.division-hero h1 {
    font-size: 3rem;
}

.division-content {
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.service-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
}

/* Events and Blogs pages styles */
.events-grid, .blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card, .blog-card {
    background-color: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
}

.event-card img, .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-card h3, .blog-card h2 {
    padding: 1rem;
}

.event-card p, .blog-card p {
    padding: 0 1rem 1rem;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.pagination .btn {
    margin: 0 0.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }
/*
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 0;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 1rem;
    }
*/
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

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

.slide-in {
    animation: slideIn 0.5s ease-out;
}

/* new css*/



.career-hero {
    text-align: center;
    background-color: #002855;
    color: #fff;
    padding: 50px;
}

/* Employee Grid Styling */
.employee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Employee Card Styling */
.employee-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.employee-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.employee-info {
    padding: 20px;
}

.employee-info h3 {
    margin: 10px 0;
}

.employee-info p {
    color: #666;
    margin-bottom: 10px;
}

.employee-info .fab {
    color: #333;
    margin: 5px;
    transition: color 0.3s ease;
}

.employee-info .fab:hover {
    color: #007bff;
}

/* Card Animation */
.animated-card {
    position: relative;
    animation: fadeIn 1s ease-in-out;
}

.animated-card:hover {
    transform: translateY(-10px);
}

/* Keyframes */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Division Cards Grid */
.division-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-items: center;
    padding: 20px;
}

.division-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 180px; /* Reduced size */
    transition: transform 0.3s ease;
}

.division-card:hover {
    transform: translateY(-10px);
}

/* Animation for background images */
.animated-background {
    background-position: center;
    background-size: cover;
    animation: bgAnimation 10s infinite linear;
}

@keyframes bgAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
/* Hero Section with GIF Background */
.division-hero {
    background: url('../images/bg3.jpg') no-repeat center center;
    background-size: 100% 100%; /* Stretches to fit both width and height */
    /*background-size: 75% auto; /* Width is 50% of the container, height is auto */


    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* To position elements relative to this container */
    transition: opacity 0.5s ease-in-out;
}

.division-hero .hero-content {
    color: #fff;
    text-align: center;
}

.division-hero .hero-content h1 {
    font-size: 48px;
}

/* Ensure the content section below has a white background */
.division-content {
    background-color: #fff;
    padding: 50px 0;
}

/* JavaScript to hide/show the background GIF on scroll */

/* Hidden state (after scrolling down) */
.hidden-background {
    opacity: 0;
}
.logo {
    display: flex; /* Use flexbox to align items */
    align-items: center; /* Center items vertically */
}

.circular-logo {
    width: 50px; /* Set a specific width for the logo */
    height: 50px; /* Set a specific height for the logo */
    border-radius: 50%; /* Make the logo circular */
    margin-right: 20px; /* Space between the logo and title */
    object-fit: cover; /* Ensure the image covers the circular area */
    overflow: hidden; /* Hide any overflow */
}

.logo-text {
    display: flex; /* Use flexbox to arrange title and slogan */
    flex-direction: column; /* Stack title and slogan vertically */
}

.logo h1 {
    font-size: 24px; /* Adjust font size as needed */
    margin: 0; /* Remove default margin */
}

.slogan {
    font-size: 16px; /* Adjust font size for the slogan */
    margin-top: 5px; /* Space between the title and slogan */
    color: #555; /* Optional: adjust color */
    text-align: left; /* Align text to the left */
}


.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.program-card {
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.program-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
}
/* page for career page*/



.page-hero {
    background: linear-gradient(135deg, #007bff, #00bcd4);
    padding: 100px 100px;
    color: white;
    text-align: center;
    position: relative;
}

/* Additional styles to enhance the hero section */
.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-hero .cta-button {
    display: inline-block;
    background-color: white;
    color: #007bff;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-hero .cta-button:hover {
    background-color: #f0f0f0;
    color: #c5d7eb;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 20px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }
}

.highlight {
    color: #e224e9; /* Highlight color */
    font-weight: bold; /* Optional bold text */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Text shadow for better readability */
}

.highlight-text {
    color: #0a44e2; /* Highlight color for the "Join Us" text */
}
.animated-card {
    animation: fadeInUp 1s ease-in-out;
    transition: transform 0.3s;
}

.animated-card:hover {
    transform: scale(1.05);
}

.page-hero.hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
}

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


/* /* Footer styles */
/*





.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

 */

  /* Footer styles */
/* .footer-content {
    background: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 40px;
} */
.footer-content {
    background-image: url('../images/img_et1.jpeg'); /* Your background image */
    background-size: cover; /* Make the image cover the entire area */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    background-position: center; /* Center the image */
    height: 300px; /* Adjust the height as necessary */
    display: flex; /* Use flexbox for aligning content if needed */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    color: #fff; /* Text color */
    padding: 20px; /* Add some padding if needed */
}

.footer-section {
    flex: 1;
    padding: 0 20px;
}

.footer-section h3 {
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.social-icons a {
    margin-right: 10px;
    font-size: 1.5rem;
    color: #ddd;
    transition: color 0.3s ease;
}

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

.footer-content .social-icons a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-content .social-icons a:hover {
    color: #007bff;
}

/* YouTube subscribe styles */
.youtube-subscribe {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.youtube-icon {
    color: #fff;
    font-size: 24px;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.youtube-icon:hover {
    color: #ff0000;
}

.subscribe-button {
    background-color: #ff0000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.subscribe-button:hover {
    background-color: #cc0000;
}

.youtube-slogan {
    font-size: 14px;
    color: #ddd;
    margin-top: 5px;
}

/* Footer bottom styles */
.footer-bottom {
    background: #000;
    text-align: center;
    padding: 20px;
    color: #ddd;
}

/* Responsive design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .social-icons {
        justify-content: center;
        margin-top: 10px;
    }

    .youtube-subscribe {
        justify-content: center;
    }

    .youtube-slogan {
        text-align: center;
    }
}

.btn-whatsapp2 {
    background-color: #033d19;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.btn-whatsapp2:hover {
    background-color: #46d434;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.form-group textarea {
    height: 150px;
}

/* Gallery section styles */
.gallery {
    padding: 50px 0;
    background-color: #f9f9f9; /* Light background color */
}

.gallery-container {
    overflow: hidden; /* Hide overflow for scrolling effect */
    position: relative; /* Position for absolute child elements */
    width: 100%; /* Full width */
}

.gallery-images {
    display: flex;
    transition: transform 0.5s ease; /* Smooth transition */
    will-change: transform; /* Optimize performance */
}

.gallery-images img {
    min-width: 200px; /* Minimum width of each image */
    margin-right: 1rem; /* Space between images */
    border-radius: 10px; /* Rounded corners */
}


.section1 {
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.button-download {
    padding: 12px 24px;
    font-size: 16px;
    color: #ffffff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button-download:hover {
    background-color: #0056b3;
}

.button-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;    /* Centers vertically */
    height: 10vh;          /* Full viewport height */
}
