* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;

  font-style: normal;
}

/* TOP STRIP */
.top-strip {
  background: #222;
  color: #fff;
  font-size: 13px;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  padding-left: 40px;
}
.logo img {
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

#navMenu {
  padding-right: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar nav ul li a {
  position: relative;
  text-decoration: none;
  color: #222;
  padding: 10px 0;
  font-weight: 500;
}

.navbar nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #7a1bb9; /* your purple */
  transition: width 0.3s ease;
}

.navbar nav ul li a:hover::after {
  width: 100%;
}
nav ul li {
  position: relative;
}


/* DROPDOWN */
/* parent */
/* IMPORTANT FIX */
nav ul li.dropdown{
  position: relative;
}

/* REAL DROPDOWN BOX */
nav ul li .dropdown-menu{
  position: absolute;
  top: 100%;
  left: 0;
  display: none;

  /* FIX WIDTH + ALIGNMENT */
  width: max-content;
  min-width: 220px;
  max-width: 260px;

  background: #ffffff;
  padding: 8px 0;
  border-radius: 6px;

  /* FIX TRANSPARENT LOOK */
  backdrop-filter: none;
  opacity: 1;

  /* SHADOW */
  box-shadow: 0 12px 28px rgba(0,0,0,.18);

  z-index: 9999;
}

/* SHOW STATE */
.dropdown-menu.show{
  display: block;
}

/* LINKS */
.dropdown-menu li a{
  display:block;
  padding:12px 18px;
  white-space:nowrap;
}


/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 22px;
}
@media (max-width: 768px) {

  #navMenu ul {
    flex-direction: column;
  }

  #navMenu ul li {
    width: 100%;
  }

  .dropdown-menu {
    position: static;        /* KEY FIX */
    box-shadow: none;
    background: #f7f7f7;
    padding-left: 15px;
  }

  .dropdown-menu li a {
    padding: 12px;
    display: block;
  }
}




/* ===== DESKTOP DROPDOWN FIX ===== */
@media (min-width: 992px){

  /* allow dropdown to escape nav */
  .navbar,
  nav,
  nav ul{
    overflow: visible !important;
  }

  /* stop flex stretching */
  nav ul{
    display: flex;
    align-items: center;
  }

  nav ul li{
    position: relative;
    flex: 0 0 auto;   /* ⭐ VERY IMPORTANT */
  }

  /* dropdown box */
  nav ul li .dropdown-menu{
    position: absolute;
    top: 100%;
    left: 0;

    display: none;
    width: max-content;
    min-width: 220px;

    background: #fff;
    border-radius: 8px;
    padding: 8px 0;

    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    z-index: 9999;
  }

  .dropdown-menu.show{
    display: block;
  }

  .dropdown-menu li{
    width: 100%;
  }

  .dropdown-menu li a{
    display: block;
    padding: 12px 18px;
    white-space: nowrap;
  }
}


/* HERO */
 .hero{
  position:relative;
  height:75vh;
  overflow:hidden;
}

.slider{
  display:flex;
  height:100%;
  transition:transform 0.9s cubic-bezier(.77,0,.18,1);
}

.slide{
  min-width:100%;
  height:100%;
  position:relative;
  overflow:hidden;
}

/* IMAGE */
.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1);
  transition:transform 6s ease;
}

/* ACTIVE ZOOM EFFECT */
.slide.active img{
  transform:scale(1.12);
}

/* OVERLAY */
.slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to right, rgba(0,0,0,.65), rgba(0,0,0,.3));
}

/* HERO TEXT BOX */
.hero-content{
  position:absolute;
  left:8%;
  bottom:22%;
  max-width:600px;
  color:#fff;
  z-index:2;

  /* GLASS STYLE */
  
}

/* TEXT ANIMATION */
.slide.active .hero-content{
  opacity:1;
  transform:translateX(0);
}
.hero-content{
  position:absolute;
  left:8%;
  bottom:22%;
  max-width:650px;
  color:#fff;
  z-index:2;

  /* clean look instead of glass */
  padding:0;

  opacity:0;
  transform:translateX(-60px);
  transition:all .9s ease;
}

.slide.active .hero-content{
  opacity:1;
  transform:translateX(0);
}

/* STRONG TEXT VISIBILITY */
.hero-content h1{
  font-size:48px;
  line-height:1.2;
  margin-bottom:12px;
  text-shadow:0 4px 20px rgba(0,0,0,0.55);
}

.hero-content p{
  font-size:20px;
  margin-bottom:22px;
  text-shadow:0 3px 12px rgba(0,0,0,0.55);
}

