/* ================= 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 */
    }
}
/* =======================
   BUSINESS CONSULTING
======================= */
/* MAIN SECTION */
.business-consulting {
padding: 80px 12%;
background: #ffffff;
margin-top: 30px;
}


/* FLEX CONTAINER */
.bc-container {
display: flex;
align-items: center;
gap: 80px; /* 🔥 LEFT & RIGHT gap */
}


/* LEFT CONTENT */
.bc-left {
flex: 1;
}


.bc-title {
font-size: 44px;
font-weight: 700;
margin-bottom: 20px;
}


.bc-subtitle {
font-size: 20px;
color: #6a1b6f;
margin-bottom: 25px;
}


/* GAP BETWEEN ALL TEXT */
.bc-text {
font-size: 16px;
line-height: 1.8;
margin-bottom: 20px; /* 🔥 content gap */
}

/* RIGHT IMAGE */
.bc-right {
  flex: 0.8;              /* container size reduce */
  text-align: right;
}

.bc-right img {
  width: 100%;
  max-width: 100%;       /* 🔥 image size small */
  height: auto;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.bc-right img {
  animation: rightImageAnim 1.2s ease-out forwards,
             floatImg 4s ease-in-out infinite;
}

@keyframes floatImg {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}
@media (max-width: 900px) {
  .bc-container {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== CONSULTING COVERS SECTION ===== */
.consulting-covers{
  padding: 100px 12%;
  background: radial-gradient(circle at top,
    #1e3a8a,
    #0b1f44 60%,
    #08162f 100%);
  border-radius: 36px;
  text-align: center;
}

.cc-title{
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.cc-subtitle{
  font-size: 17px;
  color: #c7d2fe;
  margin-bottom: 60px;
}

.cc-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cc-card{
  background: linear-gradient(145deg, #132e5c, #0f254a);
  color: #ffffff;
  padding: 36px 26px;
  border-radius: 26px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08),
              0 20px 45px rgba(0,0,0,0.35);
  transition: all 0.45s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;

  /* entry animation */
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.cc-card:hover{
  background: #ffffff;
  color: #0c1d3d;
  transform: translateY(-14px);
  box-shadow: 0 35px 70px rgba(96,165,250,0.45);
}

.cc-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:26px;
  box-shadow: inset 0 0 0 2px rgba(96,165,250,0.6);
  opacity:0;
  transition:0.4s;
}

.cc-card:hover::after{
  opacity:1;
}

.cc-card:nth-child(1){animation-delay:.1s;}
.cc-card:nth-child(2){animation-delay:.2s;}
.cc-card:nth-child(3){animation-delay:.3s;}
.cc-card:nth-child(4){animation-delay:.4s;}
.cc-card:nth-child(5){animation-delay:.5s;}
.cc-card:nth-child(6){animation-delay:.6s;}

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media (max-width: 1024px){
  .cc-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .cc-grid{
    grid-template-columns: 1fr;
  }

  .cc-title{
    font-size: 30px;
  }
}
      /* Section */
.bc-covers {
  padding: 90px 10%;
  background: linear-gradient(135deg, #0c1d3d, #133a7c);
  text-align: center;
  border-radius: 34px;
}

.bc-cover-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 60px;
}

/* Grid Layout */
.bc-box-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Box Style */
.bc-box {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 35px 25px;
  font-size: 17px;
  font-weight: 500;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Accent line */
.bc-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #4da3ff, #ffffff);
}

/* 🔥 WHITE POP EFFECT */
.bc-box:hover {
  background: #ffffff;
  color: #0c1d3d;
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}

/* Glow border */
.bc-box:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 2px solid #4da3ff;
}
/* Subtle Glow */
.bc-box:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: 0 0 30px rgba(77,163,255,0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .bc-cover-title {
    font-size: 32px;
  }

  .bc-box {
    font-size: 16px;
    padding: 28px 20px;
  }
}
/* =======================
   BUSINESS SETUP
======================= */
.business-setup {
  padding: 100px 0;
  background: #ffffff;
}

.bs-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 60px;
  background: #f5f7fb;
  border-radius: 24px;
}

/* LEFT IMAGE */
.bs-left {
  flex: 1;
  text-align: left;
}

/* Continuous floating animation */
.bs-left img {
  width: 100%;
  max-width: 500px; /* optional */
  animation: floatImage 4s ease-in-out infinite;
  transform-origin: center;
}

/* Keyframes for up-and-down movement */
@keyframes floatImage {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px); /* move up 20px */
  }
  100% {
    transform: translateY(0px);
  }
}

/* RIGHT CONTENT */
.bs-right {
  flex: 1;
}


.bs-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 15px;
}

.bs-subtitle {
  font-size: 20px;
  color: #6a0dad;
  margin-bottom: 25px;
}

.bs-text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .bs-container {
    flex-direction: column;
    text-align: center;
  }

  .bs-left {
    text-align: center;
  }
}
/* Add this CSS */
.bs-left img {
  width: 100%;
  max-width: 500px; /* optional */
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0; /* start hidden */
}

