/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= FONTS ================= */
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&family=Pacifico&display=swap");

/* ================= ROOT COLORS (THEME 1 – ROYAL GOLD) ================= */
:root {
  --primary: #f4c430;        /* Royal Gold */
  --dark-blue: #0b1c39;      /* Deep Navy */
  --accent: #f4c430;         /* Gold Accent */
  --off-white: #eaeaea;
  --bg-light: #f8fafc;
  --text-dark: #1f2937;
}

/* ================= GLOBAL ================= */
body {
  font-family: "Nunito", sans-serif;
  color: var(--text-dark);
  background: #ffffff;
}

a {
  text-transform: none;
}

/* ================= HEADER ================= */
.main-header {
  background: linear-gradient(180deg, #0b1c39 0%, #09162e 100%);
  padding: 15px 0;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* ================= LOGO ================= */
.header-logo img {
  height: 75px;
  width: auto;
  display: block;
}

/* ================= NAVIGATION ================= */
.header-nav .nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav .nav-links a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.header-nav .nav-links a:hover {
  color: var(--primary);
}

/* ================= CONTACT BUTTON ================= */
.contact-btn {
  background: linear-gradient(135deg, #f4c430, #ffd666);
  padding: 11px 22px;
  color: #0b1c39;
  font-weight: 700;
  font-size: 15px;
  border-radius: 6px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-btn i {
  font-size: 16px;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  color: #ffffff;
  cursor: pointer;
}

/* ================= MOBILE MENU ================= */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100%;
  background: var(--dark-blue);
  padding: 25px;
  transition: right 0.4s ease;
  z-index: 9999;
}

.mobile-menu.active {
  right: 0;
}

/* ================= MOBILE HEADER ================= */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Mobile logo */
.mobile-logo img {
  height: 75px;
  width: auto;
  display: block;
}

.close-btn {
  font-size: 34px;
  color: #ffffff;
  cursor: pointer;
}

/* ================= MOBILE LINKS ================= */
.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.mobile-nav-links li {
  margin-bottom: 22px;
}

.mobile-nav-links a {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.mobile-nav-links a:hover {
  color: var(--primary);
}

/* ================= MOBILE CALL BUTTON ================= */
.mobile-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  padding: 14px;
  background: linear-gradient(135deg, #f4c430, #ffd666);
  color: #0b1c39;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .header-nav,
  .contact-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .header-logo img {
    height: 75px;
  }
}

@media (max-width: 576px) {
  .header-logo img {
    height: 58px;
  }

  .mobile-logo img {
    height: 40px;
  }
}


/* ================= HERO ================= */
.hero-section {
  padding: 150px 0 100px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

/* Content */
.hero-content {
  position: relative;
}

/* Badge – Royal Gold */
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f4c430, #ffd666);
  color: #0b1c39;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

/* Heading */
.hero-section h1 {
  font-weight: 800;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark-blue);
}

/* Description */
.hero-section p {
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
  max-width: 540px;
  margin-bottom: 30px;
}

/* CTA */
.hero-actions {
  margin-top: 10px;
}

/* Image */
.hero-image {
  position: relative;
}

.hero-vector {
  max-width: 540px;
  width: 100%;
  height: auto;
}

/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 992px) {
  .hero-section {
    padding: 110px 0 80px;
  }

  .hero-section h1 {
    font-size: 38px;
  }

  .hero-section p {
    max-width: 100%;
  }

  .hero-vector {
    max-width: 460px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-section {
    padding: 120px 0 60px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-badge {
    margin-inline: auto;
  }

  .hero-section h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .hero-section p {
    font-size: 15.5px;
    margin-inline: auto;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-vector {
    max-width: 320px;
    margin-top: 20px;
  }
}

/* ================= SECTIONS ================= */
.section-title {
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.about-section,
.business-section,
.contact-section {
  padding: 50px 0;
}


/* ================= ABOUT SECTION ================= */
.rukma-about-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

/* Tag – Royal Gold */
.about-tag {
  display: inline-block;
  padding: 7px 18px;
  background: rgba(244, 196, 48, 0.18);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  border-radius: 30px;
  letter-spacing: 0.5px;
}

/* Title highlight */
.section-title .highlight {
  color: var(--primary);
}

/* Description */
.about-desc {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
  margin: 18px 0 24px;
  max-width: 560px;
}

/* Points */
.about-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 18px;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* Icon – Gold */
.about-point i {
  font-size: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(244, 196, 48, 0.25);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-point h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark-blue);
}

.about-point p {
  font-size: 14.5px;
  color: #475569;
  margin: 0;
  line-height: 1.7;
}

/* IMAGE – DESKTOP BIGGER */
.about-image {
  width: 115%;
  margin-left: -7%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 36px 85px rgba(0, 0, 0, 0.22);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.28);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 992px) {
  .rukma-about-section {
    padding: 90px 0;
  }

  .about-desc {
    max-width: 100%;
  }

  .about-image {
    width: 100%;
    margin-left: 0;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .rukma-about-section {
    padding: 70px 0;
  }

  .about-points {
    gap: 20px;
  }

  .about-image {
    border-radius: 20px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.2);
  }
}


/* ================= RUKMA BUSINESSES ================= */
.rukma-business-section {
  padding: 70px 0;
  background: #f8fafc;
}

.rukma-business-section .section-title h2 {
  font-weight: 800;
  color: var(--dark-blue);
}

.rukma-business-section .section-title p {
  color: #475569;
  margin-top: 8px;
}

/* Card */
.rukma-business-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.rukma-business-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}

/* Image */
.business-img {
  height: 220px;
  overflow: hidden;
}

.business-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.rukma-business-card:hover img {
  transform: scale(1.08);
}

/* Content */
.business-content {
  padding: 28px;
}

.business-content h4 {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark-blue);
}

.business-content p {
  font-size: 15px;
  color: #475569;
  margin-bottom: 15px;
}

.business-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.business-content ul li {
  font-size: 14px;
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
  color: #374151;
}

/* Check icon – Gold */
.business-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ================= BUSINESS ENQUIRE BUTTON ================= */
.business-enquire-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #f4c430, #ffd666);
  color: #0b1c39;
  font-size: 14px;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.business-enquire-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(244, 196, 48, 0.45);
  color: #0b1c39;
}


/* ================= CONTACT SECTION ================= */
.rukma-contact-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

/* Headings */
.rukma-contact-section .contact-heading {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--dark-blue);
}

/* Description */
.rukma-contact-section .contact-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  max-width: 520px;
  margin-bottom: 36px;
}

