@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
/* ================= GLOBAL SAFETY FIX ================= */
* {
    box-sizing: border-box;
}

body {
      font-family: 'poppins',sans-serif;

    margin: 0;
    padding: 0;
    background: var(--vanilla-bg);
    overflow-x: hidden;   /* ✅ prevents horizontal overlap */
}

/* ================= FORCE PAGE FLOW RESET ================= */
main, section {
    width: 100%;
    display: block;
    position: relative;
}

/* ================= HERO FIX (MOST IMPORTANT) ================= */
.hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px 5% 60px;
    margin: 0;

    background: linear-gradient(135deg, var(--dark-bg), var(--gold-dark));
    color: var(--text-light);

    min-height: auto;
    overflow: hidden;
}

/* ================= NAV FIX ================= */
.hero nav {
    position: relative !important;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 10px 0;
font-size: 17px;
font-weight: 500;
right: -60px;   
 font-family: 'Poppins';
}
/* NAV LIST */
.hero nav ul {
    display: flex;
    flex-wrap: wrap;  /* ✅ prevents overflow */
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}



/* ================= DROPDOWN FIX ================= */
.hero .dropdown-menu {
    position: absolute;
    z-index: 9999;
}

.hero .submenu {
    position: absolute;
    z-index: 9999;
}

/* ================= SECTION GAP FIX ================= */
section {
    margin-bottom: 40px;
}

/* LINKS */
.hero nav ul li a {
    color: #fff;
    text-decoration: none;
   
    padding: 6px 8px;
    transition: 0.3s;

    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

/* HOVER MAIN LINK */
.hero nav ul li a:hover {
    color: rgb(169, 169, 14);
    transform: translateY(-2px);
}

/* ================= DROPDOWN ================= */
.hero nav ul li {
    position: relative;
}

/* dropdown box */
.hero .dropdown-menu {
    display: none;
    position: absolute;
    top: 120%;
    right: 0;
left:auto;
    min-width: 220px;
    background: #fff;

    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);

    padding: 8px 0;
}

/* show dropdown */
.hero .dropdown:hover > .dropdown-menu {
    display: block;
}

/* dropdown items */
.hero .dropdown-menu li a {
    color: #2b1a0f;
    text-shadow: none;

    display: block;
    padding: 10px 18px;
}

/* ⭐ ICECREAM PINK HOVER */
.hero .dropdown-menu li a:hover {
    background: #ffb6c1;   /* icecream pink */
    color: #2b1a0f;
}

/* ================= SUBMENU ================= */
.hero .dropdown-sub {
    position: relative;
}

/* submenu box */
.hero .submenu {
    display: none;
    position: absolute;
    top: 0;
    right: auto;
left:100%;
    min-width: 200px;
    background: #fff;

    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* show submenu */
.hero .dropdown-sub:hover > .submenu {
    display: block;
}

/* submenu items */
.hero .submenu li a {
    display: block;
    padding: 10px 15px;
    color: #2b1a0f;
    text-shadow: none;
}

/* ⭐ ICECREAM PINK HOVER SUBMENU */
.hero .submenu li a:hover {
    background: #ffc0cb;   /* icecream pink */
    color: #2b1a0f;
}



/* Hero Section */
.hero {
 
    justify-content: flex-start; /* text left, image right */
    padding: 13px 5%;
  background-image: url("../images/contact1.png");
         background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url("../images/contact1.png");

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    position: relative;
    display: flex;
    align-items: center;      /* vertical alignment fix */
    justify-content: space-between;

    min-height: 60vh;         /* controlled height */
    overflow: hidden;     
       /* ⭐ prevents topbar overlap */
         height: 700px;        /* jitna cut chahiye */
}

/* ================= MOBILE BACKGROUND FIX ONLY ================= */
@media screen and (max-width: 768px) {

  .hero {
    background-position: center top;   /* ⭐ important fix */
    background-size: cover;
    background-repeat: no-repeat;

    /* better control for mobile visibility */
    max-height: 68vh;
  }

}

/* ================= GLOBAL RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fffaf0;
    overflow-x: hidden;
    font-family: 'poppins,'sans-serif;
}

/* ================= SECTION FLOW ================= */
main, section {
    width: 100%;
    display: block;
}

section {
    margin-bottom: 50px;
}
/* ================= NAV ================= */
.hero nav {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1000;
}

/* NAV LIST */
.hero nav ul {
    display: flex;
    gap: 10px;
    list-style: none;
    flex-wrap: wrap;
}

.hero nav ul li {
    position: relative;
}

/* NAV LINKS */
.hero nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 7px 10px;
    display: block;
    transition: 0.3s;
}

