﻿/* ===== Global Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    background-color: #fff; /* White background */
}

/* ===== Color Variables ===== */
:root {
    --primary-blue: #007BFF;
    --secondary-green: #28A745;
    --accent-maroon: #800000;
    --text-color: #333333;
    --bg-light: #f8f9fa;
    --btn-radius: 5px;
    --card-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab', serif;
    color: var(--primary-blue);
}

p, span, a {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
}

/* ===== Header / Navbar ===== */

/* ===== Buttons ===== */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: var(--btn-radius);
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--accent-maroon);
}

.btn-success {
    background-color: var(--secondary-green);
    color: #fff;
}

.btn-success:hover {
    background-color: #1e7e34;
}

/* ===== Cards ===== */
.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    padding: 15px;
    margin: 10px 0;
}

.card img {
    max-width: 100%;
    border-radius: 5px;
}

/* ===== Footer ===== */
footer {
    width: 100%;
    background-color: var(--primary-blue);
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: #fff;
}

footer a:hover {
    color:  #0BAF97 !important;
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.p-20 { padding: 20px; }



/* ===== Topbar ===== */
.topbar {
    background: linear-gradient(90deg, #3858e9 0%, #00bfa5 50%, #800000 100%);
    background-color: var(--accent-maroon); /* Maroon topbar */
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
}

.topbar a i {
    margin-right: 6px;
}

.topbar a:hover {
    color: var(--secondary-green); /* Hover turns Green */
}

.topbar-right a {
    margin-left: 12px;
    font-size: 14px;
}



.services .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.services .section-subtitle {
    font-size: 1rem;
    color: #555;
}

.service-card {
    background-color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-green);
}

.service-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-maroon);
}

.service-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}



.our-focus {
    background-color: #f8f9fa;
}

.focus-title {
    font-size: 2rem;
    font-weight: 700;
    color: #3858e9; /* Primary blue */
}

.focus-subtitle {
    font-size: 1rem;
    color: #555;
}

.focus-text {
    background-color: #fff;
    border-left: 5px solid #61CE70; /* Green accent */
    transition: transform 0.3s, box-shadow 0.3s;
}

.focus-text h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #b21f2d; /* Maroon accent */
}

.focus-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.focus-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}



.our-focus {
    background: linear-gradient(135deg, #e0f7fa, #ffffff);
}

.focus-title {
    font-size: 2rem;
    font-weight: 700;
    color: #3858e9;
}

.focus-subtitle {
    font-size: 1rem;
    color: #555;
    margin-top: 5px;
}

.focus-card {
    background: #fff;
    border: 1px solid #ddd;
    transition: transform 0.3s, box-shadow 0.3s;
}

.focus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.focus-icon {
    font-size: 2.5rem;
    color: #61CE70;
}

.focus-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #6EC1E4;
}

.focus-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}



.blog-title {
    font-size: 2rem;
    font-weight: 700;
    color: #3858e9;
}

.blog-subtitle {
    font-size: 1rem;
    color: #555;
    margin-top: 5px;
}

.blog-card {
    background-color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

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

.blog-post-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #6EC1E4;
}

.blog-post-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.blog-content .btn {
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
}



.gallery-title {
    font-size: 2rem;
    font-weight: 700;
    color: #3858e9;
    text-align: center;
}

.gallery-subtitle {
    font-size: 1rem;
    color: #555;
    margin-top: 5px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-auto-rows: 10px; /* small unit for JS calculation */
    gap: 5px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    max-width: 400px;
    max-height: 700px;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}



.gallery-title {
    font-size: 2rem;
    font-weight: 700;
    color: #3858e9;
    text-align: center;
}

.gallery-subtitle {
    font-size: 1rem;
    color: #555;
    margin-top: 5px;
    text-align: center;
}

.gallery-column {
    column-count: 3; /* 6 columns */
    column-gap: 5px; /* minimal gap for puzzle look */
}

.gallery-column img {
    width: 100%;
    margin-bottom: 5px; /* spacing between images vertically */
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: block;
    cursor: pointer;
}

