html, body{
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
}

/* dot */
.cursor-dot{
width:6px;
height:6px;
background:black;
border-radius:50%;
position:fixed;
top:50%;
left:50%;
pointer-events:none;
z-index:9999;
transform:translate(-50%,-50%);
}

/* ring */
.cursor-ring{
width:35px;
height:35px;
border:2px solid rgba(0,0,0,0.5);
border-radius:50%;
position:fixed;
top:50%;
left:50%;
pointer-events:none;
z-index:9998;
transform:translate(-50%,-50%);
}

header{
  border-bottom: 2px solid rgb(153, 144, 140);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  transition: background 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);

  box-sizing: border-box; /* keep this */
}

header.scrolled {
  background: transparent;
  box-shadow: none;
}

.logo {
    height: 50px;
    overflow: visible;
    position: relative;
}

.logo-gif {
  height: 80px;
  position: absolute;
  top: 50;
  left:-30px;
  bottom: -40px;
  transform: translateY(-30px);
  z-index: 10;
}

nav {
  z-index: 2000;
  pointer-events: auto;
}

nav a {
margin:0 15px;
text-decoration:none;
font-weight: bold;
font-size: larger;
color:#333;
display: inline-block;
transition: transform 0.3s ease, color 0.3s ease;
}

nav a:hover {
    color:#13566c6f;
    transform: scale(1.08);
}

.quote{
background: linear-gradient(rgba(17, 17, 16, 0.179)),
url(images/jigjag.jpeg);
color:white;
border:none;
font-weight: bold;
padding:10px 20px;
border-radius:5px;
cursor:pointer;

transition: all 0.3 ease;
}

.quote:hover {
  transform: scale(1.08);
  box-shadow: 0 0 10px rgba(64, 59, 59, 0.718);
}