.hero nav ul li a:hover {
      color: #ffd700 !important;   /* strong gold yellow */

    transform: translateY(-2px);

}

/* ================= DROPDOWN ================= */
.hero .dropdown {
    position: relative;
}

.hero .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
 left: 50%;
    transform: translateX(-50%);

    min-width: 220px;
    background: #fff;
    border-radius: 10px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 9999;

    padding: 8px 0;
}

.hero .dropdown:hover > .dropdown-menu {
    display: block;
}

.hero .dropdown-menu li {
    position: relative;
}

.hero .dropdown-menu li a {
    color: #2b1a0f;
    padding: 10px 15px;
    display: block;
}

.hero .dropdown-menu li a:hover {
        background: #be5462;   /* icecream pink */
    color: #ffd700 !important;   /* strong gold yellow */

    transform: translateY(-2px);


      }

/* ================= SUBMENU ================= */
.hero .dropdown-sub {
    position: relative;
}

.hero .submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;

    min-width: 200px;
    background: #fff;
    border-radius: 10px;

    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    z-index: 10000;

    padding: 8px 0;
}

.hero .dropdown-sub:hover > .submenu {
    display: block;
}

.hero .submenu li a {
    color: #2b1a0f;
    padding: 10px 12px;
    display: block;
    white-space: nowrap;
}

.hero .submenu li a:hover {
   
        background: #be5462;   /* icecream pink */
    color: #ffd700 !important;   /* strong gold yellow */

  color: rgb(241, 241, 28);
    transform: translateY(-2px);}


/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {
    .hero nav {
        justify-content: center;
    }

    .hero nav ul {
        flex-direction: column;
        align-items: center;
    }

    .hero .dropdown-menu,
    .hero .submenu {
        position: static;
        display: none;
        box-shadow: none;
        width: 100%;
    }
    /* icons */
    .dropdown > a::after{
        content:"▼";
        font-size:12px;
        margin-left:10px;
    }

    .dropdown-sub > a::after{
        content:"▶";
        font-size:12px;
        margin-left:10px;
    }

    .hero .dropdown:hover .dropdown-menu {
        display: block;
    }

    .hero .dropdown-sub:hover .submenu {
        display: block;
    }
}



/* ================= DESKTOP (DEFAULT) ================= */
.hamburger {
    display: none;   /* 🔥 laptop me hide */
}



