/* ================= HEADER + NAV (CLEAN) ================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

html{ scroll-behavior:smooth; }
section{ scroll-margin-top:140px; }

/* Body gap for fixed header+nav */
body{
  padding-top:140px; /* header (70~80) + nav (50~60) */
}

/* ---------------- HEADER (Fixed) ---------------- */
header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 50px;
  border-bottom:1px solid #eee;
  box-shadow:0 4px 10px rgba(0,0,0,0.1);
  z-index:9999;
  transition: transform 0.3s ease; /* for hide/show */
}

/* LEFT LOGO */
.header-left .logo img{
  height:60px;
  width:auto;
  object-fit:contain;
}
.header-left .logo a{
  display:inline-block;
  cursor:pointer;
}

/* RIGHT */
.header-right{
  display:flex;
  align-items:center;
  gap:25px;
}

/* CONTACT */
.contact-links{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
}
.header-link{
  text-decoration:none;
  color:#333;
  transition:0.3s ease;
  white-space:nowrap;
}
.header-link:hover{ color:#0077b5; }
.divider{ color:#aaa; }

/* SOCIAL */
.social{
  display:flex;
  align-items:center;
  gap:10px;
}
.social a{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#fff;
  font-size:14px;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.social a:hover{
  transform:translateY(-3px);
  box-shadow:0 5px 12px rgba(0,0,0,0.2);
}
.social .linkedin{ background:#0077b5; }
.social .instagram{ background:#e4405f; }
.social .facebook{ background:#1877f2; }
.social .twitter{ background:#000000; }

/* ---------------- NAV (Fixed under header) ---------------- */
.main-nav{
  position:fixed;
  top:80px;             /* header height */
  left:0;
  width:100%;
  background:rgb(102, 9, 102);
  z-index:9998;
  padding:0;
  transition: transform 0.3s ease; /* for hide/show */
}

.menu{
  list-style:none;
  display:flex;
  justify-content:center;
  margin:0;
  padding:0 30px;
}

.menu-item{
  position:relative;
  padding:16px 22px;
}

.menu-item a{
  color:#ffffff;
  text-decoration:none;
  font-size:16px;
  font-weight:500;
  transition:0.3s ease;
}

.menu-item:hover > a{
  color:#ffd700;
}

/* arrow */
.arrow{
  color:#ffffff;
  font-size:10px;
  margin-left:6px;
  vertical-align:middle;
}

/* dropdown */
.submenu{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  background:#ffffff;
  min-width:240px;
  box-shadow:0 8px 16px rgba(0,0,0,0.2);
  z-index:10000;
  padding:10px 0;
  border-radius:8px;
}

.menu-item:hover .submenu{
  display:block;
}

.submenu li{ list-style:none; }

.submenu li a{
  color:#333;
  padding:10px 20px;
  display:block;
  font-size:14px;
}

.submenu li a:hover{
  background:#f1f1f1;
  color:#5c0a5c;
}

/* ---------------- Scroll Hide/Show ---------------- */
body.hide-topbar header{
  transform: translateY(-100%);
}
body.hide-topbar .main-nav{
  transform: translateY(-100%);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 992px){
  header{
    padding:12px 18px;
  }

  .header-right{
    display:none; /* mobile clean */
  }

  .main-nav{
    top:72px;
  }

  body{
    padding-top:130px;
  }

  .menu{
    flex-direction:column;
    padding:10px 0;
  }

  .submenu{
    position:relative;
    box-shadow:none;
    min-width:100%;
  }

  .menu-item:hover .submenu{
    display:none; /* hover off in mobile (JS toggle use) */
  }

  .menu-item.open .submenu{
    display:block;
  }
}


/* ===== Disable custom cursor on mobile/touch ===== */
@media (max-width: 992px){
  .cursor, .cursor-dot{
    display:none !important;
  }
}

/* Touch devices (phone/tablet) */
@media (hover: none){
  .cursor, .cursor-dot{
    display:none !important;
  }
}


/* --- Desktop Styles (Keep your current ones, but ensure this) --- */
.menu-toggle {
    display: none; /* Hide hamburger on desktop */
    font-size: 24px;
    cursor: pointer;
    padding: 15px;
}

/* --- Mobile & Tablet Styles --- */
@media (max-width: 1024px) {
    .menu-toggle {
        display: block; /* Show hamburger */
        background: whitesmoke;
        text-align: right;
    }

    .menu {
        display: none; /* Hide menu by default */
        flex-direction: column;
        width: 100%;
        background-color: rgb(102, 9, 102);
        color: white;
    }

    .menu.active {
        display: block; /* Show menu when clicked */
    }

    .menu-item {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    /* Submenu styling for mobile */
    .submenu {
        display: none; 
        position: static; /* Make it flow naturally below the parent */
        width: 100%;
        box-shadow: none;
    }

    .menu-item.open .submenu {
        display: block; /* Show submenu when parent is clicked */
    }

    .arrow {
        float: right;
        transition: transform 0.3s;
    }

    .menu-item.open .arrow {
        transform: rotate(90deg); /* Rotate arrow when open */
    }
}
/* ====== ABOUT SECTION ====== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
}

/* ---------------- Container ---------------- */
.container {
  max-width: 1200px;  /* Limit content width */
  margin: 0 auto;     /* Center horizontally */
  padding: 0 20px;    /* Padding for small screens */
}

/* ---------------- About Section ---------------- */
.about-section {
  padding:  0;
  background-color: #f9f9f9;
}

/* About box - flex layout */
.about-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  background-color: #ffffff; /* Optional: card-like background */
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

/* Fade-in animation */
.about-box.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- Left Content ---------------- */
.about-content {
  flex: 1 1 500px;
}

.about-content h2 {
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-weight: 700;
}

.about-content h4 {
  font-size: 18px;
  color: #555;
  margin: 5px 0;
  font-weight: 500;
}

.about-content h4 span {
  color: #ff4d5a; /* Highlight color */
  font-weight: 600;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 15px 0;
}

.highlight {
  color: #007bff;
  font-weight: 600;
}

/* ---------------- Right Image ---------------- */
.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* ---------------- Responsive ---------------- */
@media screen and (max-width: 1200px) {
  .about-box {
    padding: 30px;
  }
}

@media screen and (max-width: 900px) {
  .about-box {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .about-content h4 {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  .about-box {
    padding: 20px;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .about-content p {
    font-size: 15px;
  }
}

/* Animation Base - Initially hidden */
.about-content, .who-content, .about-image, .who-image {
    opacity: 0;
    transition: all 1s ease-out;
}

/* Slide from Left (Content in About, Image in Who) */
.about-content, .who-image {
    transform: translateX(-100px); /* Moves left */
}

/* Slide from Right (Image in About, Content in Who) */
.about-image, .who-content {
    transform: translateX(100px); /* Moves right */
}

/* The 'Show' class that JS will trigger */
.reveal {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Container Styling for better layout */
.about-box, .who-box {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    overflow: hidden; /* Important for slide animations */
}

.about-box img, .who-box img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

.highlight {
    color: #5c0a5c;
    font-weight: bold;
}

/* ================= Who We Are Section ================= */

.who-section {
  padding: 80px 0;
  background-color: #f0f4f8; /* slightly different from About section */
}

/* Box container */
.who-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

/* Fade-in animation */
.who-box.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* LEFT IMAGE */
.who-image {
  flex: 1 1 400px;
  text-align: center;
}

.who-image img {
  width: 400px;               /* fixed width */
  height: 400px;              /* fixed height */
  object-fit: cover;          /* ensure image covers the shape */
  border-radius: 50%;         /* makes it circular/oval */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.who-image img:hover {
  transform: scale(1.08) rotate(-2deg);  /* subtle zoom & tilt effect */
  box-shadow: 0 15px 40px rgb(201, 32, 176);
}


/* RIGHT CONTENT */
.who-content {
  flex: 1 1 500px;
}

.who-content h2 {
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 700;
}

.who-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 15px 0;
}

.who-content .highlight {
  color: #007bff;
  font-weight: 600;
}

/* Responsive */
@media screen and (max-width: 900px) {
  .who-box {
    flex-direction: column;
    gap: 30px;
  }

  .who-content h2 {
    font-size: 30px;
  }

  .who-content p {
    font-size: 15px;
  }
}

@media screen and (max-width: 600px) {
  .who-box {
    padding: 20px;
  }

  .who-content h2 {
    font-size: 26px;
  }
}

            /*=== What We Do===*/

.services-section {
  padding: 80px 8%;
  background: #f8f9fc;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #1f2937;
}

/* Container */
.services-container {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Box */
.service-box {
  flex: 1 1 22%;
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover effect */
.service-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #9b3396, #822a8a);
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}

.service-box:hover::before {
  opacity: 1;
}

.service-box h3,
.service-box p {
  position: relative;
  z-index: 1;
}

.service-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #111827;
}

.service-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

/* Hover text color */
.service-box:hover h3,
.service-box:hover p {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
  .service-box {
    flex: 1 1 45%;
  }
}

@media (max-width: 576px) {
  .service-box {
    flex: 1 1 100%;
  }
}

/*=====VISION & MISSION ====*/
.vm-section {
  padding: 90px 8%;
  background: #f8f9fc;
}

/* MAIN WRAPPER */
.vm-wrapper {
  display: flex;
  gap: 40px;
}

/* CARD */
.vm-card {
  flex: 1;
  background: #ffffff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.395);
  transition: all 0.4s ease;
}

.vm-card:hover {
  transform: translateY(-10px);
}

/* IMAGE */
.vm-img {
  height: 230px;
  overflow: hidden;
}

.vm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vm-card:hover .vm-img img {
  transform: scale(1.1);
}

/* CONTENT */
.vm-content {
  padding: 35px;
}

.vm-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #1f2937;
}

.vm-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .vm-wrapper {
    flex-direction: column;
  }

  .vm-img {
    height: 200px;
  }
}

      /*Founder’s Message*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f4f6f9;
}

/* Section */
.founder-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

/* Container */
.founder-container {
  max-width: 900px;
  background: #ffffff;
  padding: 50px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

/* Animation active */
.founder-container.show {
  opacity: 1;
  transform: translateY(0);
}

/* Headings */
.founder-container h2 {
  font-size: 32px;
  color: #0b2c4d;
  margin-bottom: 5px;
}

.founder-container h4 {
  font-size: 16px;
  color: #888;
  margin-bottom: 25px;
}

/* Paragraphs */
.founder-container p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

/* Tagline */
.tagline {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 600;
  color: #0b2c4d;
}

.tagline span {
  color: #0077b6;
}
/* Arrow container */
.scroll-arrow {
  text-align: center;
  font-size: 32px;
  color: #0077b6;
  margin-top: 25px;
  animation: bounce 1.5s infinite;
  cursor: pointer;
}

/* Bounce animation */
@keyframes bounce {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(12px); }
  100% { transform: translateY(0); }
}

/* ================= GROUP OF BUSINESS ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f8f9fc;
  color: #222;
}

/* ===== FOUNDER SECTION ===== */
.founder-section{
  padding: 80px 20px;
  background: #ffffff;

  /* Professional soft shadow */
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);

  /* Smooth card look */
  border-radius: 24px;

  /* Proper spacing from sides */
  margin: 60px auto;
  max-width: 1200px;

  /* Safety */
  position: relative;
  z-index: 2;
}

.founder-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
  box-shadow:
0 12px 32px rgba(0,0,0,0.12),
0 0 30px rgba(169,16,121,0.25);
}

.founder-container.show {
  opacity: 1;
  transform: translateY(0);
}

.founder-container h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #0b3c5d;
}

.founder-container h4 {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555;
}

.founder-container p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444;
}

.tagline {
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
}

.tagline span {
  color: #0b3c5d;
}

/* ===== GROUP OF BUSINESS ===== */
.title {
  text-align: center;
  font-size: 40px;
  margin-top: 80px;
  color: #0b3c5d;
}

.subtitle{
  display:block;              /* center support */
  width:fit-content;          /* text size-ku adjust */
  margin:16px auto;           /* CENTER */

  padding:10px 26px;
  background:linear-gradient(135deg,
    #2e0249,
    #570a57,
    #a91079
  );

  color:#ffffff;
  font-weight:600;
  border-radius:30px;
  text-align:center;
  box-shadow:0 6px 20px rgba(169,16,121,0.4);
}

.subtitle2 {
  text-align: center;
  font-size: 16px;
  margin: 15px auto 40px;
  max-width: 800px;
  color: #555;
}

/* ===== CARD SLIDER ===== */

#s1{
  display:flex;
  gap:25px;
  width:max-content;
  padding:40px 0;

  /* IMPORTANT: cards visible aaga */
  position:relative;
  z-index:5;
}

/* CARD */
#s1 .card{
background: linear-gradient(135deg,
#2e0249,
#570a57,
#a91079
);
  padding:24px 22px;
  border-radius:18px;
  text-align:center;

  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.4s;
  height: 250px;
  width:auto;
}

/* IMAGE */
#s1 .card img{
  max-width:160px;
  height:auto;
  object-fit:contain;
  margin-bottom:12px;
}

/* TITLE */
#s1 .card h3{
  font-size:15px;
  color:#ffffff;
  white-space:nowrap;
}

/* HOVER EFFECT */
#s1 .card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 25px rgba(106,13,173,0.4);
}
.slider-container{
  overflow:hidden;
  width:100%;
}

#s1{
  display:flex;
  gap:25px;
  width:max-content;
  padding:40px 0;
  position:relative;
  z-index:5;

  animation: autoScroll 35s linear infinite;
}