.gallery-column img:hover {
    transform: scale(1.05);
}



.gallery {
    display: flex;
    justify-content: center; /* center the gallery section */
}

.gallery-title {
    font-size: 2rem;
    font-weight: 700;
    color: #3858e9;
    text-align: center;
}

.gallery-subtitle {
    font-size: 1rem;
    color: #555;
    margin-top: 5px;
    text-align: center;
}

.gallery-column {
    column-count: 3; /* 6 columns */
    column-gap: 5px; /* gap between columns */
    max-width: 1200px; /* control the total width */
}

.gallery-column img {
    width: 100%;
    margin-bottom: 5px; /* vertical gap between images */
    padding: 2px; /* minimum padding for each image */
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: block;
    cursor: pointer;
}

.gallery-column img:hover {
    transform: scale(1.05);
}




.events-title {
    font-size: 2rem;
    font-weight: 700;
    color: #3858e9;
}

.events-subtitle {
    font-size: 1rem;
    color: #555;
    margin-top: 5px;
}

.timeline {
    position: relative;
    margin: 50px 0;
    padding: 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #6EC1E4;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-event {
    padding: 20px 30px;
    position: relative;
    width: 50%;
}

.timeline-event.left {
    left: 0;
    text-align: right;
}

.timeline-event.right {
    left: 50%;
}

.timeline-event::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #61CE70;
    border-radius: 50%;
    top: 20px;
    z-index: 1;
}

.timeline-event.left::after {
    right: -10px;
}

.timeline-event.right::after {
    left: -10px;
}

.timeline-content {
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: inline-block;
    max-width: 90%;
    animation: slideIn 0.8s ease forwards;
    opacity: 0;
}

.timeline-event.left .timeline-content { animation-delay: 0.2s; }
.timeline-event.right .timeline-content { animation-delay: 0.4s; }

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



/* Testimonials Section */
.testimonials {
  background: #f8f9fa;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.testimonial-content p {
  font-style: italic;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #e91e63;
  object-fit: cover;
}

.testimonial-footer h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
}

.testimonial-footer .role {
  font-size: 0.9rem;
  color: #777;
}

.stars {
  font-size: 1rem;
  color: #FFD700; /* Gold */
}



/* ================= Banner Slider ================= */
.banner {
  position: relative;
  width: 100%;
}

.swiper {
  width: 100%;
  border-radius: 30px;
}

.swiper-slide {
    position: relative;
    text-align: center;
    font-size: 18px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    min-height: 450px; /* Ensure banner has minimum height */
}

/* Make the image cover the whole slide */
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the container */
    display: block;
}

/* Overlay for slider */
.swiper-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.45);
}

/* Banner content */
.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    max-width: 90%;
    padding: 10px 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    word-wrap: break-word; 
    z-index: 10;
}



.banner-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 15px;
  color: #fff;
}

.banner-content .btn {
  font-size: 1rem;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 5px;
  transition: 0.3s ease;
}

.banner-content .btn:hover {
  transform: scale(1.05);
}

/* Swiper Navigation & Pagination */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  width: 55px;
  height: 55px;
  background-color: rgba(0,0,0,0.3);
  border-radius: 50%;
  transition: 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(0,0,0,0.6);
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.8;
}

.swiper-pagination-bullet-active {
  background: #00bfa5;
  opacity: 1;
}

/* ================= Contact Banner ================= */
.contact-banner {
    position: relative;
    width: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background image full cover */
    .contact-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('../images/c4.png') no-repeat center center;
        background-size: cover; /* Cover full container */
        z-index: -1;
    }

