/* ===== ABOUT SECTION ===== */
 /* Banner */
.about-banner {
  position: relative;
  height: 500px;
  overflow: hidden;
}

/* Slides */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* IMAGE */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK OVERLAY */
.slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
}

/* CONTENT CENTER */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 80%;
  max-width: 700px;
  z-index: 2;
}

/* TEXT ANIMATION START STATE */
.content h2,
.content p,
.content .btn {
  opacity: 0;
  transform: translateY(30px);
}

/* ACTIVE TEXT ANIMATION */
.slide.active .content h2 {
  animation: fadeUp 0.8s ease forwards;
}

.slide.active .content p {
  animation: fadeUp 1s ease forwards;
}

.slide.active .content .btn {
  animation: fadeUp 1.2s ease forwards;
}

/* KEYFRAMES */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BUTTON */
.btn {
  padding: 10px 20px;
  background: #d4af37;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
}

.btn:hover {
  transform: scale(1.08);
    background: #fff;
    color: #000;
  box-shadow: 0 0 20px rgba(212,175,55,0.6);
}
@media (max-width: 992px) {
  .content h2 {
    font-size: 30px;
  }

  .content p {
    font-size: 15px;
  }

  .btn {
    padding: 10px 22px;
    font-size: 15px;
  }
}
@media (max-width: 600px) {
  .about-banner {
     height: 45vh;
    min-height: 280px; /*  compact height */
  }

  .content {
    width: 95%;
    padding: 0 10px;
  }

  .content h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .btn {
    padding: 8px 18px;
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .content h2 {
    font-size: 18px;
  }

  .content p {
    font-size: 13px;
  }
}
/* ====================================================== SERVICES ================================================================================= */
.services {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 60px 20px;
    text-align: center;
}

.service-box img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    transition: 0.3s;
}

.service-box:hover img {
    transform: scale(1.1);
}

.service-box h3 {
    color: #d4af37;
    font-size: 20px;
}

.service-text p{
    text-align: justify;

}

/* DIVIDER */
.divider {
    width: 80px;
    height: 2px;
    background: #000;
    margin: 15px auto;
    position: relative;
}

.divider::before {
    content: "◦";
    position: absolute;
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
    font-size: 18px;
}

/* ===== TEXT SECTION (FIXED) ===== */
.service-text {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-direction: row;   /*  ye important hai */
    gap: 40px;
    padding: 40px 20px;
}

/* dono div ko equal width */
.service-text > div {
    flex: 1;
}

/* text columns */
.service-text > div {
    flex: 1;
    min-width: 280px;
}

.service-text p {
    line-height: 1.7;
    color: #000;
}

/* BUTTON CENTER FIX */
.section-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.section-btn button {
    padding: 12px 25px;
    border: 2px solid black;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
}

/* hover effect */
.section-btn button:hover {
transform: scale(1.08);
    box-shadow: 0 0 20px rgba(212,175,55,0.6);
    color: #fff;
}

/* ===== EXTRA SECTIONS ===== */
.expertise, .achievements, .why-us, .cta {
    text-align: center;
    padding: 50px 20px;
}

.expertise ul,
.why-us ul {
    list-style: none;
}

/* CTA button */
.cta button {
    padding: 12px 25px;
    background: #d4af37;
    border: none;
    color: white;
    cursor: pointer;
}



/* ===== RESPONSIVE ===== */
@media(max-width: 768px){

    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 280px;
    }

    .services {
        flex-wrap: wrap;
        gap: 30px;
    }

    .service-text {
        flex-direction: column;
        text-align: center;
    }
}


/*-------------------------------------- who we are------------------------------------- */
.about-content {
    max-width: 850px;
    margin: 60px auto;
    text-align: center;
    padding: 30px 20px;
}

/* heading */
.about-content h2 {
    font-size: 34px;
    margin-bottom: 18px;
    color: #d4af37;
    position: relative;
    font-weight: 600;
    letter-spacing: 1px;
}

/* underline style (premium glow effect) */
.about-content h2::after {
    content: "";
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f7e7a1);
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* paragraph */
.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    text-align: center;
    margin-top: 15px;
    letter-spacing: 0.3px;
}

/* subtle card feel */
.about-content {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    backdrop-filter: blur(6px);
}