/* OPTIONAL small line under heading */
.hero-content h1::after{
  content:"";
  display:block;
  width:80px;
  height:4px;
  background:#740183;
  margin-top:14px;
  border-radius:3px;
}

/* MOBILE */
@media(max-width:768px){
  .hero-content{
    left:20px;
    right:20px;
    bottom:18%;
  }

  .hero-content h1{font-size:28px;}
  .hero-content p{font-size:10px;}
  
 
}

@media (max-width:768px){
  .slider-btn{
    display:none;
  }
}



.hero-content h1{
  font-size:46px;
  margin-bottom:12px;
  line-height:1.2;
}

.hero-content p{
  font-size:20px;
  margin-bottom:20px;
}

.hero-btn{
  display:inline-block;
  padding:14px 32px;
  background:#740183;
  color:#fff;
  text-decoration:none;
  border-radius:40px;
  font-weight:600;
  transition:.3s;
}

.hero-btn:hover{
  background:#5e0f7a;
  transform:translateY(-2px);
}

/* ARROWS */
.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,.45);
  color:#fff;
  border:none;
  font-size:26px;
  padding:10px 14px;
  cursor:pointer;
  z-index:5;
  border-radius:6px;
}

.prev{left:20px;}
.next{right:20px;}

.slider-btn:hover{
  background:rgba(0,0,0,.8);
}



/* FLOATING BUTTONS */
.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px; /* This creates the perfect space between them */
  z-index: 9999;
}

.floating-contact a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size:24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.whatsapp-btn { background-color: #25d366; }
.phone-btn { background-color: #007bff; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav {
    display: none;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
  }

  nav ul {
    flex-direction: column;
    padding: 20px;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 24px;
    padding:0px 8px;
  }

  .top-strip {
    display: none;
  }
}

.acp-section {
  padding: 80px 20px;
  background: #ffffff;
}

.acp-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT CONTENT */
.acp-content h2 {
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #111;
}

.acp-content h2 span {
  color: #610064; /* brand purple */
}

.acp-content p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.acp-content ul {
  list-style: none;
  padding: 0;
}

.acp-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #444;
}

.acp-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #97019c;
  font-size: 20px;
  line-height: 1;
}

/* RIGHT IMAGE */
.acp-image {
  position: relative;
  width: 520px;
  /* adjust as needed */
  max-width: 100%;
}

.acp-image img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  border-radius: 4px; /* keep subtle, professional */
}