/* ================= INFO ================= */
.contact-info-box {
  margin-top: 10px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

/* Icon – Gold */
.contact-info-item i {
  font-size: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(244, 196, 48, 0.22);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item h5 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark-blue);
}

.contact-info-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.contact-info-item a {
  color: #475569;
  text-decoration: none;
}

.contact-info-item a:hover {
  color: var(--primary);
}

/* ================= FORM ================= */
.contact-form label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark-blue);
}

.contact-form .form-control {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #e5e7eb;
  margin-bottom: 18px;
}

/* Focus – Gold glow */
.contact-form .form-control:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(244, 196, 48, 0.35);
}

/* Submit – Gold CTA */
.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  background: linear-gradient(135deg, #f4c430, #ffd666);
  color: #0b1c39;
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(244, 196, 48, 0.45);
}


/* ================= MAP SECTION ================= */
.rukma-map-section {
  padding: 60px 0 100px;
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(11, 28, 57, 0.22);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .rukma-contact-section .contact-heading {
    font-size: 32px;
  }
  .map-wrapper {
    height: 360px;
  }
}

@media (max-width: 576px) {
  .rukma-contact-section {
    padding: 70px 0;
  }
  .map-wrapper {
    height: 300px;
    border-radius: 18px;
  }
}


/* ================= FOOTER ================= */
.footer-section {
  background: linear-gradient(180deg, #0b1c39 0%, #09162e 100%);
  padding: 80px 0 40px;
  font-size: 16px;
}

/* Footer Logo */
.footer-logo-img {
  height: 75px;
  width: auto;
  display: block;
}

/* About Text */
.footer-about {
  max-width: 260px;
  color: var(--off-white);
  line-height: 1.7;
}

/* Titles – Gold */
.footer-title {
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
}

/* Footer Text */
.footer-section p,
.footer-section li,
.footer-section a {
  color: var(--off-white);
  font-size: 15px;
  line-height: 1.8;
  text-decoration: none;
}

/* Hover – Gold */
.footer-section a:hover {
  color: var(--primary);
}

/* ================= FOOTER LINKS ================= */
.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.footer-links li a i {
  color: var(--primary);
  font-size: 12px;
  transition: 0.3s ease;
}

.footer-links li a:hover {
  transform: translateX(4px);
}

/* ================= SOCIAL ICONS ================= */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social .icon-box {
  background: linear-gradient(135deg, #f4c430, #ffd666);
  color: #0b1c39;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.3s ease;
}

.footer-social .icon-box:hover {
  transform: scale(1.1);
  background: #ffffff;
  color: var(--dark-blue);
}

/* ================= CONTACT ================= */
.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.footer-contact .contact-icon {
  width: 22px;
  margin-right: 10px;
  padding-top: 4px;
}

.footer-contact .contact-icon i {
  color: var(--primary);
  font-size: 16px;
}

/* ================= FOOTER BOTTOM ================= */
.footer-bottom {
  text-align: left;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--off-white);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .footer-about {
    max-width: 100%;
  }

  .footer-logo-img {
    height: 75px;
  }
}

@media (max-width: 576px) {
  .footer-logo-img {
    height: 58px;
  }
}

@media (min-width: 992px) {
  .footer-bottom {
    text-align: center;
  }
}


/* ================= FADE ANIMATIONS ================= */
.fade-in-up,
.fade-in-right,
.fade-in-left,
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s ease-out;
}

.fade-in-right {
  transform: translateX(40px);
}
.fade-in-left {
  transform: translateX(-40px);
}
.fade-in {
  transform: none;
}

.fade-show {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 {
  transition-delay: 0.15s;
}
.delay-2 {
  transition-delay: 0.3s;
}
.delay-3 {
  transition-delay: 0.45s;
}

/* ================= WHATSAPP FLOAT ================= */
.floating-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1ebe57);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #ffffff;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.floating-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.75);
}

/* Icon fix */
.floating-whatsapp i {
  line-height: 1;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 576px) {
  .floating-whatsapp {
    width: 56px;
    height: 56px;
    font-size: 28px;
    bottom: 18px;
    right: 18px;
  }
}


/* ================= OVERFLOW FIX (ADD ONLY) ================= */

/* Prevent horizontal scroll globally */
html,
body {
  overflow-x: hidden;
}

/* Safety fix for about image on small screens */
@media (max-width: 992px) {
  .about-image {
    max-width: 100%;
    margin-left: 0 !important;
  }
}