.contact {
text-align:center;
padding:80px 20px;
margin-left:calc(-50vw + 50%);
margin-right:calc(-50vw + 50%);
background:linear-gradient(45deg,#1f1d1d,#121212);
color:white;
}

/* .highlight {
    color:aqua;
    font-style: oblique;
} */

.highlight {
  background: linear-gradient(45deg, #ff2f7a, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.contact h1{
margin-top: 15px;
font-size:48px;
margin-bottom:-10px;
}

.contact p {
    font-size: x-large;
    font-weight: 10;
    font-style: oblique;
}

.contact-section {
  background: rgba(17, 17, 16, 0.934);
  /* color: white; */
  padding: 40px 20px;
  overflow-x: hidden; /* 👈 added */
  margin-right: calc(-50vw + 50%);
  margin-left: calc(-50vw + 50%);
  overflow-x: hidden;
}

.highlightt {
    color: rgba(240, 248, 255, 0.277);
}

.contact-section h2 {
    color:aliceblue;
}

.contact-section p{
    color: aliceblue;
}

.contact-section h4{
    color:rgba(240, 248, 255, 0.277);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto; /* 👈 changed from auto */
  margin-right: 40px;
}

.contact-left {
  font-family: 'Poppins', sans-serif;
  padding: 11px;
  /* font-size: 175px; */
}

.office-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.office-info h3 {
  font-size: 22px;
  color: white;
  font-weight: 600;
  margin-top: 15px;
}

.office-info p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.8;
  margin-top: -10px;
}

/* .office-map {
  border-radius: 15px;
  overflow: hidden;
  background: transparent;
  padding: 5px;
  backdrop-filter: blur(10px);
} */

.office-map {
    border-radius: 15px;
    overflow: hidden;
    padding: 2px;
    
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.office-map iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 12px;
  display: block;
  /* filter: grayscale(20%) contrast(1.1); */
  filter: invert(90%) hue-rotate(180deg) brightness(0.8) contrast(1.1);
}

.map-btn {
  font-family: 'Poppins', sans-serif;
  background-color: rgba(17, 17, 16, 0.978);
  font-weight: 500;
  font-size: 14px;
  margin-top: 4px;
}

.contact-left {
  font-family: 'Playfair display', serif;
}

.contact-form {
  grid-column: 2;
}

.contact-form h2 {
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

.contact-form form {
  background: #2633348b;
  padding: 30px;
  border-radius: 15px;
}

.row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #020617;
  color: white;
}

textarea {
  height: 120px;
  margin-top: 10px;
}

button {
  margin-top: 15px;
  padding: 12px;
  background: #5458606c;
  border: none;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

/* footer */

.main-footer {
  background: rgba(17, 17, 16, 0.978);
  /* color: white; */
  padding: 30px 20px 20px;
  margin-right: calc(-50vw + 50%);
  margin-left: calc(-50vw + 50%);
}

.main-footer P{
    color:aliceblue;
}

.main-footer h3{
    color:aliceblue;
}

.main-footer ul{
    color:aliceblue;
}

    #contact-info {
      transition: all 0.4s ease;
    }

.highlight-contact {
  background:#3f85ab;
  border: 2px solid rgb(6, 5, 5);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px blue;
  transition: 0.3 ease;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.footer-about p {
  line-height: 1.6;
}

.social-icons {
  margin-top: 20px;
}

.social-icons i {
  margin-right: 10px;
  background: white;
  color: black;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.social-icons img {
    width: 25px;
    height: 25px;
    background: rgba(17, 17, 16, 0.978);
    padding: 8px;
    border-radius: 30%;
    cursor: pointer;
    transition: 0.3;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.social-icons a {
    display: inline-block;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-contact p,
.footer-payment p {
  margin: 8px 0;
}

.payment-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.payment-icons img {
  width: 90px;
  padding: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
}

.footer-bottom {
  width: 100%;
  position: relative;
  padding: 5px 10px;
  border-top: 1px solid rgba(240, 248, 255, 0.277);
}

.footer-bottom .left-text {
  display: inline-block;
  color: rgb(224, 227, 230);
  margin-left: 182px;
  position: relative;
  top: 6px;
}

.footer-bottom .right-text {
  position: absolute;
  color: rgba(240, 248, 255, 0.277);
  right: 50px;   /* pushes to right end */
  top: 19px;
  display: flex;
  gap: 15px;
  transform: translateY(-50%);
}

.footer-link {
    color: rgba(240, 248, 255, 0.277);
    text-decoration: none;
}

.footer-bottom .right-text a {
  color: #e8e5e6;
  text-decoration: none;
}

.footer-bottom .right-text a:hover {
  color: #b6cac2f4;
  transform: scale(1.08);
}

.menu-toggle {
  display: none;
}

.overlay {
  display: none;
}

@media (max-width: 768px) {

  header {
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgb(153, 144, 140);
  }

  .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .logo-gif {
    position: static !important;   /* 🔥 VERY IMPORTANT */
    transform: none  !important;  /* remove shifting */
    left: 0 !important;
    top: 0 !important;
    display: block;
    margin-left: 0 !important;
    height: 60px;
  }

    .menu-toggle {
    display: block;
    position: absolute;   /* 🔥 IMPORTANT */
    right: 15px;          /* 👉 pushes to right end */
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    z-index: 2001;
    cursor: pointer;
  }

  .overlay {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(5px);

  opacity: 0;
  pointer-events: none;
  transition: 0.3 ease;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

    /* SLIDE MENU */
  .nav-container {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100vh;
  background: white;
  flex-direction: column;
  align-items: flex-start;
  padding: 50px 20px;
  transition: 0.4s ease;
  z-index: 1000;
}

.nav-container nav {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.nav-container.active {
  right: 0;
}

.nav-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav-container nav {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.nav-container nav a {
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
}

  .quote {
    margin-top: 20px;
  }

  .swiper {
    width: 100;
  }

  .swiper-slide {
    display: flex;
    justify-content: center;
  }

  .contact,
.contact-section,
.main-footer {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 100px 15px 40px !important;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr !important;
  gap: 30px !important;
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 100%;
  padding: 0 15px;
}

.contact-form {
  grid-column: auto;
  width: 100% !important;
}

.row {
  flex-direction: column !important;
}

input,
select,
textarea {
  width: 100% !important;
  box-sizing: border-box;
}

*{
  box-sizing: border-box;
}

.footer-bottom {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 15px;
}

.footer-bottom .left-text {
  margin: 0 !important;
  position: static !important;
  font-size: 12px;
}

.footer-bottom .right-text {
  position: static !important;
  transform: none !important;
  display: flex;
  gap: 10px;
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cursor-dot,
.cursor-ring {
  display: none !important;
}

body {
  cursor: auto !important;
}

  .email {
    font-size: 0;
  }

  .email::after {
    content: "support@aarambh\A digital.com";
    font-size: 14px;
  }

  .whatsapp-btn {
    bottom: 15px;
    right: 15px;
    padding: 20px;
    border-radius: 50%;
    /* background: #25D366; clean background */
  }

  .whatsapp-icon {
    width: 60px !important;
    height: 60px !important;
    object-fit: cover;
    display: block;
  }

}



/* DESKTOP FIX */
.nav-container {
  display: flex;
  align-items: center;
}

.nav-container nav {
  display: flex;
  align-items: center;
}

.nav-container a {
  display: inline-block;
}

.nav-container .quote {
  margin-left: 0; /* reset */
}



/* WhatsApp Button - Desktop + Mobile */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 16px;
  z-index: 9999;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

/* Icon */
.whatsapp-icon {
  width: 80px;
  height: 80px;
}