@media screen and (max-width: 900px) {

    /* ================= HAMBURGER ================= */
    .hamburger {

        display: flex;

        flex-direction: column;
        gap: 5px;

        cursor: pointer;

        position: absolute;

        top: 20px;
        right: 60px;

        z-index: 100000;
    }

    .hamburger span {

        width: 28px;
        height: 3px;

        background: #fff;

        border-radius: 5px;

        display: block;
    }

    /* ================= MENU ================= */
    .menu {

        position: fixed;

        top: 74px;
        left: -100%;

        width: 80%;
height: calc(100vh - 147px); /* 🔥 bottom space kam feel hoga */
        background: linear-gradient(135deg, #2b1a0f, #b8860b);

        display: flex;
        flex-direction: column;

        overflow-y: auto;

        transition: 0.3s ease;

        z-index: 99999;
        max-height: 68vh;   /* 👈 yaha control karo (try 60-70vh) */

        padding-top: 20px;
    }
    .menu.active {
        left: 0;
    }
/* MENU SCROLLBAR HIDE (KEEP SCROLL WORKING) */
.menu {
    overflow-y: auto;   /* scroll chalega */
    scrollbar-width: none; /* Firefox */
}

/* Chrome, Edge, Safari */
.menu::-webkit-scrollbar {
    display: none;
}
    /* ================= MENU ITEMS ================= */
    .menu li {

        width: 100%;

        padding: 0;
        list-style: none;
    }

    /* ================= LINKS ================= */
    .menu li a {

        color: #fff;

        display: block;

        padding: 14px 18px;

        text-decoration: none;
    }

    /* ================= REMOVE DESKTOP HOVER ================= */
    .dropdown:hover > .dropdown-menu,
    .dropdown-sub:hover > .submenu {

        display: none !important;
    }

    /* ================= DROPDOWN ================= */
    .dropdown-menu {

        display: none;

        position: static !important;

        width: 100%;

        background: rgba(255,255,255,0.08);

        padding-left: 10px;

        box-shadow: none;

        border-radius: 0;
    }

    .dropdown.open > .dropdown-menu {

        display: block !important;
    }

    /* ================= SUBMENU ================= */
    .submenu {

        display: none;

        position: static !important;

        width: 100%;

        margin-left: 0 !important;

        margin-top: 5px;

        padding-left: 15px;

        background: rgba(255,255,255,0.05);

        border-left: 2px solid rgba(255,255,255,0.3);

        box-shadow: none;
    }

    .dropdown-sub.open > .submenu {

        display: block !important;
    }


@media screen and (max-width: 900px) {

  /* 🔥 FORCE RESET EVERYTHING RELATED TO SIDE POSITION */
  .dropdown-menu,
  .submenu {

    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;

    transform: none !important;

    width: 100% !important;

    float: none !important;
  }

  /* dropdown behavior */
  .dropdown.open > .dropdown-menu {
    display: block !important;
  }

  .dropdown-sub.open > .submenu {
    display: block !important;
  }

  /* remove any side effects */
  .hero .submenu {
    margin-left: 0 !important;
  }
}
}

/* REMOVE BOX */
.hero-content {
  
 position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* perfect center */

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    z-index: 2;
    margin-top: -20px;   /* 👈 top se gap control */

}

/* TEXT STYLE */
.hero-title {
    font-size: 70px;
    font-family: 'poppins',sans-serif;
    color: #f2f0eb;
    text-align: center;

    /* DARK SHADOW (background readable banane ke liye) */
    text-shadow:
        0 0 5px rgba(0,0,0,0.8),
        0 0 10px rgba(49, 47, 47, 0.7),
        0 0 20px rgba(212,175,55,0.6),
        0 0 30px rgba(173,216,230,0.4);
}

/* ================= MOBILE RESPONSIVE ONLY ================= */
@media screen and (max-width: 768px) {

    .hero-content {

        top: 50%;                 /* 👈 mobile me neeche */
        left: 50%;

        transform: translate(-50%, -50%);

        width: 90%;
        padding: 0 15px;

        margin-top: 0;            /* desktop margin remove */

        text-align: center;
    }

    .hero-title {

        font-size: 34px;          /* mobile font size */
        line-height: 1.3;

        word-break: break-word;
    }

}


/* ================= ENQUIRY SECTION ================= */
.enquiry-section {
  margin-top: 80px;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    background: #fffaf0;
    font-family: 'poppins',sans-serif;

    margin-bottom: 20px;
}

/* ================= FORM CONTAINER ================= */
.enquiry-container {
    max-width: 550px;
    width: 100%;
    padding: 20px;

    border-radius: 20px 0 20px 20px;

    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);

    position: relative;

    overflow: hidden;   /* ⭐ important for half circle */
}

/* ================= HALF CIRCLE (TOP RIGHT INSIDE) ================= */
.enquiry-container::before {
    content: "";
    position: absolute;

    top: 0;
    right: 0;

    width: 120px;
    height: 120px;

    background: #fff;
    border-radius: 50%;

    border: 9px solid #ecbfc8;

    transform: translate(40%, -40%);  /* ⭐ perfect alignment */
}

/* ================= TITLE ================= */
.enquiry-title {
    text-align: center;
    font-size: 27px;
    font-weight: 500;
    color: #b8860b;
    font-weight: bold;
    font-family: 'poppins',sans-serif;
}

.enquiry-subtitle {
    text-align: center;
    font-size: 15px;
    margin-bottom: 25px;
    font-weight: 500;
}

