
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
}

        .nav {
            position: fixed;
            top: 20px;
            left: 20px;
        }
        
        .nav a {
            display: block;
            margin: 10px 0;
        }

/* Pop-up Enquiry Form Styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.popup-content h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #026874;
}

.popup-content form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.popup-content form input,
.popup-content form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.popup-content form button {
    width: 100%;
    padding: 10px;
    background-color: #026874;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.popup-content form button:hover {
    background-color: #024954;
}

.popup-content form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    font-size: 16px;
}


.wa-container {
    position: fixed;
    bottom: 20px;
    right: -20px;
    z-index: 101;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.wa-container:hover {
    right: 20px;
}

.wa-expand {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    margin-left: 10px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    order: 0;
}

.wa-button {
    background-color: green;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    order: 1;
}

.wa-button:hover {
    background-color: #25D366;
}

.wa-button i {
    font-size: 30px;
    color: white;
    transition: transform 0.3s ease-in-out;
}

.wa-button:hover i {
    transform: scale(1.2);
}

.wa-container:hover .wa-expand {
    display: flex;
}



/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
    background-color: #026874;
}

.top-bar .button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: auto;
    padding: 0 15px;
    background-color: #ffff;
    color: rgb(10, 7, 7);
    cursor: pointer;
    font-size: 15px;
    border-radius: 10px;
    border: none;
    transition: all 0.3s ease-in-out;
}

.top-bar .button a {
    color: #000000;
    text-decoration: none;
}

.top-bar .button:hover {
    transform: scale(1.1);
    background: linear-gradient(to right, #2ebf91, #8360c3);
}

.top-bar ul {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.top-bar li a {
    color: rgb(2, 1, 1);
    font-size: 18px;
    transition: color 0.8s;
    text-decoration: none;
}

.top-bar li a:hover {
    color: #8360c3;
}

/* Navigation Bar */
.header {
    height: auto;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* Ensure wrapping for small screens */
    padding: 10px 25px;
}

.header h1, .header h3 {
    text-align: center;
    font-size: 18px;
}

