/* GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 
}

body {
 font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #333;
  background: #f2f4f6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* ================= HEADER & NAVBAR ================= */
header {
  color: rgb(13, 109, 105);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 15px 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

/* Logo + tagline stacked vertically, left-aligned */
.logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-section img {
  height: 60px;
  margin-bottom: 4px;
}

.tagline {
  font-size: 15px;
  line-height: 1.2;
  color:teal;
  margin: 0;
  display: inline-block;
  padding-left: 60px;
  /* text-align: left; */
}

/* NAVIGATION */

nav{
  display:flex;
  align-items:center;
}

nav a{
  color: orange;
  margin-left: 25px;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

/* animated underline */

nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:orange;
  transition:width 0.35s ease;
}

nav a:hover{
  color: rgb(13,109,105);
}

nav a:hover::after{
  width:100%;
}

/* ================= HERO SLIDER ================= */
.hero-slider {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 90vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-repeat: no-repeat;
  background-position:top center;
  background-size: cover;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background: rgba(13, 109, 105, 0.55);
  padding: 45px;
  border-radius: 10px;
  max-width: 700px;
  box-sizing: border-box;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.btn {
  background: orange;
  color: black;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

/* Slider buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 35px;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
}

.prev { left: 20px; }
.next { right: 20px; }

/* Slider dots */
.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: white;
}

/* ================= ABOUT SECTION ================= */
/* ABOUT SECTION */

.about-section{
padding:90px 8%;
background:#f4f6f8;
}

.about-intro{
display:flex;
align-items:center;
gap:60px;
flex-wrap:wrap;
}

/* TEXT */

.about-text{
flex:1;
max-width:550px;
}

.about-text h2{
font-size:36px;
margin-bottom:20px;
color:#222;
}

.about-text p{
line-height:1.8;
color:#555;
margin-bottom:15px;
font-size:16px;
}

/* IMAGES */

.about-img{
flex:1;
position:relative;
display:flex;
align-items:center;
justify-content:center;
}

/* Large image */

.img-large{
width:350px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* Small image */

.img-small{
width:500px;
position: absolute;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
border:6px solid white;
}
@media (max-width:768px){

.about-intro{
  flex-direction:column;
  text-align:center;
  gap:30px;
}

.about-img{
  position:static;
}

.img-small{
  position:static;
  width:100%;
  max-width:350px;
}

}

/* ================= MISSION & VISION ================= */
.mission-vision {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.mv-card {
  background: orange;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  flex: 1;
  color: #ffffff;
}

.mv-headings {
  color: rgb(13, 109, 105);
}

/* ================= VALUES ================= */
.values-section {
  margin-top: 50px;
  text-align: center;
}

.values-section p {
  color: white;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.value-item {
  background: orange;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.vheading {
  color: rgb(13, 109, 105);
}

.value-item:hover {
  transform: translateY(-5px);
}

/* ================= SERVICES ================= */
.services {
  background: #f8f9fa;
  padding: 80px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 35px;
  margin-top: 40px;
  align-items: stretch;
}

.service-card {
  background: rgb(13, 109, 105);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
  color: #ffffff;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:8px;
  margin-bottom:15px;
}

.service-card .heading {
  color: rgb(239,106,47);
  text-align:center;
  margin-bottom:10px;
}

.pbtn {
  text-align:center;
  background:#f8f9fa;
}

.pbtn a {
  background:orange;
  color:#ffffff;
  padding:12px 25px;
  text-decoration:none;
  border-radius:6px;
  font-weight:bold;
  transition:0.3s;
  font-size:0.8rem;
}

.pbtn a:hover {
  background-color: rgb(13,109,105);
  color:#ffffff;
}

/* ================= CLIENTS ================= */
.clients {
  padding:100px 8%;
  background:#f8f9fa;
  text-align:center;
}

.heading1 {
  font-size:36px;
  margin-bottom:15px;
  color:#222;
}

.clients-text {
  max-width:800px;
  margin:0 auto 50px auto;
  line-height:1.7;
  color:#555;
}

.clients-logos {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  align-items:center;
  justify-items:center;
}
@media (max-width:768px){

  .clients-logos{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
  }

  .clients-logos img{
    max-width:120px;
  }

}

.clients-logos img {
  max-width:140px;
  height:auto;
  padding:20px;
  background:white;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
  transition:all 0.3s ease;
}

.clients-logos img:hover {
  transform:scale(1.08);
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

/* ================= CONTACT ================= */
.contact {
  padding: 80px 0;
  text-align:center;
}

.contact-wrapper {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:40px;
  margin-top:30px;
}

.contact-info-section {
  flex:1 1 300px;
  text-align:left;
}

.contact-item {
  display:flex;
  flex-direction:column;
  align-items:center;
  margin-bottom:20px;
}

.contact-item .icon {
  font-size:2rem;
  margin-bottom:8px;
}

form {
  flex:1 1 300px;
  display:flex;
  flex-direction:column;
  gap:15px;
}

input, textarea {
  padding:12px;
  border:1px solid #ccc;
  border-radius:5px;
}

button {
  background:#f7b030;
  color:white;
  padding:12px;
  border:none;
  border-radius:5px;
  cursor:pointer;
  transition:0.3s;
}

button:hover {
  background: rgb(13,109,105);
}

/* ================= FOOTER ================= */
footer {
  background: rgb(13,109,105);
  color:white;
  text-align:center;
  padding:20px;
  margin-top:40px;
}

footer a {
  display:inline-block;
  margin:0 10px;
  vertical-align:middle;
  transition:transform 0.2s;
}

footer a img {
  width:30px;
  height:30px;
}

footer a:hover {
  transform:scale(1.1);
}

/* ================= MOBILE RESPONSIVE ================= */
@media(max-width:768px) {
  .about-intro{
    flex-direction:column;
  }
  .about-img{
    grid-template-columns:1fr 1fr;
  }
  .hero-content{
    padding:25px;
  }
  .hero-content h1{
    font-size:28px;
  }
  .hero-content p{
    font-size:16px;
  }
  .values-list{
    grid-template-columns:1fr;
  }
  .mission-vision{
    flex-direction:column;
  }
  .logo-section {
    align-items:center;
    text-align:center;
  }
}
/* Hamburger button (hidden on desktop) */
.menu-toggle{
display:none;
font-size:28px;
background:none;
border:none;
cursor:pointer;
}

/* Mobile navigation */
@media (max-width:768px){

nav{
  display:none;
  flex-direction:column;
  background:white;
  position:absolute;
  top:70px;
  right:20px;          /* ✅ move to right */
  width:auto;          /* ✅ shrink to content */
  padding:20px;        /* ✅ spacing */
  border-radius:8px;   /* ✅ rounded */
  box-shadow:0 10px 25px rgba(0,0,0,0.1); /* ✅ shadow */
}

nav a{
  margin:10px 0;
  color:#333;
}

nav.show{
  display:flex;
}

.menu-toggle{
  display:block;
  font-size:28px;
  background:none;
  border:none;
  cursor:pointer;
  color: rgb(13,109,105);
}

}
/* Text column spacing handled by flex */
.team-member .text {
  flex: 1;
}

/* Image sizing */
.team-member .image img {
  width: 80%;        /* adjust image size */
  max-width: 400px;  /* optional max */
  height: auto;
  border-radius: 12px;
}

/* Transition */
body {
  opacity: 0;
  transition: opacity 0.4s ease;
}
body.loaded {
  opacity: 1;
}
body.fade-out {
  opacity: 0;
}