/* Pause on hover (optional – professional look) */
.slider-container:hover #s1{
  animation-play-state: paused;
}

/* KEYFRAMES */
@keyframes autoScroll{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}

#s1 .card{
  flex-shrink:0;
}



/* ===== Footer Styles ===== */
footer {
  background-color: rgb(102, 9, 102);
  color: #fff;
  padding: 40px 12%;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-about, .footer-links, .footer-contact {
  flex: 1 1 250px;
}

.footer-about h3,
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.footer-about p,
.footer-contact p {
  font-size: 14px;
  line-height: 1.5;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #a9c8ff;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  padding: 20px 0;
}

/* Icon Style */
.footer-social a {
  position: relative;
  font-size: 20px;
  color: whitesmoke;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Underline animation */
.footer-social a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #4f46e5, #22d3ee);
  transition: 0.4s ease;
}

.footer-social a:hover::after {
  width: 100%;
}

/* Hover effects */
.footer-social a:hover {
  transform: translateY(-4px);
}

/* Brand colors on hover */
.footer-social a:nth-child(1):hover { color: #0A66C2; }
.footer-social a:nth-child(2):hover { color: #E1306C; }
.footer-social a:nth-child(3):hover { color: #1877F2; }
.footer-social a:nth-child(4):hover { color: #000000; }
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #dddee1;
  padding-top: 15px;
  font-size: 14px;
  color: whitesmoke;
}

/* Responsive */
@media(max-width:768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }
}



.footer-location{
  display:inline-block;
  margin-top:10px;
  color:#4da3ff;
  text-decoration:none;
  font-weight:500;
}

.footer-location:hover{
  text-decoration:underline;
}

.map-preview{
  width:100%;
  max-width:260px;
  border-radius:12px;
  margin-bottom:10px;
  border:1px solid rgba(255,255,255,0.2);
}


.footer-bottom-note{
  margin-top: 18px;
  padding: 14px 16px;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.6;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-bottom-note strong{
  font-weight: 800;
  color: #ffd166;  /* highlight color */
}
















/* =======================
   CUSTOM CURSOR
======================= */
.cursor {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 2px solid rgb(102, 9, 102);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: 0.1s ease-out;
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: rgb(102, 9, 102);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

a:hover ~ .cursor,
button:hover ~ .cursor {
  transform: translate(-50%, -50%) scale(1.3);
}