.banner-overlay {
  position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.contact-banner .banner-content h1 {
  font-size: 2.8rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
  word-wrap: break-word;
}

.contact-banner .banner-content p {
  font-size: 1.2rem;
  color: #f1f1f1;
  margin-bottom: 15px;
  word-wrap: break-word;
}

.breadcrumb {
  font-size: 0.95rem;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb a {
  color:#04B89F;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #ddd;
  margin: 0 5px;
}




/* Contact Section */
.contact-section {
  background: #f8f9fa;
  padding: 60px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left side (info) */
.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  color: #00695c;
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-info p {
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.info-box {
  margin-bottom: 20px;
}

.info-box h4 {
  font-size: 1.1rem;
  color: #009688;
  margin-bottom: 5px;
}

/* Right side (form) */
.contact-form {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #00695c;
}

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

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #009688;
  outline: none;
  box-shadow: 0 0 5px rgba(0,150,136,0.3);
}

.contact-form button {
  background: #009688;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #00796b;
}



/* Contact Info Section */
.contact-info {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info h2 {
  font-size: 2rem;
  color: #00695c;  /* pharmacy green */
  margin-bottom: 10px;
}

.contact-info > p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Info box items */
.info-box {
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-left: 4px solid #009688;
  border-radius: 8px;
  transition: 0.3s;
}

.info-box:hover {
  background: #e0f2f1;
}

.info-box h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #009688;
}

.info-box p {
  font-size: 0.95rem;
  color: #444;
  margin: 0;
  line-height: 1.5;
}


/* Map Section */
.map-section {
  width: 100vw;
  height: 300px;   /* adjust height as needed */
  margin: 0;
  padding: 0;
  overflow: hidden;
  margin-bottom: 40px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-wrapper {
    width: 100%;
    height: 250px;          /* fixed height for all devices */
    overflow: hidden;
    border-radius: 10px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.loc{
    font-size: 1.2rem;
    color: #c53840;
    font-weight: 600;
    margin-bottom: 10px;
}

/* ---------------- Navbar Custom ---------------- */


/* -------------- Navbar Custom (safe for Bootstrap collapse) -------------- */
.navbar-custom {
  /*background: linear-gradient(90deg, #3858e9 0%, #00bfa5 50%, #800000 100%);*/
  padding: 10px 20px;
  position: relative;
  z-index: 1000;
}

/* Logo */
.navbar-brand .logo {
  max-width: 150px;
  min-width: 80px;
  height: auto;
  display: block;
  transition: transform .25s;
}
.navbar-brand .logo:hover { transform: scale(1.03); }

/* Links */
.navbar-custom .nav-link {
  color: #000;
  font-weight: 600;
  margin: 0 4px;
  position: relative;
  font-size: 18px;
  letter-spacing: 2.6px;
  transition: color .25s;
}
.navbar-custom .nav-link::after {
  content: '';
  width: 0%;
  height: 2px;
  background: rgb(4, 185, 160);
  display: block;
  margin: 6px auto 0;
  transition: width .25s;
}
.navbar-custom .nav-link:hover { color: #1599be; }
.navbar-custom .nav-link:hover::after { width: 100%; }

/* Dropdown */
.navbar-custom .dropdown-menu {
  background-color: rgba(0,0,0,0.85);
  border: none;
  border-radius: 8px;
  margin-top: 6px;
}
.navbar-custom .dropdown-item { color: #fff; }
.navbar-custom .dropdown-item:hover { background: rgba(255,255,255,0.06); transform: translateX(6px); }

/* Toggler styling (icon color visible on gradient) */
.navbar-toggler {
  border: none;
  padding: 6px;
}
.navbar-toggler .fa-bars {
  color: #fff;
  font-size: 1.15rem;
}

/* IMPORTANT: don't force display on .collapse; allow Bootstrap to toggle it */

/* Center nav links when the collapse is visible (desktop and when expanded) */
.navbar-collapse.collapse.show .navbar-nav,
.navbar-collapse.collapse .navbar-nav {
  display: flex;
  gap: 16px;
}

/* Center nav horizontally when expanded (desktop/tablet) */
.navbar-collapse.collapse.show .navbar-nav {
  margin: 0 auto;
}

/* When NOT expanded (collapsed and hidden), Bootstrap handles display:none */


/* About Section */
/* About Section */
.about {
    background-color: #f8f9fa;
}

/* Title */
.about-title {
    font-size: 2rem;
    font-weight: 700;
    color: #3858e9;
}

/* Text */
.about-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
}

/* Button */
.about .btn-primary {
    background: linear-gradient(90deg, #3858e9, #00bfa5);
    border: none;
    transition: 0.3s;
}

.about .btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Image */
.about img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}



/* Elegant About Section */
.elegant-about {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

/* Image Wrapper */
/* About Section Animations */
.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: background 0.5s ease;
}

.about-text-wrapper h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.ea-intro {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: justify;
}

.mission-values {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.mv-card {
    flex: 1 1 45%;
    background: #f8f8f8;
    padding: 15px 20px;
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mv-card h4 {
    font-size: 1.1rem;
    color: #007BFF;
    margin-bottom: 10px;
}

.mv-card p {
    font-size: 0.95rem;
    color: #333;
}

.ea-btn {
    background: #00bfa5;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease, transform 0.3s ease;
}

.ea-btn:hover {
    background: #007960;
    transform: scale(1.05);
}




/* Unique Animated Title Style */
.ea-title {
  position: relative;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.3;
  text-align: left;
  display: inline-block;
  background: linear-gradient(90deg, #d62828, #f77f00, #fcbf49);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
}

/* Decorative underline */
.ea-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #d62828, #fcbf49);
  animation: underlineExpand 1.2s ease forwards;
}

/* Gradient animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Underline animation */
@keyframes underlineExpand {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 80px;
    opacity: 1;
  }
}


/* Elegant Short Heading */
.short-heading {
  position: relative;
  font-size: 1.3rem;
  font-weight: 700;
  color: #d62828;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: inline-block;
  padding-left: 10px;
}

/* Left Accent Bar */
.short-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 22px;
  border-radius: 3px;
  background: linear-gradient(180deg, #fcbf49, #d62828);
}

/* Hover Effect */
.short-heading:hover {
  color: #b71c1c;
  letter-spacing: 3px;
  transition: all 0.4s ease;
}



/* Unique Mini Heading Style */
.mini-heading {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ffffff;
  background: linear-gradient(90deg, #0077b6, #00b4d8, #90e0ef);
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 180, 216, 0.3);
  animation: floatText 3s ease-in-out infinite;
  transition: all 0.4s ease;
}

/* Hover Glow Effect */
.mini-heading:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 180, 216, 0.5);
}

/* Floating animation */
@keyframes floatText {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}



/* === Our Focus Section === */
.focus-section {
  background: linear-gradient(135deg, #f8fcff, #e6f4f7);
  position: relative;
  overflow: hidden;
}

.focus-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(0, 180, 216, 0.1);
  border-radius: 50%;
}

.focus-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: rgba(0, 119, 182, 0.08);
  border-radius: 50%;
}

/* Heading Styles */
.focus-title {
  font-size: 2rem;
  font-weight: 700;
  color: #023e8a;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.focus-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.focus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 180, 216, 0.25);
}

.focus-icon {
  font-size: 2.5rem;
  color: #00b4d8;
  margin-bottom: 15px;
  background: rgba(0, 180, 216, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  transition: all 0.3s ease;
}

.focus-card:hover .focus-icon {
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  color: #fff;
}

.focus-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #023e8a;
  margin-bottom: 10px;
}

.focus-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}



/* === Services Section === */
.services-section {
  background: linear-gradient(135deg, #f9fcff, #eef7f9);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: rgba(0, 150, 199, 0.1);
  border-radius: 50%;
}

.services-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: rgba(0, 119, 182, 0.1);
  border-radius: 50%;
}

/* Heading Styles */
.services-title {
  font-size: 2rem;
  font-weight: 700;
  color: #023e8a;
  text-transform: capitalize;
  margin-bottom: 40px;
  position: relative;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  transition: all 0.4s ease;
  z-index: 0;
}

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

.service-icon {
  font-size: 2.5rem;
  color: #00b4d8;
  margin-bottom: 15px;
  background: rgba(0, 180, 216, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: #fff;
  color: #0077b6;
  transform: scale(1.1);
}

.service-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #023e8a;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.service-card:hover h5,
.service-card:hover p {
  color: #fff;
}




/* === Training Highlight Section === */
.training-highlight {
  background: #f8fbfd;
  position: relative;
  padding: 80px 0;
}

.training-highlight .mini-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.training-highlight .training-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #023e8a;
  margin-bottom: 15px;
}

.training-highlight .training-intro {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.training-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.training-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.training-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.training-card .card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.training-card .card-content {
  padding: 20px;
  text-align: center;
}

.training-card .card-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0077b6;
  margin-bottom: 10px;
}

.training-card .card-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Button */
.btn-gradient {
  padding: 12px 30px;
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  transform: translateY(-3px);
}


/* Featured Products Section */
.featured-products {
  background: #f9f9f9;
}

.fp-subtitle {
  color: #00bfa5;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.fp-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.fp-intro {
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

/* Product Cards */
.products-grid .product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.products-grid .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.product-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-details {
  padding: 15px;
  text-align: center;
}

.product-details h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-details p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
}

.fp-btn {
  background: #00bfa5;
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.3s;
}

.fp-btn:hover {
  background: #009e8c;
  color: #fff;
  text-decoration: underline;
}


/* ===== Testimonials Section ===== */
.testimonials-section {
    background: linear-gradient(135deg, #f0f8ff, #e0f7fa);
    padding: 80px 0;
}

.ts-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00796b;
    position: relative;
}

.ts-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #00bfa5;
    margin: 10px auto 0;
    border-radius: 2px;
}

.ts-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ts-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.ts-quote-icon {
    font-size: 2rem;
    color: #00bfa5;
    position: absolute;
    top: -10px;
    left: 20px;
}

.ts-text {
    font-size: 1rem;
    color: #555;
    margin-top: 25px;
    line-height: 1.6;
}

.ts-client-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.ts-client-name {
    font-size: 1rem;
    font-weight: 600;
    color: #00796b;
}

.ts-client-role {
    font-size: 0.85rem;
    color: #777;
}


/* Contact Form Container */
.contact-right {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

/* Form Title */
.contact-right .cf-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
    text-align: center;
}

/* Form Groups */
.contact-right .cf-group {
    margin-bottom: 20px;
}

.contact-right input,
.contact-right textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 1rem;
    transition: 0.3s;
}

.contact-right input:focus,
.contact-right textarea:focus {
    border-color: #00bfa5;
    box-shadow: 0 0 5px rgba(0,191,165,0.3);
}

/* Submit Button */
.contact-right .cf-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #00bfa5, #3858e9);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-right .cf-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,191,165,0.3);
}