/* Apply Button Design */
.btn-1 {
    text-decoration: none;
    padding: 10px 20px;
    font-size: 11px;
    background: #026874;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-left: 48px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-1:hover {
    text-decoration: underline;
    background: linear-gradient(135deg, #feb47b, #ff7e5f);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Responsive Button Margin */
@media screen and (max-width: 480px) {
    .btn-1 {
        margin: 20px auto;
        display: block;
        text-align: center;
    }
}

/* Logo Section */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.logo img {
    height: auto;
    max-width: 100%;
}

.logo a {
    font-size: 18px;
    color: #0F2027;
    font-family: "Imprint MT Shadow", serif;
    line-height: 1.3;
}

.logo_head h1 {
    font-size: 43px;
}

/* Font Size Variables */
:root {
    --font-size-small: clamp(14px, 3vw, 16px);
    --font-size-medium: clamp(16px, 4vw, 20px);
    --font-size-large: clamp(24px, 5vw, 36px);
}

body {
    font-size: var(--font-size-small);
}

.logo a {
    font-size: var(--font-size-medium);
}

.logo_head h1 {
    font-size: var(--font-size-large);
}

/* Responsive Design Adjustments */
@media screen and (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo {
        flex-direction: column;
        align-items: center;
    }

    .logo a {
        font-size: 20px;
    }

    .logo_head h1 {
        font-size: 36px;
    }
}

@media screen and (max-width: 480px) {
    .logo a {
        font-size: 18px;
    }

    .logo_head h1 {
        font-size: 30px;
    }

    .logo img {
        width: 100px;
    }
}

/* Toggle Button for Mobile */
.toggle {
    display: none;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .branches {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: center;
    }

    .branches li {
        width: 100%;
        max-width: 300px;
    }
}




/* Navigation Menu */
.menu-container-2 {
    background: #026874;
    color: white;
    width: 100%;
    height: 60px;
}

.menu-header-3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.menu-4 {
    list-style: none;
    display: flex;
    margin-top: -28px;
    justify-content: flex-end;
    transition: max-height 0.3s ease-in-out;
}

.menu-4.active {
    display: block;
    flex-direction: column;
}

.menu-4 li {
    position: relative;
}

.menu-4 li a {
    text-decoration: none;
    color: yellow;
    padding: 15px 20px;
    display: block;
    transition: background 0.8s;
    padding-bottom: 20px;
    font-size: 16px; /* Default font size */
}

.menu-4 li a:hover {
    background: #aec4da0c;
}

.dropdown-5 > a::after {
    content: " ▼";
    font-size: 12px;
}

.submenu-6 {
    list-style: none;
    position: absolute;
    right: 0;
    top: 90%;
    background: #026874;
    display: none;
    flex-direction: column;
    padding: 10px 0;
    z-index: 10;
    border-radius: 10px;
}

.submenu-6.open {
    display: flex;
}

.submenu-6 li a {
    padding: 10px 20px;
    white-space: nowrap;
    font-size: 15px;
    color: #ffff;
}

.submenu-6 li a:hover {
    background-color: #2c3e50;
    color: white;
    border-radius: 10px;
}

.menu-4 li:hover > .submenu-6 {
    display: flex;
}

/* Responsive Styling for Small Devices */
@media (max-width: 1024px) {
    
    .logo a {
    font-size: 20px; 
    }
    
    .logo_head h1 {
        font-size: 30px;
    }
    
    .logo img {
        width: 170px;
    }
    
    .menu-4 li a {
        padding: 17px 4px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .menu-container-2 {
        position: relative;
        z-index: 10;
    }

    .menu-header-3 {
        flex-direction: row;
        align-items: center;
    }

    .menu-toggle {
        display: block;
        font-size: 28px;
        cursor: pointer;
        background: #008080;
        padding: 8px 10px;
        border-radius: 5px;
        border: 2px solid white;
        margin-top: 32px;
        position: absolute;
        transition: background 0.3s ease, transform 0.3s ease;
    }

    .menu-toggle:hover {
        background: #00a89c;
        transform: rotate(90deg);
    }

    .menu-4 {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        text-align: center;
        width: 100%;
        background: #2c3e50;
        z-index: 20;
        transition: all 0.3s ease;
        border-radius: 10px 10px 0 0;
    }

    .menu-4.active {
        display: flex;
    }

    .menu-4 li a {
        padding: 10px 15px;
        font-size: 12px;
    }

    .submenu-6 {
        position: static;
        display: none;
        background: #444;
        border-radius: 5px;
        margin-top: 5px;
    }

    .submenu-6.open {
        display: flex;
    }

    .submenu-6 li a {
        font-size: 12px; /* Further reduced font size for submenus */
        padding: 8px 15px;
    }
}

/* carousel */
.slider-container {
  width: 100%;
  height: 88vh; /* Use full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 1.5s ease-in-out; /* Slower transition for smoother movement */
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-controls {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10; /* Ensure controls are above the slides */
}

#next-btn,
#prev-btn {
  cursor: pointer;
  background: transparent;
  font-size: 30px;
  border: none;
  padding: 10px;
  color: white;
}

#next-btn:focus,
#prev-btn:focus {
  outline: none;
}


/* Container for Buttons */
.button-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  gap: 10px;
  background-color: #636969;
}

.button-container a {
  color: white;
  text-decoration: none;
}

/* Button Styles */
.custom-button {
  width: 100%;
  max-width: 600px;
  background-color: #007075;
  color: white;
  font-size: 18px;
  padding: 15px;
  border: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.custom-button:hover {
  background-color: #e70000;
}

.custom-button:active {
  background-color: #026974;
}

/* Responsive Design for Smaller Screens */
/* Mobile Responsiveness */
@media (max-width: 768px) {
  .container {
      height: 60vh; /* Reduce slider height for smaller screens */
  }

  #next-btn,
  #prev-btn {
      font-size: 20px; /* Smaller buttons */
      padding: 5px;
  }
}

@media (max-width: 480px) {
  .container {
      height: 50vh;
      border: 2px solid red;
      margin-top: -9px;
      width: 100%;
      box-sizing: border-box;
  }

  #next-btn,
  #prev-btn {
      font-size: 16px; /* Adjust button size */
      padding: 5px;
  }
}
/* Responsive Styling for Smaller Screens */
@media (max-width: 480px) {
  .custom-button {
      font-size: 16px;
      padding: 12px;
  }
}