/* ================= FORM ================= */
.enquiry-form label {
    display: block;
    margin: 12px 0 6px;
    font-weight: bold;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #666;
    padding: 10px;
    outline: none;
    transition: 0.3s;
}

/* focus effect */
.enquiry-form input:focus,
.enquiry-form textarea:focus {
    border-color: gold;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    transform: scale(1.02);
}

/* ================= BUTTON ================= */
.enquiry-form button {
    width: 100%;
    padding: 14px;
    margin-top: 15px;

    border: none;
    border-radius: 12px;
    cursor: pointer;

    font-size: 16px;
    color: #fff;
    font-family: 'poppins',sans-serif;

    background: linear-gradient(45deg, #b8860b, #ffd700);
    transition: 0.3s;
}

.enquiry-form button:hover {
    background: linear-gradient(45deg, #ff7f50, #ffd700);
    transform: translateY(-3px);
}
/* ================= TOGGLE BUTTON ================= */

#btn {

  display: block;
  margin: 80px auto;

  padding: 14px 28px;

  border: none;
  border-radius: 40px;
  cursor: pointer;

  font-size: 16px;
  font-weight: 600;
  color: #fff;

  background: linear-gradient(45deg, var(--gold-dark), var(--gold-light));

  box-shadow: 0 8px 20px rgba(184, 134, 11, 0.35);
}

/* ================= HOVER ================= */
#btn:hover {
  background: linear-gradient(45deg, var(--accent-coral), var(--gold-light));
  box-shadow: 0 12px 25px rgba(255, 111, 97, 0.3);
}

/* ================= CONTENT BOX ================= */
#leftContent,
#rightContent {

  max-width: 500px;

  margin: 20px auto;

  padding: 20px;

  background: #fff;

  border-radius: 14px;

  text-align: center;

  box-shadow: 0 4px 12px rgba(0,0,0,0.08);

  font-family: 'Poppins', sans-serif;
}

/* ================= HEADING ================= */
#leftContent h3,
#rightContent h3 {

  font-size: 24px;

  color: #b8860b;

  margin-bottom: 10px;
}

/* ================= PARAGRAPH ================= */
#leftContent p,
#rightContent p {

  font-size: 16px;

  color: #333;

  font-weight: 500;

  line-height: 1.6;
}

/* =================================================
   MOBILE RESPONSIVE ONLY
   LAPTOP PAR KOI EFFECT NAHI
================================================= */
@media screen and (max-width: 768px) {

  #leftContent,
  #rightContent {

    width: 100%;

    max-width: 65%;

    padding: 15px;

    margin: 15px auto;

    border-radius: 12px;
  }

  #leftContent h3,
  #rightContent h3 {

    font-size: 20px;
  }

  #leftContent p,
  #rightContent p {

    font-size: 14px;

    line-height: 1.5;
  }

}

/* ================= ACTIVE STATE (WHEN TOGGLED) ================= */
#btn.active {
      background: linear-gradient(45deg, var(--gold-dark), var(--gold-light));

  box-shadow: 0 0 20px rgba(195, 240, 202, 0.6);

}
/* ================= MOBILE RESPONSIVE BUTTON HOVER FIX ================= */
@media screen and (max-width: 768px) {

  #btn {

    display: block;
    margin: 15px auto;

    width: fit-content;

    padding: 10px 20px;

    font-size: 14px;
    line-height: 1.2;

    border-radius: 30px;

    box-shadow: 0 5px 12px rgba(184, 134, 11, 0.25);

    transform: none !important;
  }

  /* MOBILE HOVER FIX */
  #btn:hover {

    background: linear-gradient(
      45deg,
      var(--gold-dark),
      var(--gold-light)
    );

    box-shadow: 0 5px 12px rgba(184, 134, 11, 0.25);

    transform: none !important;
  }

  /* MOBILE CLICK FIX */
  #btn:active {

    transform: scale(0.98);

    box-shadow: 0 3px 8px rgba(184, 134, 11, 0.2);
  }}

