* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 999;
}

/* HEADER */
.header {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.header h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.header p {
  margin-bottom: 20px;
}

.btn {
  background: #ff9800;
  color: #000;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
}
/* HEADER WITH LOGO */
.header-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}
.logo-box {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #2c5364, #203a43);
  border: 4px solid rgba(255,255,255,0.7);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-box:hover {
  transform: scale(1.08) rotate(-2deg);
}
.header-text {
  margin-top: 8px;
}

.header-text h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.header-text h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.header-text p {
  margin-bottom: 15px;
  font-size: 15px;
  opacity: 0.9;
}
.logo-box {
  transition: all 0.3s ease;
}

.logo-box.shrink {
  width: 65px;
  height: 65px;
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;     /* centers logo + text */
    text-align: center;
  }

  .logo-box {
    width: 90px;             /* normal mobile size */
    height: 90px;
    margin: 0 auto 15px;
  }

  .header-text {
    max-width: 100%;
  }
}

/* ===============================
   ACTION HUB (UNDER HEADER)
================================ */
.action-hub {
  margin-top: 20px;     /* normal spacing */
  padding: 0 15px 30px;
}
.action-hub::before {
  content: "";
  display: block;
  height: 20px;
}

.hub-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Individual cards */
.hub-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #203a43, #2c5364);
  color: #fff;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.hub-card i {
  font-size: 20px;
}

/* Hover effect */
.hub-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* SLIDER */
.slider {
  max-width: 700px;
  margin: 40px auto;
  position: relative;
  text-align: center;
}

.slides {
  display: none;
}

.slides img {
  width: 100%;
  border-radius: 12px;
}

/* FADE EFFECT */
.fade {
  animation: fadeEffect 1.2s;
}

@keyframes fadeEffect {
  from {opacity: 0.4;}
  to {opacity: 1;}
}

/* DOTS */
.dots {
  margin-top: 12px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #2c5364;
}


/* SECTIONS */
section {
  padding: 20px 20px;
  text-align: center;
}

section h2 {
  margin-bottom: 20px;
  color: #2c5364;
}

/* ABOUT */
.about p {
  max-width: 800px;
  margin: auto;
}

.seo-text {
  max-width: 900px;
  margin: auto;
  font-size: 15px;
  color: #555;
}


/* COURSES */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.card {
  background: #f4f4f4;
  padding: 25px;
  border-radius: 10px;
  font-weight: bold;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.fees table {
  width: 90%;
  max-width: 900px;
  margin: auto;
  border-collapse: collapse;
}

.fees th, .fees td {
  border: 1px solid #ccc;
  padding: 12px;
}

.fees th {
  background: #2c5364;
  color: #fff;
}

.fees tr:nth-child(even) {
  background: #f4f4f4;
}

.note {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}


/* DURATION */
.duration ul {
  list-style: none;
}

.duration li {
  font-size: 18px;
  margin: 10px 0;
  padding: 0 15px;
  display: inline-block;
}

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  max-width: 800px;
  margin: auto;
}
.why-tagline {
  font-size: 18px;
  color: #555;
  margin-bottom: 25px;
  font-style: italic;
}


/* CONTACT SECTION ICONS */
.contact-box {
  max-width: 650px;
  margin: auto;
  text-align: left;
}

.contact-box p {
  margin: 15px 0;
  font-size: 16px;
}

.contact-box i {
  color: #2c5364;
  margin-right: 10px;
  font-size: 18px;
}

.contact-box a {
  color: #333;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}


/* GALLERY */
.gallery {
  background: #f9f9f9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  max-width: 1000px;
  margin: auto;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* TEAM SECTION */
.team {
  background: #f9f9f9;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.team-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-card h3 {
  color: #2c5364;
}

.team-card h4 {
  color: #777;
  margin-bottom: 10px;
  font-weight: normal;
}

.team-card p {
  font-size: 14px;
  color: #555;
}

.testimonials {
  background: #f9f9f9;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.testimonial {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.testimonial p {
  font-style: italic;
}

.testimonial h4 {
  margin-top: 10px;
  color: #2c5364;
}

.map iframe {
  max-width: 1000px;
  margin: auto;
  border-radius: 10px;
}

/* SOCIAL MEDIA SECTION */
.social {
  background: #f9f9f9;
  text-align: center;
}

.social p {
  margin-bottom: 20px;
  color: #555;
}

.social-icons a {
  display: inline-block;
  margin: 0 12px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  background: #2c5364;
  color: #fff;
  font-size: 20px;
  transition: transform 0.3s, background 0.3s;
}

.social-icons a:hover {
  transform: scale(1.15);
  background: #ff9800;
}

/* STICKY SOCIAL BAR */
.sticky-social {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1000;
}

.sticky-social a {
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  margin: 5px 0;
  transition: transform 0.3s;
}

.sticky-social a:hover {
  transform: translateX(5px);
}

/* BRAND COLORS */
.sticky-social .facebook { background: #1877f2; }
.sticky-social .instagram { background: #e4405f; }
.sticky-social .youtube { background: #ff0000; }
.sticky-social .whatsapp { background: #25d366; }

@media (max-width: 600px) {
  .sticky-social {
    display: none;
  }
}


/* FOOTER */
footer {
  background: #203a43;
  color: #fff;
  text-align: center;
  padding: 15px;
}