/* Welcome Section Styles */
.welcome-section {
display: flex;
align-items: center;
justify-content: center;
background: #008080;
color: #ffffff;
padding: 80px 20px;
overflow: hidden;
margin-bottom:20px;
}

.wel-container {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
max-width: 1200px;
margin: 0 auto;
}

.text-content {
flex: 1;
min-width: 300px;
margin-right: 20px;
}

.main-welcome-heading {
font-size: 3rem;
font-weight: 700;
margin-bottom: 20px;
line-height: 1.2;
color: #ffffff;
text-transform: uppercase;
background: linear-gradient(to right, #ff8a00, #ff0000);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.main-welcome-heading span {
display: block;
color: #ffffff;
}

.welcome-description {
font-size: 1.2rem;
margin-bottom: 30px;
color: #f0f0f0;
line-height: 1.8;
}

.cta-button {
display: inline-block;
padding: 12px 25px;
font-size: 1rem;
color: #ffffff;
background: linear-gradient(90deg, #ff7e5f, #feb47b);
text-decoration: none;
border-radius: 30px;
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease-in-out;
}

.cta-button:hover {
transform: translateY(-5px);
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.video-container {
flex: 1;
min-width: 300px;
text-align: center;
position: relative;
overflow: hidden;
border-radius: 20px;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.welcome-video {
width: 100%;
max-width: 500px;
border-radius: 20px;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
object-fit: cover;
transition: transform 0.3s ease-in-out;
}

.welcome-video:hover {
transform: scale(1.05);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
.container {
flex-direction: column;
text-align: center;
}

.text-content {
margin-bottom: 30px;
}

.main-welcome-heading {
font-size: 2.5rem;
}

.welcome-description {
font-size: 1.1rem;
}

.welcome-video {
max-width: 100%;
}
}

@media (max-width: 576px) {
.main-welcome-heading {
font-size: 2rem;
}

.welcome-description {
font-size: 1rem;
}

.cta-button {
font-size: 0.9rem;
padding: 10px 20px;
}
}

/* Responsive Design */
@media (max-width: 768px) {
.main-welcome-heading {
font-size: 2rem;
}

.welcome-description {
font-size: 1rem;
}

.welcome-image {
max-width: 100%;
}
}

@media (max-width: 480px) {
.welcome-section {
padding: 40px 10px;
}

.main-welcome-heading {
font-size: 1.8rem;
}

.welcome-description {
font-size: 0.95rem;
}
}



/*======================== Notice Section  1st ================================== */
    .notice-bar {
        display: flex;
        align-items: center;
        background-color: #1f3235;
        padding: 10px;
        position: relative;
        overflow: hidden;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        text-transform: uppercase;
    }
    
    .notice-text {
        display: flex;
        align-items: center;
        margin-right: 15px;
        z-index: 2;
        background-color: #1f3235;
        padding: 0 10px;
        
    }
    
    .notice-text i {
        font-size: 20px;
        color: yellow;
        margin-right: 8px;
    }
    
    .notice-text span {
        font-weight: bold;
        color: #fff;
    }
    
    .scrolling-wrapper {
        flex-grow: 1;
        position: relative;
        overflow: hidden;
        z-index: 1;
        display: flex;
        align-items: center;
        height: 100%;
    }
    
    .scrolling-text {
        display: inline-block;
        white-space: nowrap;
        animation: scroll-text 20s linear infinite;
    }
    
    .notice-item {
        display: inline-block;
        margin-right: 20px; /* Space between each notice */
    }
    
    /* Scrolling animation */
    @keyframes scroll-text {
        0% {
            transform: translateX(100%); 
        }
        100% {
            transform: translateX(-100%);
        }
    }
    
    /* Responsive Design */

 @media (max-width: 768px) {
    .notice-bar {
        flex-direction: column;
        align-items: flex-start;
        font-size: 14px; 
        padding: 8px;
    }

    .notice-text {
        margin-bottom: 10px;
        justify-content: flex-start;
    }

    .notice-text i {
        font-size: 18px; 
    }

    .scrolling-wrapper {
        flex-grow: 1;
        align-items: flex-start;
    }

    .notice-item {
        margin-right: 20px; 
    }
} 

 @media (max-width: 480px) {
    .notice-bar {
        font-size: 12px; 
    }

    .notice-text i {
        font-size: 16px; 
    }

    .notice-item {
        margin-right: 10px; 
    }
} 


 /*======================== Notice Section  2nd/3rd ================================== */

/* Notice Header Styling */
.Notice-headers {
text-align: center;
background: #008080;
padding: 20px;
color: #fff;
}

.Notice-headers h1 {
font-size: 2rem; /* Adjust for responsiveness */
font-weight: 600;
margin-bottom: 10px;
}

/* General Styling */
.notice_box {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: space-between;
margin-top: 50px;
}

.notice-area-section, .notice-container {
width: 48%; /* Default two-column layout */
min-height: 300px;
background-color: #f9f9f9;
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 15px;
transition: all 0.3s ease;
}

.notice-header h3, .heading-sect h3 {
font-size: 1.2em;
color: #4a00e0; /* Purple gradient text */
margin: 0 0 10px;
text-align: center;
font-weight: bold;
text-transform: uppercase;
position: relative;
}

.notice-header h3::after, .heading-sect h3::after {
content: '';
display: block;
width: 50px;
height: 3px;
background: linear-gradient(to right, #8e2de2, #4a00e0);
margin: 5px auto 0;
border-radius: 2px;
}

.notice-area, .notice-container {
overflow: hidden;
position: relative;
}

.latest-news-ul {
list-style: none;
padding: 0;
margin: 0;
}

.latest-news-ul li {
margin-bottom: 10px;
font-size: 0.9em;
padding: 5px 10px;
background-color: #f0f0f0;
border-radius: 4px;
transition: background-color 0.3s ease, transform 0.2s ease;
}

.latest-news-ul li:hover {
background-color: #d9f9ff;
transform: translateX(5px);
}

.latest-news-ul li a {
text-decoration: none;
color: #333;
font-weight: bold;
display: block;
}

.latest-news-ul li a:hover {
color: #4a00e0;
text-decoration: underline;
}

.notice-area-section h3 i, .notice-container h3 i {
font-size: 1.5em;
margin-right: 8px;
color: #4a00e0;
}

/* Marquee Styling */
marquee {
height: 250px;
border: 1px solid #ddd;
border-radius: 4px;
padding: 10px;
background-color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
.Notice-headers h1 {
font-size: 1.8rem;
}

.notice_box {
gap: 15px;
}

.notice-area-section, .notice-container {
width: 100%; /* Switch to single-column layout */
}

.latest-news-ul li {
font-size: 0.85em;
}
}

@media (max-width: 768px) {
.Notice-headers {
padding: 15px;
}

.Notice-headers h1 {
font-size: 1.5rem;
}

.notice_box {
flex-direction: column; /* Stack items vertically */
gap: 10px;
}

.notice-area-section, .notice-container {
padding: 10px;
}
}

@media (max-width: 480px) {
.Notice-headers {
padding: 10px;
}

.Notice-headers h1 {
font-size: 1.2rem;
}

.notice_box {
gap: 5px;
}

.notice-area-section, .notice-container {
padding: 8px;
box-shadow: none; /* Reduce shadow for smaller screens */
}

.latest-news-ul li {
font-size: 0.8em;
padding: 5px;
}
}

/*======================= video SECTION =============================*/
.videocontainer {
            
            margin: auto;
            padding: 20px;
            background: #fff;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
        }
        .video-section {
            text-align: center;
        }
        .videocontainer iframe {
            width: 100%;
            height: 450px;
            border-radius: 8px;
            border: none;
            box-shadow: 0px 0px 10px #7a13ad;
        }
        
/*======================= OUR BRANCH SECTION =============================*/

/* Branch Sections */
.branch-header {
text-align: center;
margin: 6px 0;
background: #008080;
padding: 20px;
color: #fff;
}

.branch-header h1 {
font-size: 2.5rem;
font-weight: 600;
margin-bottom: 10px;
}

.branches {
padding: 20px;
background-color:#008080;
margin-bottom:30px;
}

.branch {
display: flex;
flex-wrap: wrap;
align-items: center;
margin-bottom: 50px;
}

.branch.reverse {
flex-direction: row-reverse;
}

.branch .text {
flex: 1 1 500px;
padding: 20px;
}

.branch h1 {
font-size: 56px;
color: #ffff;
}

.branch p {
font-size: 26px;
margin-top: 10px;
color: #070606;
margin-bottom: 20px;
}

.branch .image {
text-align: center;
}

.branch .image img {
width: 534px;
height: auto;
border-radius: 10px;
}

/* Learn More Button Animation */
@keyframes pulseEffect {
    0% {
      transform: scale(1);
      background-color: #008080;
    }
    25% {
      transform: scale(1.2);
      background-color: rgb(255, 0, 0);
    }
    50% {
      transform: scale(1.4);
      background-color: #4f8f84;
    }
    75% {
      transform: scale(1.2);
      background-color: #4caf50;
    }
    100% {
      transform: scale(1);
      background-color: #008080;
    }
  }
  
  .learn-more a {
    padding: 5px 10px;
    border-radius: 16px 0px 16px 0px;
    text-decoration: none;
    color: #fff;
    background-color: #008080;
    display: inline-block;
    position: relative; /* Button stays in its position */
    animation: pulseEffect 3s infinite ease-in-out; /* Smooth pulse animation */
    transition: all 0.3s ease;
    text-align: center;
    font-family: Lucida Calligraphy;
    border: 2px solid rgba(255, 255, 0, 0.459);
  }
  
  .learn-more a span {
    position: relative;
    z-index: 2;
  }


/* Responsive Design */
@media screen and (max-width: 768px) {
.branch {
flex-direction: column;
}

.branch.reverse {
flex-direction: column;
}

.branch .text {
text-align: center;
flex:none;
}

.branch p {
font-size: 20px;
}

.branch h1 {
font-size: 46px;
}

.branch .image img {
max-width: 300px;
}

.learn-more {
text-align: center;
}
}

/*================= play store====================*/

 .placement-header2 {
    background-color: #008080;
    color: white;
    text-align: center;
    padding: 20px 10px;
}

.placement-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.placement-header p {
    font-size: 1.2em;
    margin: 0;
}
/* Hero Section */
.hero {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
padding: 50px 20px;
}

.content {
flex: 1 1 500px;
max-width: 600px;
text-align: center;
padding: 20px;
}

.content h1 {
font-size: 36px;
color: #333;
margin-bottom: 20px;
}

.content p {
font-size: 18px;
line-height: 1.6;
color: #555;
margin-bottom: 30px;
}

.playstore-link {
display: inline-block;
margin-top: 20px;
}

.playstore-icon {
width: 200px; /* Larger icon size */
height: auto;
fill: #34a853; /* Play Store green color */
transition: transform 0.3s ease, fill 0.3s ease;
}

.playstore-icon:hover {
transform: scale(1.15); /* Bigger zoom effect on hover */
fill: #2c8b48; /* Darker green on hover */
}

/* Hero Image Section */
.hero-image {
flex: 1 1 400px;
max-width: 500px;
text-align: center;
}

.hero-image img {
width: 100%;
/* max-width: 400px; */
border-radius: 10px;
}

/* Responsive Design */
@media screen (max-width: 768px) {
.hero {
flex-direction: column;
padding: 30px 20px;
}

.content h1 {
font-size: 28px;
}

.content p {
font-size: 16px;
}

.playstore-icon {
width: 150px;
}

.hero-image img {
max-width: 300px;
}

.hero {
 height:90vh;
}
}

/*PLACMENT PAGE START*/

 .placement-header {
    background-color: #008080;
    color: white;
    text-align: center;
    padding: 20px 10px;
}

.placement-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.placement-header p {
    font-size: 1.2em;
    margin: 0;
}

.slider-container2 {
max-width: 1200px;
margin: 0 auto;
position: relative;
overflow: hidden;
padding: 20px 40px;
}

.company-grid {
display: flex;
transition: transform 0.5s ease-in-out;
gap: 20px;
}

.company-card {
flex: 0 0 250px;
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 20px;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-card:hover {
transform: translateY(-10px);
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.company-card img {
width: 80px;
height: 80px;
margin-bottom: 10px;
object-fit: contain;
}

.company-card h3 {
font-size: 1.5em;
color: #008080;
margin: 10px 0;
}

.slider-button {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: #008080;
color: white;
border: none;
padding: 10px 15px;
cursor: pointer;
border-radius: 5px;
z-index: 1;
}

.prev-button {
left: 0;
}

.next-button {
right: 0;
}

.slider-dots {
display: flex;
justify-content: center;
margin-top: 20px;
gap: 10px;
}

.dot {
width: 10px;
height: 10px;
border-radius: 50%;
background: #ccc;
cursor: pointer;
}

.dot.active {
background: #008080;
}

@media screen and (max-width: 768px) {
.company-card {
    flex: 0 0 200px;
    padding: 15px;
}

.company-card h3 {
    font-size: 1.2em;
}
}

@media screen and (max-width: 480px) {
.company-card {
    flex: 0 0 100%;
    padding: 10px;
}

.company-card h3 {
    font-size: 1em;
}

.company-card img {
    width: 60px;
    height: 60px;
}
}
/* Container for Count Boxes */
.container-count {
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
gap: 30px;
margin: 40px auto;
padding: 0 20px;
max-width: 1200px;
}

/* Count Box Styles */
.count_box {
background: #ffffff;
padding: 25px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
width: calc(33.33% - 30px); 
text-align: center;
transition: all 0.3s ease;
border: 1px solid #e0e0e0; 
}

.count_box h2 {
font-size: 1.6rem;
color: #333;
margin-bottom: 15px;
}

.count_box .counter {
font-size: 2.8rem;
font-weight: 700;
color: #008080;
display: inline-block;
}

/* Hover effect for Count Boxes */
.count_box:hover {
transform: translateY(-8px); 
box-shadow: 0 12px 18px rgba(0, 0, 0, 0.15); 
border-color: #007bff; 
}

/* Responsive Design for Smaller Screens */
@media screen and (max-width: 1024px) {
.count_box {
width: calc(50% - 20px); 
}
}

@media screen and (max-width: 768px) {
.count_box {
width: 100%;
}
}

/* Footer Container */
.footer {
    background: linear-gradient(135deg, #026874, #034f57);
    color: white;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo Section */
.footer-logo img {
    max-width: 120px;
    height: auto;
}

.footer .text-2 {
    color: white;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    margin-top: 10px;
}

/* Quick Links Section */
.footer-links {
    flex: 1;
    min-width: 220px;
}

.footer-links h3 {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid #ffcc00;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 10px 0;
}

.footer-links li a {
    text-decoration: none;
    color: #ffcc00;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: white;
    text-decoration: underline;
}

/* Contact Section */
.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-contact h3 {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid #ffcc00;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-wrap: wrap;
}

.footer-contact li i {
    margin-right: 8px;
    color: #ffcc00;
}

/* Map Section */
.map iframe {
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 30px;
    font-size: 14px;
    color: #ccc;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.footer-bottom a {
    color: #ffcc00;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links,
    .footer-contact {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 30px 10px;
    }

    .footer-logo img {
        max-width: 90px;
    }

    .footer-links h3,
    .footer-contact h3 {
        font-size: 18px;
    }

    .footer-contact li {
        flex-direction: column;
    }

    .footer-bottom {
        font-size: 12px;
    }
}