/* ================= MOBILE RESPONSIVE ONLY ================= */
@media screen and (max-width: 768px) {

  /* SECTION FIX */
  .enquiry-section {

    height: auto;
    padding: 40px 15px;

    margin-top: 10px;
    margin-bottom: 10px;

    font-family: 'Poppins', sans-serif;
  }

  /* FORM CONTAINER */
  .enquiry-container {

    position: relative;

    max-width: 100%;
    width: 100%;

    padding: 20px 15px;

    border-radius: 16px;

    overflow: hidden; /* 🔥 important */
  }

  /* ================= HALF CIRCLE FIX ================= */
  .enquiry-container::before {

    content: "";

    position: absolute;

    top: -35px;     /* 🔥 upar push */
    right: -35px;   /* 🔥 right push */

    width: 75px;
    height: 75px;

    border-radius: 50%;

    background: #fff;

    border: 6px solid #ecbfc8;

    z-index: 0; /* 🔥 text ke niche */
  }

  /* TEXT ALWAYS ABOVE */
  .enquiry-title,
  .enquiry-subtitle,
  .enquiry-form {

    position: relative;
    z-index: 2;
  }

  /* TITLE */
  .enquiry-title {
    font-size: 22px;
  }

  .enquiry-subtitle {
    font-size: 14px;
    margin-bottom: 15px;
  }

  /* INPUTS */
  .enquiry-form input,
  .enquiry-form textarea {

    padding: 10px;
    font-size: 14px;
  }

  /* BUTTON */
  .enquiry-form button {

    padding: 12px;
    font-size: 15px;
  }

  /* CONTENT BOXES */
  #leftContent,
  #rightContent {

    max-width: 100%;
    padding: 15px;
  }

}

/* ================= OFFICE WRAPPER ================= */
.office-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
    font-family: 'poppins',sans-serif;

  gap: 30px; /* 👈 very small gap */
  margin: 0 auto;   /* 👈 IMPORTANT CENTER FIX */
left:-20px;
  padding: 70px 70px;
  width: 100%;
max-width: 1300px;
  background: linear-gradient(135deg, var(--vanilla-bg), #ffffff);
border:solid 1px #9e9999;
  position: relative;
  overflow: hidden;
 margin-top: 0;      /* top gap remove */
  margin-bottom: 15px; /* bottom gap reduce */
  flex-wrap: wrap;
}

/* ================= BACKGROUND CIRCLES ================= */
.office-wrapper::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;

  width: 200px;
  height: 200px;

  background: var(--icecream-mint);
  border-radius: 50%;
  opacity: 0.35;
}

.office-wrapper::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;

  width: 240px;
  height: 240px;

  background: var(--icecream-pink);
  border-radius: 50%;

  opacity: 0.35;
}

/* ================= LEFT IMAGE ================= */
.office-image {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* 👈 pulls image near text */
  z-index: 2;
  margin-left: 20px;
}

.office-image img {
  width: 100%;
  max-width: 520px;
  height: 350px;
  border-radius: 20px;

  box-shadow: 0 15px 35px rgba(0,0,0,0.15);

  transition: 0.4s ease;
}

/* IMAGE HOVER */
.office-image img:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 45px rgba(184, 134, 11, 0.25);
}

/* ================= RIGHT TEXT ================= */
.office-text {
  flex: 1;
  max-width: 520px;
  min-height: 320px;

  margin-top: 0;   /* negative hata do */
  margin-left: 0;
    font-family: 'poppins',sans-serif;

  padding: 10px;   /* 👈 ye important hai */
  
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-left: 5px solid var(--gold-light);
  z-index: 8;
}


/* ================= TITLE ================= */
.office-text h3 {
  font-size: 26px;
  color: var(--gold-dark);
      font-family: 'poppins',sans-serif;
margin-top: 0;
}

/* ================= COMPANY ================= */
.office-text .company {
  font-weight: 600;
  color: #444;
  margin-bottom: 10px;
}

/* ================= SUB TITLE ================= */
.office-text h4 {
  color: var(--accent-coral);
      font-family: 'poppins',sans-serif;

}

/* ================= ADDRESS ================= */
.address-link {
  display: inline-block;

    font-family: 'poppins',sans-serif;

  background: var(--soft-honey-tint);

  border-radius: 12px;

  color: #333;
  text-decoration: none;

  line-height: 1.3;

  transition: 0.3s;
}