.acp-image .image-bg {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 100%;
  height: 100%;
  background-color: #59005c; /* ACP red */
  z-index: 1;
  border-radius: 4px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .acp-container {
    grid-template-columns: 1fr;
  }

  .acp-content h2 {
    font-size: 24px;
  }
}
@media (max-width: 900px) {
  .acp-container {
    grid-template-columns: 1fr;
    margin-left: 20px;
  }

  .acp-content h2 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .acp-container {
    flex-direction: column;
  }

  .acp-content h2 {
    font-size: 26px;
  }

  .acp-content p {
    font-size: 15px;
  }

  .btn-about {
    display: inline-block;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .acp-content h2 {
    font-size: 22px;
  }

  .acp-section {
    padding: 50px 0;
  }
  .acp-image {
    position: relative;
    width: 320px;
    /* adjust as needed */
    max-width: 100%;
  }
}
.expertise-section {
  padding: 90px 20px;
  background: #fff;
}

.expertise-container {
  max-width: 1200px;
  margin: auto;
}

.expertise-header {
  text-align: center;
  margin-bottom: 50px;
}

.expertise-header h2 {
  font-size: 32px;
  letter-spacing: 2px;
}

.expertise-header h2 span {
  color: #97019c;
}

.expertise-header p {
  margin-top: 10px;
  font-size: 17px;
  color: #555;
}

/* SLIDER / GRID */

.expertise-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .expertise-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .expertise-slider {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.expertise-section {
  padding: 80px 20px;
}

.expertise-section .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.expertise-section .section-title {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 1px;
}

.expertise-section .section-title span {
  color: #97019c;
  font-weight: 600;
}

.expertise-section .section-subtitle {
  margin: 10px 0 50px;
  font-size: 18px;
  color: #666;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.expertise-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
  overflow: hidden;
  border-radius: 14px;
}

.card-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.expertise-card:hover img {
  transform: scale(1.05);
}

.expertise-card h3 {
  margin: 20px 0 10px;
  font-size: 20px;
}

.expertise-card h3 span {
  color: #97019c;
}

.expertise-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.expertise-section .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: #1b003d;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
}

.expertise-section .btn:hover {
  background: #97019c;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}
.delay-2 {
  transition-delay: 0.3s;
}
.delay-3 {
  transition-delay: 0.45s;
}

/* Responsive */
@media (max-width: 992px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .expertise-section .section-title {
    font-size: 28px;
  }
}

/* Section */
.Commercial-section {
  width: 100%;

  padding: 20px 0;
}

/* Container */
.Commercial-container {
  max-width: 1440px;
  height: 350px;
  margin: auto;
  display: flex;
  overflow: hidden;
  border-radius: 6px;
}

/* Left Content */
.Commercial-content {
  flex: 1;
  padding: 35px 40px;
  color: #fff;
  background: linear-gradient(135deg, #59005c, #8e2dbf);
}

.Commercial-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #ffd24d;
  padding-left: 30px;
}

.Commercial-content p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #f2e9f7;
  padding-left: 30px;
}
.acp-head h2 {
  text-align: center;
}
.acp-head p {
  text-align: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
/* Right Image */
.Commercial-image {
  flex: 1;
}

.Commercial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .Commercial-container {
    flex-direction: column;
    height: auto;
  }

  .Commercial-image {
    height: 250px;
  }
  .acp-head h2{
      font-size:32px;
  }
}

/* why choose us */
.why-card i {
  font-size: 42px;
  color: #7a7a7a; /* Default black */
  margin-bottom: 15px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

/* Change icon color on hover */
.why-card:hover i {
  color: #97019c; /* Hover color (change if needed) */
  transform: scale(1.2);
}

.why-section {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 80px 0px;
  text-align: center;
}

.section-title {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 60px;
  color: #555;
}

.section-title span {
  color: #97019c;
  font-weight: 500;
}

.why-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}

.why-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #97019c; /* underline color */
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

/* On hover – underline expands */
.why-card:hover::after {
  width: 60%;
}
.why-card:hover p {
  color: #97019c;
  transition: 0.3s;
}

.why-card {
  position: relative;
  padding-bottom: 15px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.why-card:hover i {
  transform: scale(1.2);
  transition: 0.3s;
}

/* brand section */

.brands-section {
  background: #eaeaea;
  padding: 70px 20px;
  text-align: center;
  overflow: hidden;
}

.brands-title {
  font-size: 36px;
  font-weight: 300;
  color: #555;
  margin-bottom: 40px;
}

.brands-title span {
  color: #97019c;
  font-weight: 500;
}

/* Slider wrapper */
.brands-slider {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  position: relative;
}

/* Track */
.brands-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scroll 25s linear infinite;
}

/* Logo box */
.brand-logo {
  height: 40px;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Hover effect */
.brand-logo:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Pause animation on hover */
.brands-slider:hover .brands-track {
  animation-play-state: paused;
}

/* Keyframes */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .brands-track {
    gap: 20px;
  }

  .brand-logo {
    height: 20px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .brands-title {
    font-size: 30px;
    font-weight: 300;
    color: #555;
    margin-bottom: 40px;
  }
}
/* about us section */

.about-pro {
  padding: 100px 20px;
  background: linear-gradient(120deg, #f9f6ff, #ffffff);
}

.about-wrap {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.about-text {
  flex: 1;
}

.about-text .tag {
  color: #830083;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  font-family: montseret;
}

.about-text h2 {
  font-size: 42px;
  font-weight: 400;
  margin: 15px 0 25px;
  color: #222;
}

.about-text h2 span {
  color: #830083;
}

.about-text p {
  color: #555;
  line-height: 1.8;
  max-width: 520px;
}

.about-points {
  margin: 25px 0;
}

.about-points div {
  margin-bottom: 10px;
  font-weight: 500;
  color: #333;
}

.btn-about {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: #830083;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-about:hover {
  background: #830083;
}

/* RIGHT IMAGE */
.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

/* Badge */
.experience-badge {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: #830083;
  color: #fff;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
}

.experience-badge strong {
  font-size: 28px;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .about-wrap {
    flex-direction: column;
  }
  .experience-badge {
    left: 20px;
  }
}

/* Initial hidden state */
.about-pro .about-text,
.about-pro .about-image {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

/* Active state */
.about-pro.animate .about-text,
.about-pro.animate .about-image {
  opacity: 1;
  transform: translateY(0);
}

/* Image zoom */
.about-pro.animate .about-image img {
  animation: zoomSoft 1s ease forwards;
}

/* Floating badge */
.experience-badge {
  animation: floatBadge 3s ease-in-out infinite;
}

/* Keyframes */
@keyframes zoomSoft {
  from {
    transform: scale(0.92);
  }
  to {
    transform: scale(1);
  }
}

@keyframes floatBadge {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

.our-process {
  padding: 80px 20px;
  text-align: center;
  background: #faf8ff;
}

.our-process h2 {
  font-size: 36px;

  margin-bottom: 10px;
}

.subtitle {
  margin-bottom: 60px;
}

.process-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.process-step {
  width: 180px;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.process-step:nth-child(1) {
  animation-delay: 0.1s;
}
.process-step:nth-child(3) {
  animation-delay: 0.3s;
}
.process-step:nth-child(5) {
  animation-delay: 0.5s;
}
.process-step:nth-child(7) {
  animation-delay: 0.7s;
}
.process-step:nth-child(9) {
  animation-delay: 0.9s;
}

.circle {
  width: 70px;
  height: 70px;
  background: #830083;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  margin: 0 auto 15px;
  animation: pulse 2s infinite;
}

.process-step h4 {
  color: #2d1a5a;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: #555;
}

.process-step h4.active {
  color: #ffa602;
}

.line {
  width: 80px;
  height: 2px;
  background: #cdbdff;
  margin-top: 35px;
}

/* Animations */
@keyframes fadeUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(146, 1, 151, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(106, 61, 240, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(106, 61, 240, 0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .process-wrapper {
    flex-direction: column;
    align-items:center;
    justify-content:center;
   
  }
  .line {
    width: 2px;
    height: 40px;
    margin: 10px auto;
  }
}

.contact-pro {
  padding: 80px 20px;
  background: #faf8ff;
}

.contact-pro-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  align-items: stretch;
}

/* COMMON CARD */
.contact-card {
  flex: 1;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  background: #fff;
}

/* MAP */
.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FORM */
.form-card {
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-card h3 {
  margin-bottom: 12px;
  color: #7f0683;
  font-size: 22px;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card input,
.form-card textarea {
  padding: 4px 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.form-card textarea {
  resize: none;
  height: 70px;
}

.form-card button {
  margin-top: 6px;
  padding: 12px;
  background: linear-gradient(135deg, #7a3df0, #720072);
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-pro-wrapper {
    flex-direction: column;
  }
}

.contact-card {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}

.contact-pro.animate .contact-card {
  opacity: 1;
  transform: translateY(0);
}

/* footer section */
.site-footer {
  background: linear-gradient(135deg, #570072, #440044);
  color: #fff;
  padding-top: 30px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr ; /* Address column added */
  gap: 20px;
  padding: 0 ;
}

/* BRAND */
.footer-col.brand h2 {
  font-size: 30px;
  line-height: 0.8;
}

.footer-col.brand h2 span {
  font-weight: 300;
  font-size: 18px;
}

.footer-col p {
  margin: 20px 0;
  color: #e6d9ff;
  line-height: 1.7;
}

/* BUTTON */
.footer-btn {
  display: inline-block;
  background: #ffb300;
  color: #4b006e;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* HEADINGS */
.footer-col h4 {
  margin-bottom: 13px;
  font-size: 20px;
  font-weight: 200;
}

/* LIST */
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  display: flex;
  align-items: center; /* keeps dot aligned on multi-line text */
  gap: 10px;
}

.footer-col ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #ffcc4d;
  border-radius: 50%;
  margin-top: 7px; /* perfect vertical alignment */
  flex-shrink: 0;
}


.footer-col ul li {
  margin-bottom: 10px;
  color: #e6d9ff;
  cursor: pointer;
  transition: 0.3s;
}
.footer-col ul li a{
   text-decoration: none;
   color: #e6d9ff;
}

.footer-col ul li:hover {
  color: #ffcc4d;
  transform: translateX(15px);
}

/* SOCIAL */


.footer-social {
  text-align: center;
  margin: 15px 0 15px;
}



.footer-social a {
  display: inline-block;
  margin: 0 8px;
  font-size: 20px;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ffcc4d;
  transform: translateY(-4px);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 15px;
  text-align: center;
  font-size: 14px;
  color: #e6d9ff;
}





/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
    padding:10px;
  }
  .footer-col h4 {
    text-align: left;
  }
  .footer-col ul li::before {
    margin-top: 6px;
  }
  .footer-brand {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .footer-brand .btn,
  .footer-brand .social-icons {
    margin-left: 0;
    justify-content: flex-start;
  }
}