/* Keyframes for fade-in and slide-up */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px); /* start slightly down */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* end at normal position */
  }
}

.bs-list {
  list-style-type: circle;
  padding-left: 20px;
}

.bs-list li {
  margin-bottom: 6px;
  font-size: 14px;
}

/*OPTINOL*/
/* Box wrapper grid: 4 columns desktop */
 .bc-box-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 boxes per row */
  gap: 25px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .bc-box-wrapper {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

 @media (max-width: 600px) {
  .bc-box-wrapper {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}

/* Section styling */
.who-we-serve {
  padding: 80px 12%;
  background:linear-gradient(135deg, #edf4ff, #dce4f0);
  text-align: center;
  margin-top: 60px;
  border-radius: 34px;
}

/* Section heading */
.wws-heading {
  font-size: 36px;
  font-weight: 700;
  color: #0c1d3d;
  margin-bottom: 50px;
}

/* Grid wrapper for 4 boxes */
.wws-box-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* mela 2, kila 2 */
  gap: 35px;
  max-width: 900px;
  margin: 0 auto; /* center align */
}

/* Individual boxes */
.wws-box {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-size: 18px;
  font-weight: 500;
  color: #133a7c;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.8s forwards;
  text-align: center;
}

/* Images inside boxes */
.wws-box img {
  width: 80px; /* size of icon/image */
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* Box text */
.wws-box p {
  margin: 0;
}

/* Staggered animation */
.wws-box:nth-child(1){ animation-delay: 0.1s; }
.wws-box:nth-child(2){ animation-delay: 0.2s; }
.wws-box:nth-child(3){ animation-delay: 0.3s; }
.wws-box:nth-child(4){ animation-delay: 0.4s; }

/* Hover effect */
.wws-box:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  background: #e6f0ff;
}

/* Fade-in animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .wws-box-wrapper {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablet */
  }
}

@media (max-width: 600px) {
  .wws-box-wrapper {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}

.why-choose {
  padding: 80px 10%;
  background: linear-gradient(135deg, #e9fff4, #bff3dc);;
  margin-top: 60px;
  border-radius: 34px;
}

.why-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Left Image */
.why-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
/* Image container */
.why-image {
  overflow: hidden;
  border-radius: 16px;
}

/* Image */
.why-image img {
  width: 100%;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* 🔥 Popup effect on hover */
.why-image:hover img {
  transform: scale(1.12);
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}

/* Right Content */
.why-content {
  flex: 1;
}

.bs-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #0c1d3d;
}

.bs-list {
  list-style: none;
  padding: 0;
}

.bs-list li {
  font-size: 16px;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #333;
}

/* Custom bullet icon */
.bs-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #133a7c;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .why-container {
    flex-direction: column;
    text-align: center;
  }

  .bs-list li {
    text-align: left;
  }
}
/* =======================
   M&A SECTION
======================= */
.ma-section {
  padding: 60px 10%;
  background: #f5f7fb;
  border-radius: 60px;
  margin-top: 60px;
}

.ma-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Left content */
.ma-content {
  flex: 1;
}

.ma-content h1 {
  font-size: 42px;
  color: #0c1d3d;
  margin-bottom: 12px;
}

.ma-content h3 {
  font-size: 20px;
  color: #133a7c;
  margin-bottom: 25px;
  font-weight: 500;
}

.ma-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Right image */
.ma-image {
  flex: 1;
  overflow: hidden;
  border-radius: 18px;
}

.ma-image img {
  width: 100%;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  border-radius: 18px;
}

/* 🔥 Image popup effect */
.ma-image:hover img {
  transform: scale(1.1);
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .ma-container {
    flex-direction: column;
    text-align: center;
  }

  .ma-content h1 {
    font-size: 32px;
  }
}

.ma-services {
  padding: 80px 10%;
  background: linear-gradient(135deg, #e9fff4, #bff3dc);
  text-align: center;
  border-radius: 60px;
  margin-top: 60px;
}

.ma-services h2 {
  font-size: 36px;
  color: #0b3d2e;
  margin-bottom: 50px;
}

/* Grid */
.ma-box-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Box */
.ma-box {
  background: #ffffff;
  padding: 22px 20px;
  border-radius: 16px;
  font-size: 15.5px;
  font-weight: 500;
  color: #333;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
  position: relative;
}

/* Left accent line */
.ma-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: #6ed6a8;
  border-radius: 16px 0 0 16px;
}

/* Hover pop */
.ma-box:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.ma-types {
  padding: 80px 10%;
  background: #f5f7fb;
  text-align: center;
    border-radius: 60px;
  margin-top: 60px;
}

.ma-types h2 {
  font-size: 36px;
  color: #0c1d3d;
  margin-bottom: 45px;
}