.address-link:hover {
  background: var(--icecream-mint);
  transform: translateX(6px);
}

/* ================= TEXT ================= */
.office-text p {
  color: #555;
      font-family: 'poppins',sans-serif;

}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .office-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .office-image {
    justify-content: center;
  }

  .office-text {
    width: 100%;
  }
}

/* ================= MOBILE RESPONSIVE ONLY ================= */
@media screen and (max-width: 768px) {

  /* WRAPPER FIX */
  .office-wrapper {
    flex-direction: column;
    padding: 30px 15px;
    gap: 18px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;

    /* important: remove any unwanted shift */
    left: 0;
  }

  /* BACKGROUND CIRCLES SMALL & SAFE */
  .office-wrapper::before {
    width: 120px;
    height: 120px;
    top: -40px;
    left: -40px;
  }

  .office-wrapper::after {
    width: 150px;
    height: 150px;
    bottom: -60px;
    right: -60px;
  }

  /* IMAGE */
  .office-image {
    justify-content: center;
    margin-left: 0;
  }

  .office-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
  }

  /* TEXT CARD */
  .office-text {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 18px;
    text-align: center;
        font-family: 'poppins',sans-serif;
  }

  /* TITLE */
  .office-text h3 {
    font-size: 22px;
  }

  /* COMPANY TEXT */
  .office-text .company {
    font-size: 14px;
  }

  /* ADDRESS */
  .address-link {
    display: block;
    padding: 10px;
    font-size: 14px;
  }

  /* PARAGRAPH */
  .office-text p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
}


/* ================= TABLE TITLE ================= */
.table-title {
      font-family: 'poppins',sans-serif;

  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin: 35px 0 15px;
  color: #222;
}

/* ================= TABLE ================= */
.contact-table-big {
      font-family: 'poppins',sans-serif;

  width: 80%;
  margin: 0 auto 40px auto;

  border-collapse: collapse;

  background: #fff;

  border: 1px solid #ddd;
}

/* ================= HEADER ================= */
.contact-table-big th {
  background: #f2f2f2;
    font-family: 'poppins',sans-serif;

  color: #000;
  font-weight: 700;

  padding: 10px;

  border: 1px solid #ddd;

  font-size: 14px;
}

/* ================= CELLS ================= */
.contact-table-big td {
  padding: 10px;
    font-family: 'poppins',sans-serif;

  text-align: center;

  border: 1px solid #4f4e4e;

  font-weight: 700; /* 👈 bold text */

  color: #1c1b1b;
  font-size: 14px;
}

/* ================= ROW HOVER (VERY LIGHT) ================= */
.contact-table-big tr:hover td {
  background: #f9f9f9;
}

/* ================= OFFICE WRAPPER ================= */
.office {
  display: flex;
  align-items: center;
  justify-content: center;
    font-family: 'poppins',sans-serif;

  gap: 30px; /* 👈 very small gap */
  margin: 0 auto;   /* 👈 IMPORTANT CENTER FIX */

  padding: 70px 50px;
  width: 100%;
max-width: 1300px;
  background: linear-gradient(135deg, var(--vanilla-bg), #ffffff);
border:solid 1px #9e9999;

  position: relative;
  overflow: hidden;

  flex-wrap: wrap;
}

/* ================= BACKGROUND CIRCLES ================= */
.office::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;

  width: 200px;
  height: 200px;

  background: var(--icecream-mint);
  border-radius: 50%;
  opacity: 0.35;
}

.office::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;

  width: 240px;
  height: 240px;

  background: var(--icecream-pink);
  border-radius: 50%;

  opacity: 0.35;
}

/* ================= LEFT IMAGE ================= */
.office-image {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* 👈 pulls image near text */
  z-index: 2;
  margin-left: 20px;
}

.office-image img {
  width: 100%;
  max-width: 520px;
  height: 310px;
  border-radius: 20px;

  box-shadow: 0 15px 35px rgba(0,0,0,0.15);

  transition: 0.4s ease;
}

/* IMAGE HOVER */
.office-image img:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 45px rgba(184, 134, 11, 0.25);
}