/* ================== Banner Slider ================== */
.banner-slider {
  width: 100%;
}

.banner-slide {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-slide .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1;
}

/* Banner content base style */
.banner-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 500px;
  color: #fff;
  z-index: 2;
  padding: 10px 20px;
}

.banner-content h1 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.banner-content p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 1.5rem;
}

.banner-content .btn {
  font-size: 1rem;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  transition: 0.3s ease;
}

.banner-content .btn:hover {
  transform: scale(1.05);
}

/* Alignment for each banner */
.center-content {
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.left-content {
  left: 8%;
  text-align: left;
}

.right-content {
  right: 8%;
  text-align: right;
}

/* Swiper navigation */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  width: 50px;
  height: 50px;
  background-color: rgba(0,0,0,0.3);
  border-radius: 50%;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(0,0,0,0.6);
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.8;
}

.swiper-pagination-bullet-active {
  background: #00bfa5;
  opacity: 1;
}



.menu_dropdown:focus,.menu_dropdown:hover{
    color: #02bca3 !important;
}


#goTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  background-color: #00bfa5;
    background: linear-gradient(#01bda7,#355de6);
  color: #fff;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: background-color 0.3s, transform 0.3s;
}

#goTopBtn:hover {
  background-color: #009e8f;
    background: linear-gradient(#355de6,#01bda7);
  transform: translateY(-3px);
}