/* tablet */
@media (max-width: 768px) {
    .about-content {
        margin: 40px 15px;
        padding: 25px 15px;
    }

    .about-content h2 {
        font-size: 26px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* mobile */
@media (max-width: 480px) {
    .about-content h2 {
        font-size: 22px;
    }

    .about-content p {
        font-size: 14px;
    }
}
/* ------------------------------our expertise -----------------------*/

/* SECTION */
.expertise {
    padding: 70px 20px;
    text-align: center;
    background: #fff;
}

/* HEADING */
.expertise h2 {
    font-size: 32px;
    margin-bottom: 40px;
    position: relative;
    color: #d4af37;
}

/* elegant underline */
.expertise h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #d4af37;
    display: block;
    margin: 10px auto 0;
}

/* GRID */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.exp-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    border: 1px solid #eee;
}

/* ICON BOX */
.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    position: relative;
    transition: 0.4s;
}

/* glow ring */
.icon-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(212,175,55,0.3);
    animation: pulse 2s infinite;
}

/* hover glow  */
.exp-card:hover .icon-box {
    background: #d4af37;
    color: #fff;
    transform: scale(1.1);
}

/* animation */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* TEXT */
.exp-card h3 {
    font-size: 17px;
    font-weight: 500;
}

/* HOVER */
.exp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
    border-color: #d4af37;
}

/* RESPONSIVE */
@media(max-width: 768px){
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 480px){
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}




/* ----------------------------achievements--------------------------- */


/* ===== ABOUT SECTION ===== */
.about-section {
    position: relative;
    padding: 60px 20px;
    background: #e6e636;
    overflow: hidden;
    min-height: 300px;
}

.about-text p {
    color: #000;
}

/* CURVES */
.about-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: #030303;
    border-radius: 50%;
    top: -200px;
    left: -200px;
    z-index: 0;
}

.about-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: #030303;
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    z-index: 0;
}

/* STARS */
.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.stars::before,
.stars::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 3px;
    background: #030303;
    border-radius: 50%;
    box-shadow:
        50px 100px #030303,
        150px 200px #030303,
        300px 150px #030303,
        450px 250px #030303,
        600px 100px #030303,
        750px 300px #030303,
        900px 200px #030303;
    animation: blink 1.5s infinite alternate;
}

.stars::after {
    animation-delay: 0.8s;
}

@keyframes blink {
    0% { opacity: 0.2; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.8); }
}

/* ABOUT WRAPPER */
.about-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image img {
    width: 400px;
    border-radius: 50% 50% 40% 40%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ===== SERVICES ===== */
.services {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 60px 20px;
    text-align: center;
}

.service-box img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    transition: 0.3s;
}

.service-box:hover img {
    transform: scale(1.1);
}

.service-box h3 {
    color: #d4af37;
}

/* DIVIDER */
.divider {
    width: 80px;
    height: 2px;
    background: #000;
    margin: 15px auto;
    position: relative;
}

.divider::before {
    content: "◦";
    position: absolute;
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
}

/* ===== SERVICE TEXT ===== */

.about-content h2 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 25px;
  border: 2px solid rgba(212,175,55,0.4);
  box-shadow: 0 15px 40px rgba(212,175,55,0.2), 0 20px 60px rgba(0,0,0,0.05);
  transition: 0.4s;
  display: flex;
  flex-direction: column;
  flex: 0 1 45%; /* roughly half width each */
  min-height: 400px; /* equal height cards */
  box-sizing: border-box;
}

.service-card p {
  line-height: 1.8;
  color: #333;
  font-size: 16.5px;
  flex-grow: 1; /* fills vertical space */
  margin: 0;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(212,175,55,0.5), 0 30px 70px rgba(0,0,0,0.1);
  border-color: rgba(212,175,55,0.7);
}
.service-text {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px 20px;
}

.service-text > div {
    flex: 1;
    min-width: 280px;
}

.service-text p {
    line-height: 1.7;
}

/* BUTTON */
.section-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    background: #d4af37;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.btn:hover {
   transform: scale(1.08);
    box-shadow: 0 0 20px rgba(212,175,55,0.6);
    color: #000;
}