/* ================= RIGHT TEXT ================= */
.office-text {
  flex: 1;
  max-width: 520px;
height: 300px;
  padding-bottom: 15px;
    font-family: 'poppins',sans-serif;

  margin-left: 0; /* 👈 remove extra gap */

  background: #fff;

  border-radius: 20px;

  box-shadow: 0 12px 30px rgba(0,0,0,0.08);

  border-left: 5px solid var(--gold-light);
  z-index: 2;
}

/* ================= TITLE ================= */
.office-text h3 {
  font-size: 26px;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

/* ================= COMPANY ================= */
.office-text .company {
  font-weight: 600;
  color: #444;
  margin-bottom: 15px;
}

/* ================= SUB TITLE ================= */
.office-text h4 {
  color: var(--accent-coral);
  margin-bottom: 10px;
}

/* ================= ADDRESS ================= */
.address-link {
  display: inline-block;

  padding: 12px 15px;

  background: var(--soft-honey-tint);

  border-radius: 12px;

  color: #333;
  text-decoration: none;

  line-height: 1.6;
  transition: 0.3s;
}

.address-link:hover {
  background: var(--icecream-mint);
  transform: translateX(6px);
}

/* ================= TEXT ================= */
.office-text p {
  margin-top: 10px;
  color: #555;
  margin-bottom: 10px;
}
/* ================= MOBILE RESPONSIVE ONLY ================= */
@media screen and (max-width: 768px) {

  /* ================= TABLE ================= */
  .contact-table-big {
    width: 100%;
    display: block;
    overflow-x: auto;   /* ⭐ important for small screens */
    white-space: nowrap;
  }

  .contact-table-big th,
  .contact-table-big td {
    font-size: 12px;
    padding: 8px;
  }

  .table-title {
    font-size: 16px;
    margin: 25px 0 10px;
  }

  /* ================= OFFICE WRAPPER ================= */
  .office {
    flex-direction: column;
    padding: 30px 15px;
    gap: 20px;
    text-align: center;
  }

  /* background circles safe resize */
  .office::before {
    width: 120px;
    height: 120px;
    top: -40px;
    left: -40px;
  }

  .office::after {
    width: 150px;
    height: 150px;
    bottom: -60px;
    right: -60px;
  }

  /* ================= IMAGE ================= */
  .office-image {
    justify-content: center;
    margin-left: 0;
  }

  .office-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 14px;
  }

  /* ================= TEXT CARD ================= */
  .office-text {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 18px;
  }

  /* TEXT SCALING */
  .office-text h3 {
    font-size: 20px;
  }

  .office-text .company {
    font-size: 14px;
  }

  .office-text h4 {
    font-size: 15px;
  }

  .office-text p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* ADDRESS BUTTON */
  .address-link {
    display: block;
    font-size: 14px;
    padding: 10px;
  }
}

/* ================= TABLE TITLE ================= */
.table-heading {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin: 35px 0 15px;
  color: #222;
}

/* ================= TABLE (DESKTOP DEFAULT) ================= */
.contact-table-small {
  width: 80%;
  margin: 0 auto 40px auto;
    font-family: 'poppins',sans-serif;

  border-collapse: collapse;
  background: #fff;

  border: 1px solid #ddd;
}

/* ================= HEADER ================= */
.contact-table-small th {
  background: #f2f2f2;
  color: #000;
  font-weight: 700;

  padding: 10px;
  border: 1px solid #ddd;

  font-size: 14px;
}

/* ================= CELLS ================= */
.contact-table-small td {
  padding: 10px;
  text-align: center;

  border: 1px solid #4f4e4e;

  font-weight: 700;
  color: #1c1b1b;

  font-size: 14px;
}

/* ================= HOVER ================= */
.contact-table-small tr:hover td {
  background: #f9f9f9;
}

/* ================= MOBILE RESPONSIVE ================= */
@media screen and (max-width: 768px) {

  .table-heading {
    font-size: 16px;
    margin: 25px 10px 10px;
  }

  /* ⭐ IMPORTANT: scroll wrapper */
  .contact-table-small {
    width: 100%;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .contact-table-small th,
  .contact-table-small td {
    font-size: 12px;
    padding: 8px;
  }
}