/* Grid */
.ma-type-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Box */
.ma-type-box {
  background: linear-gradient(135deg, #e9fff4, #bff3dc); /* light green double color */
  padding: 30px 22px;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 600;
  color: #0b3d2e;
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  transition: all 0.35s ease;
  position: relative;
}

/* Subtle border */
.ma-type-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 2px solid rgba(255,255,255,0.6);
}

/* Hover pop */
.ma-type-box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 22px 45px rgba(0,0,0,0.3);
}

.why-micah {
  padding: 90px 10%;
  background: #f5f7fb;
  border-radius: 60px;
  margin-top: 60px;
}

.why-micah-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Left content */
.why-micah-content {
  flex: 1;
}

.why-micah-content h2 {
  font-size: 38px;
  color: #0c1d3d;
  margin-bottom: 30px;
}

/* List */
.why-micah-list {
  list-style: none;
  padding: 0;
}

.why-micah-list li {
  background: linear-gradient(135deg, #e9fff4, #bff3dc);
  margin-bottom: 15px;
  padding: 16px 22px;
  border-radius: 14px;
  font-size: 15.5px;
  font-weight: 600;
  color: #0b3d2e;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
}

.why-micah-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.25);
}

/* Capsule Image Style */
.why-micah-image{
  width: 100%;
  max-width: 320px;
  height: 550px;              /* correct height */
  margin: auto;
  overflow: hidden;
  border-radius: 160px;       /* capsule shape */
  box-shadow: 0 18px 40px rgba(0,0,0,0.30);
  transition: transform 0.4s ease;
}

.why-micah-image img{
  width: 100%;
  height: 100%;               /* full fill */
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Image zoom popup */
.why-micah-image:hover img {
  transform: scale(1.08);
}

.why-micah-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .why-micah-container {
    flex-direction: column;
    text-align: center;
  }

  .why-micah-content h2 {
    font-size: 30px;
  }

  .why-micah-list li:hover {
    transform: none;
  }
}

        /*======CONTACT======*/
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Poppins", sans-serif;
}

.contact-section{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  background: rgb(102, 9, 102);
  padding:60px 10%;
  border-radius: 60px;
  margin-top: 60px; 
}

.contact-container{
  width:100%;
  max-width:1100px;
  background:#ffffff;
  border-radius:18px;
  display:flex;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,0.3);
}

/* LEFT SIDE */
.contact-left{
  flex:1;
  padding:60px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.contact-left h2{
  font-size:38px;
  margin-bottom:15px;
  color:#0f172a;
}

.contact-left p{
  font-size:16px;
  line-height:1.7;
  color:#444;
  margin-bottom:30px;
}

/* BUTTON */
.cta-btn{
  width:fit-content;
  padding:14px 34px;
  border:none;
  border-radius:50px;
  background:linear-gradient(135deg, #c72bb5,#454546);
  color:#fff;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
  box-shadow:0 10px 25px rgba(37,99,235,0.4);
}

.cta-btn:hover{
  transform:translateY(-3px);
  background:linear-gradient(135deg,#c72bb5,#0f172a);
}

/* RIGHT IMAGE */
.contact-right{
  flex:1;
}

.contact-right img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* RESPONSIVE */
@media(max-width:900px){
  .contact-container{
    flex-direction:column;
  }

  .contact-left{
    padding:40px;
    text-align:center;
  }

  .cta-btn{
    margin:0 auto;
  }
}


/* =======================
   FADE ANIMATION
======================= */
.fade {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}


/* Footer full width */
.site-footer{
  width:100vw;
  margin-top: 40px;
  background:#5b0b5f;   /* your purple */
  color:#fff;
  position:relative;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
  overflow:hidden;
}

/* Footer inner layout */
.site-footer .footer-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:40px 20px 18px;
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:30px;
}

.site-footer h3{
  margin:0 0 12px;
  font-size:26px;
  font-weight:700;
}
.site-footer p, .site-footer a{
  color:#fff;
  opacity:0.92;
  text-decoration:none;
  line-height:1.7;
  font-size:16px;
}

.footer-links a{
  display:block;
  margin:10px 0;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.25);
  text-align:center;
  padding:14px 10px;
  font-size:14px;
  opacity:0.9;
}

/* Contact icons align */
.contact-line{
  display:flex;
  align-items:center;
  gap:10px;
  margin:10px 0;
}

/* Social icons */
.footer-social{
  margin-top:14px;
  display:flex;
  gap:14px;
}
.footer-social a{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(255,255,255,0.12);
  transition:0.25s;
}
.footer-social a:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,0.20);
}

/* Responsive */
@media (max-width:900px){
  .site-footer .footer-wrap{
    grid-template-columns: 1fr;
  }
}


/* ===== Footer Styles ===== */
footer {
  background-color: rgb(102, 9, 102);
  color: #fff;
  padding: 40px 12%;
  font-family: 'Poppins', sans-serif;
  width: 1200px;
  margin-left: 0%;
  width:100vw;
  margin-top: 40px;
  
  position:relative;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
  overflow:hidden;
}

.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);
}