/* =====================who===========we =======================are */
/* Basic Section */
.who-we-are {
  max-width: 1000px;
   min-height: 300px;
  margin: 60px auto;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.who-we-are h2 {
  font-size: 38px;
  margin-bottom: 40px;
  color: #d4af37;
}

/* Card */
.about-card {
  position: relative;
  width: 350px;
  height: 200px;
  margin: auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Button on card */
.read-more-btn {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 25px;
  border-radius: 25px;
  border: none;
  background: linear-gradient(45deg, #d4af37, #d4af37);
  color: #fff;
  font-weight: 300px;
  cursor: pointer;
  transition: 0.3s;
}

.read-more-btn:hover {
  transform: translateX(-50%) scale(1.05);
    box-shadow: 0 0 20px rgba(212,175,55,0.6);
  color: #000;
  background: #fff;
}

/* Modal Card (Hidden initially) */
.modal-card {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-card.active {
  display: flex;
}

/* Modal Content */
.modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 700px;
  width: 90%;
  text-align: center;
  position: relative;
}

.modal-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #d4af37;
}

.modal-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  border: none;
  background: none;
  cursor: pointer;
  color: #333;
  font-weight: bold;
  transition: 0.3s;
  color: #d4af37;
}

.close-btn:hover {
  color: #d4af37;
}
/* =========================================== EXPERTISE ======================================================================= */
.expertise {
    padding: 70px 20px;
    text-align: center;
    background: #fff;
}

.expertise h2 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 1px;
}

.expertise h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #d4af37;
    display: block;
    margin: 10px auto;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.exp-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.exp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212,175,55,0.25);
}

.eye-video {
    width: 200px;
    height: 200px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
}

.eye-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eye-video video {
    width: 100%;
    height: auto;
    display: block;
}

/* ICON BOX */
.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    background: rgba(212,175,55,0.1);
}

/* Layout */
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
}

/* Content */
.about-content {
  flex: 1;
}

.about-content h1 {
  font-size: 38px;
  color: #1a1a3d;
  margin-bottom: 20px;
  animation: fadeDown 1s ease;
}

.about-content p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
  animation: fadeUp 1.2s ease;
}

/* Image */
.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;

  /* Glow effect */
  box-shadow: 0 0 20px rgba(255,215,0,0.5);
  transition: 0.3s;
}

.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255,165,0,0.7);
}

/* Button same */
.about-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 250px;
  }
}


/* -----------------------------------------why-us ---------------------------------*/
/* SECTION */
.about-hero {
    max-width: 1200px;
    margin: 80px auto;
    padding: 20px;

    display: flex;
    align-items: center;
    gap: 50px;
}

/* LEFT TEXT */
.about-left {
    flex: 1;
}

/* NAME */
.about-left h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* TAG BOX */
.tag-box {
    display: inline-block;
    padding: 8px 18px;
    border: 2px solid #d4af37;
    border-radius: 25px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #d4af37;
}

/* PARAGRAPH */
.about-left p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    max-width: 500px;
}



/* BUTTON */
.call-btn {
    display: inline-block;
    background: #d4af37;
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

/* hover 🔥 */
.call-btn:hover {
    background: #000;
    color: #d4af37;
}

@media(max-width: 768px){

    .about-hero {
        flex-direction: column;   /* ye main fix */
        align-items: center;
        text-align: center;
    }

    .about-right {
        width: 100%;
        order: -1;  /* image ko upar laata hai */
    }

    .about-left {
        width: 100%;
    }

    .about-right img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 12px;
    }

    .about-left p {
        margin: 0 auto;
    }
}

/* ----------------------------cta--------------------------------- */

/* SECTION */
.cta {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

/* BOX */
.cta-box {
    background: linear-gradient(135deg, #d4af37, #f7d774);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(212,175,55,0.3);
}

/* HEADING */
.cta-box h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #000;
}

/* TEXT */
.cta-box p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #222;
}

/* BUTTON */
.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #000;
    color: #d4af37;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

/* hover 🔥 */
.cta-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

@media(max-width: 768px){

    .cta-box {
        padding: 40px 20px;
    }

    .cta-box h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .cta-box p {
        font-size: 14px;
    }

    .cta-btn {
        padding: 10px 22px;
        font-size: 14px;
    }
}


@media(max-width: 480px){

    .cta {
        padding: 60px 15px;
    }

    .cta-box {
        padding: 30px 15px;
        border-radius: 15px;
    }

    .cta-box h2 {
        font-size: 22px;
    }

    .cta-box p {
        font-size: 13px;
    }

    .cta-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}