body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: #222;
}


.custom-header {
    background-color: #007bff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #e0eaff;
    padding: 12px 20px;
}


.breadcrumb p:first-child {
    font-weight: bold;
}

/* About Section */
.about {
    padding: 4rem 5%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.about-text,
.about-image {
    flex: 1 1 300px;
}

.about img {
    width: 100%;
    border-radius: 10px;
}


/* Services Section */
.services {
    padding: 4rem 5%;
    background: linear-gradient(to right, #b6b6f2, #e0f7fa);
    text-align: center;
}

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

.service {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.3);
}

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

.service-card:hover {
  transform: translateY(-10px); /* Float effect */
  box-shadow: 0 8px 20px rgba(104, 32, 151, 0.6); /* Turquoise glow */
}






.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* LOGO Styling: Clean and always left-aligned */
.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 60px;
  width: auto;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

/* Navbar base */
nav {
  background-color: #d7dbdd;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Navbar links */
.navbar-nav .nav-link {
  color: #003366;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #000;
}

/* Dropdown menu */
.dropdown-menu {
  background-color: #e0f7ff;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.dropdown-item {
  color: #003366;
  padding: 0.5rem 1rem;
}

.dropdown-item:hover {
  background-color: #bde0ff;
  color: #000;
}

/* Navbar Toggler */
.navbar-toggler {
  border-color: rgba(0,0,0,0.1);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Mobile responsiveness — logo stays on the left */
@media (max-width: 767.98px) {
  .navbar {
    flex-wrap: wrap;
  }

  .logo-container {
    width: auto;
    margin-bottom: 0;
  }

  .navbar-collapse {
    width: 100%;
    justify-content: flex-end;
  }

  .navbar-nav {
    width: 100%;
    text-align: right;
  }

  .navbar-nav .nav-item {
    margin-bottom: 0.5rem;
  }
}




/* Hero Carousel */
#heroCarousel {
  position: relative;
  max-height: 85vh;
  overflow: hidden;
}

#heroCarousel .carousel-item {
  height: 85vh;
  position: relative;
}

#heroCarousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#heroCarousel .carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
  max-width: 90%;
}

#heroCarousel .carousel-caption h2 {
  font-size: 3rem;
  font-weight: 700;
}

#heroCarousel .carousel-caption p {
  font-size: 1.5rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  #heroCarousel .carousel-item {
    height: 65vh;
  }

  #heroCarousel .carousel-caption h2 {
    font-size: 1.8rem;
  }

  #heroCarousel .carousel-caption p {
    font-size: 1rem;
  }
}




/* Contact */
.contact {
    padding: 4rem 5%;
    background: #e0f7fa;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background: #00b4d8;
    color: #fff;
    padding: 0.8rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #0096c7;
}

/* Footer */
footer {
    background: #0047ab;
    color: #fff;
    text-align: center;
    padding: 2.5rem 1rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.social-icons {
    margin: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.social-icons a:hover {
    transform: scale(1.2);
}

.facebook { background: linear-gradient(45deg, #1877f2, #3b5998); }
.twitter { background: linear-gradient(45deg, #1da1f2, #0d8ddb); }
.linkedin { background: linear-gradient(45deg, #0077b5, #005582); }
.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.whatsapp { background: linear-gradient(45deg, #25d366, #128c7e); }

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .about {
        flex-direction: column;
        text-align: center;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}

/* Enquiry Section */
.enquiry-form-section {
    padding: 4rem 5%;
    background: #e7f0f9;
    text-align: center;
}

.enquiry-form-section h1 {
    color: #002147;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.enquiry-form-section {
    padding: 4rem 5%;
    background: #e7f0f9;
    text-align: center;
}

.enquiry-form-section h1 {
    color: #002147;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.contact-form label {
    font-weight: 500;
    color: #333;
}

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

.btn-pulse {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.9rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-pulse:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
}

/* Fade-in-up animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive form */
@media (max-width: 600px) {
    .enquiry-form-section {
        padding: 2rem 1.5rem;
    }

    .enquiry-form-section h1 {
        font-size: 2rem;
    }
}


/* ==== About Page Layout ====*/
.about-page {
    display: flex;
    flex-wrap: wrap;
    padding: 4rem 5%;
    background: #f7faff;
    gap: 2rem;
    align-items: center;
}


.about-text {
    flex: 1 1 400px;
    padding-right: 2rem;
}

.about-text h1 {
    font-size: 2.5rem;
    color: #002147;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333;
}

.about-image {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.03);
}

.about-points ul {
    padding-left: 1rem;
    list-style: none;
}

.about-points li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-points li::before {
    content: "✓";
    color: #007bff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.about-mission,
.about-vision {
    margin-top: 2rem;
}

.about-mission h3,
.about-vision h3 {
    font-size: 1.4rem;
    color: #00509e;
    margin-bottom: 0.5rem;
}
   

/* Responsive */
@media (max-width: 768px) {
    .about-page {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        padding-right: 0;
    }

    .about-image {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .about-image img {
        max-width: 48%;
    }
}

img[src$=".svg"] {
  border: none;
  outline: none;
  background: transparent;
  display: block;
}


/* Animation Keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reveal Animation Class */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease forwards;
}
