﻿/********** Template CSS **********/
:root {
    --primary: #8a0015;
    --light: #F8F8F8;
    --dark: #252525;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}



/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
    background: #ff857c;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: #ffffff;
    
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


.navbar {
  background: linear-gradient(105deg, #ffffff 30%, #070066 30%); /* keep your gradient */
  position: sticky; /* keeps navbar on top */
  top: 0;
  z-index: 1030;
  height: 100px; /* fixed navbar height */
  padding-top: 0;  /* remove extra padding */
  padding-bottom: 0;
  transition: all 0.5s ease;
  display: flex;
  align-items: center; /* vertically center navbar content */
}

/* Navbar links - no height change */
.navbar .navbar-nav .nav-link {
  margin-right: 40px;
  padding: 0; /* remove vertical padding to respect fixed height */
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
}

/* Logo - scalable without changing navbar height */
.navbar .navbar-brand img {
  height: 125px; /* change this to any logo height you want */
  width: auto;  /* keep aspect ratio */
  display: block;
}
/* Smooth transition for sticky */
.navbar.sticky-top {
  top: -100px;
  transition: .5s;
}



.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #ff857c;
}

/* Dropdown caret icon */
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}


/* Close icon */
.close-nav {
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
}
.close-nav:hover {
  color: #007bff;
}


/* =============================
   Responsive Navbar Adjustments
   ============================= */

/* Tablets (max-width: 991px) */
@media (max-width: 991px) {
  .navbar {
    background: linear-gradient(105deg, #ffffff 55%, #070066 35%);
    padding: 10px 20px;
  }

  .navbar .navbar-nav .nav-link {
    color: #000; /* readable on white background when menu expands */
    padding: 10px 0;
    margin-right: 0;
  }

  .navbar-collapse {
    background: #070066; /* blue background for mobile menu */
    padding: 15px;
    border-radius: 8px;
  }

  .close-nav {
    color: #fff;
  }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  .navbar {
    background: linear-gradient(110deg, #ffffff 60%, #070066 40%);
    padding: 8px 15px;
  }

  .navbar .navbar-brand img {
    max-height: 50px;
  }

  .navbar .navbar-nav .nav-link {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
  }
}

/* Extra small screens (max-width: 480px) */
@media (max-width: 480px) {
  .navbar {
    background: linear-gradient(115deg, #ffffff 60%, #070066 45%);
  }

  .navbar .navbar-brand img {
    max-height: 45px;
  }

  .navbar .navbar-nav .nav-link {
    font-size: 14px;
  }
}

/* Default (desktop) */
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Mobile view - white color hamburger */
@media (max-width: 991px) {
  .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }

  .navbar-light .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.8); /* optional white border */
  }
}










.bg-dark {
  background-color: #070066 !important;
}








/* ==== Hero Section ==== */
.hero {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 122px;
  min-height: 117vh;
  background: radial-gradient(circle at top right, #070066, #070066 70%);
  overflow: hidden;
  margin-top: -98px;
}

.hero-swirl {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(28, 28, 70, 0.4) 0deg 20deg,
      rgba(28, 28, 70, 0.2) 20deg 40deg,
      transparent 40deg 60deg
    ),
    radial-gradient(circle at center,
      rgba(30, 30, 80, 0.5) 0%,
      rgba(25, 25, 60, 0.25) 45%,
      transparent 75%);
  box-shadow:
    0 0 60px rgba(60, 90, 200, 0.25),
    0 0 120px rgba(80, 120, 255, 0.15),
    inset 0 0 30px rgba(100, 140, 255, 0.1);
  filter: blur(1.2px);
  animation: flower-onecolor-spin 30s linear infinite;
  opacity: 0.8;
  z-index: 0;
  mix-blend-mode: screen;
}

.hero-swirl::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center,
      rgba(100, 140, 255, 0.3) 0%,
      rgba(15, 15, 45, 0.1) 70%,
      transparent 100%);
  filter: blur(12px);
  opacity: 0.8;
  box-shadow:
    0 0 50px rgba(120, 160, 255, 0.25),
    inset 0 0 25px rgba(120, 160, 255, 0.2);
}

@keyframes flower-onecolor-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-title {
  color: #FFFFFF;
  font-size: 52px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 30px;
}

.hero-title span {
  color: #ff857c;
}

/* ==== Hero Content ==== */
.hero-content {
  flex: 1;
  color: #fff;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-content .subtitle {
  font-size: 16px;
  color: #ff857c;
  margin-bottom: 20px;
}

/* ==== Feature Buttons ==== */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 803px;
}

.features span {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
  transition: 0.3s;
}

.features span:hover {
  background: #ff857c;
  color: #000;
}

/* ==== Hero Image ==== */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero-image img {
  width: 71%;
  max-width: 525px;
  animation: float 2s ease-in-out infinite;
}

/* ==== Floating Animation ==== */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}




/* ==== Hero Image Slider ==== */
.hero-slider {
  position: relative;
  width: 71%;
  max-width: 525px;
  aspect-ratio: 1 / 1; /* ensures height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  animation: float 2s ease-in-out infinite;
}

.hero-slider img.active {
  opacity: 1;
  z-index: 2;
}



/* ==== Rotating Coin ==== */
.coin-rotate {
  position: absolute;
  top: 160px;
  right: 120px;
  width: 100px;
  height: 100px;
  z-index: 3;
  animation: coin-float 3s ease-in-out infinite;
}

.coin-rotate img {
  width: 150%;
  height: auto;
  animation: coin-spin 10s linear infinite;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
}

/* Coin continuous rotation */
@keyframes coin-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


/* Slight floating motion */
@keyframes coin-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}



/* ==== ✅ Final Corrected Responsive Media Queries ==== */

/* ====== Tablet View (≤ 992px) ====== */
@media (max-width: 992px) {

  /* Navbar Adjustments */
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 15px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eee;
  }

  /* Hero Section */
  .hero {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 80px;
    gap: 40px;
    overflow: visible;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 40px;
    z-index: 3;
  }

  .hero-title {
    font-size: 38px;
    line-height: 1.3;
  }

  .features {
    justify-content: center;
    width: 100%;
    gap: 10px;
  }

  .hero-image {
    display: flex;
    justify-content: center;
    z-index: 3;
  }

  .hero-slider {
    width: 70%;
    max-width: 420px;
    position: relative;
    z-index: 3;
  }

  .coin-rotate {
    position: absolute;
    top: 90px;
    right: 40px;
    width: 80px;
    height: 80px;
    z-index: 4;
  }
}



.hero-title {
  transition: opacity 0.8s ease-in-out;
  position: relative;
}

.hero-title.fade-out {
  opacity: 0;
}

.hero-title.fade-in {
  opacity: 1;
}

/* ====== Mobile View (≤ 768px) ====== */
@media (max-width: 768px) {

  /* Navbar */
  .navbar {
    background-color: #070066;
  }

  .navbar .navbar-nav .nav-link {
    padding: 10px 0;
    text-align: center;
    font-size: 15px;
  }

  /* Hero Section */
  .hero {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 25px 70px;
    text-align: center;
    overflow: visible;
  }

  .hero-content {
    order: 2;
    max-width: 100%;
    z-index: 3;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.35;
    margin-bottom: 18px;
  }

  .hero-content .subtitle {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .features {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 8px;
  }

  .features span {
    font-size: 13px;
    padding: 6px 10px;
  }

  .hero-image {
    order: 1;
    margin-bottom: 25px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 3;
  }

  .hero-slider {
    width: 85%;
    max-width: 340px;
    position: relative;
    z-index: 3;
  }

  .coin-rotate {
    top: 55px;
    right: 25px;
    width: 65px;
    height: 65px;
    z-index: 4;
  }
}

/* ====== Small Mobile (≤ 480px) ====== */
@media (max-width: 480px) {

  /* Navbar */
  .navbar .navbar-nav .nav-link {
    font-size: 14px;
    padding: 8px 0;
  }

  /* Hero Section */
  .hero {
    padding: 100px 20px 80px;
    text-align: center;
    overflow: visible;
  }

  .hero-title {
    font-size: 26px;
    line-height: 1.35;
    margin-bottom: 16px;
  }

  .hero-content .subtitle {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .features {
    gap: 6px;
    width: 100%;
  }

  .features span {
    font-size: 12px;
    padding: 5px 9px;
  }

  .hero-slider {
    width: 90%;
    max-width: 300px;
    z-index: 3;
    margin-top: 10px;
  }

  .coin-rotate {
    top: 95px;
    right: 45px;
    width: 55px;
    height: 55px;
    z-index: 4;
  }
}


/* ===== Responsive Fix for .hero-swirl ===== */

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  .hero-swirl {
    width: 800px;
    height: 800px;
    opacity: 0.7;
    filter: blur(1px);
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .hero-swirl {
    width: 600px;
    height: 600px;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    filter: blur(0.8px);
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .hero-swirl {
    width: 400px;
    height: 400px;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.55;
    filter: blur(0.6px);
  }
}










/* Same background as hero section */
.health-wellness {
  background: radial-gradient(circle at top right, #070066, #070066 70%);
  color: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.health-wellness .section-header h2 {
  font-size: 45px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #ffffff;
}

.health-wellness .section-header p {
  font-size: 18px;
  margin: 5px 0;
}




.health-wellness .images-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.health-wellness .image-item img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.health-wellness .image-item img:hover {
  transform: scale(1.05);
}



/* ===== Media Queries for Health & Wellness Section ===== */

/* Tablets (768px to 1024px) */
@media (max-width: 1024px) {
  .health-wellness {
    padding: 60px 20px;
  }

  .health-wellness .section-header h2 {
    font-size: 38px;
  }

  .health-wellness .section-header p,
  .health-wellness .section-header .card {
    font-size: 16px;
  }

  .health-wellness .images-row {
    gap: 20px;
  }
}

/* Mobile Devices (up to 767px) */
@media (max-width: 767px) {
  .health-wellness {
    padding: 40px 15px;
  }

  .health-wellness .section-header h2 {
    font-size: 30px;
  }

  .health-wellness .section-header p,
  .health-wellness .section-header .card {
    font-size: 14px;
  }

  .health-wellness .images-row {
    flex-direction: column;
    gap: 15px;
  }

  .health-wellness .image-item img {
    width: 100%;
    height: auto;
  }
}














/* ==== Full Width Curved Animated Header ==== */
.page-header {
  position: relative;
  height: 400px;
  background: linear-gradient(180deg, #070066 0%, #0a0a3a 85%);
  color: #fff;
  overflow: hidden;
}

.page-header .container {
  position: relative;
  z-index: 10;
}

/* Full width animated waves */
.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.waves {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
}

/* Optional gradient overlay for contrast */
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}








/*** Section Title ***/
.section-title {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

/*** Logo ***/
.logo-img {
  height: 75px;
  width: auto;
}

@media (max-width: 768px) {
  .logo-img {
    height: 55px;
  }
}

/*** Facts ***/
.fact-item .fact-icon {
  width: 120px;
  height: 120px;
  margin-top: -60px;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 120px;
  transition: .5s;
}

.fact-item:hover .fact-icon {
  background: var(--dark);
}

.fact-item .fact-icon i {
  color: var(--primary);
  transition: .5;
}

.fact-item:hover .fact-icon i {
  color: #FFFFFF;
}






/*** Experience Section ***/
.experience-section {
  background: radial-gradient(circle at top right, #070066, #070066 70%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

.experience-section .small-img {
  width: 233px;
  position: absolute;
  z-index: 1;
}

.experience-section .top-left {
  top:-115px;
  left: 0%;
}

.experience-section .bottom-left {
 bottom: -162px;
    left: 65%;
}

.experience-section .main-img {
  width: 260px;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  margin-top: 40px;
}

.experience-section .experience-box {
  position: absolute;
  top: -128px;
  left: 71%;
  transform: translateX(-50%);
  background: #ff857c;
  color: #070066;
  padding: 15px 25px;
  border-radius: 6px;
  text-align: center;
  z-index: 3;
  width: 140px;
  box-shadow: 0 4px 10px rgba(167, 255, 76, 0.3);
}

.experience-box h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}

.experience-box p {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  
}

.progress-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.progress {
  background-color: #222;
  height: 6px;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  background-color: #ff857c;
  height: 6px;
  border-radius: 5px;
}

.text-success {
  color: #ff857c !important;
}

/* ===== Responsive Media Queries for Experience Section ===== */

/* ===== Tablet View (≤ 992px) ===== */
@media (max-width: 992px) {
  .experience-section {
    padding: 70px 0;
    text-align: center;
  }

  .experience-section .main-img {
    width: 220px;
    margin-top: 30px;
  }

  .experience-section .small-img {
    width: 90px;
  }

  .experience-section .top-left {
    top: -40px;
    left: 10%;
  }

  .experience-section .bottom-left {
    bottom: -80px;
    left: 65%;
  }

  .experience-section .experience-box {
    top: -90px;
    left: 65%;
    width: 120px;
    padding: 12px 20px;
  }

  .experience-box h2 {
    font-size: 32px;
  }

  .experience-box p {
    font-size: 13px;
  }
}

/* ===== Mobile View (≤ 768px) ===== */
@media (max-width: 768px) {
  .experience-section {
    padding: 60px 0;
  }

  .experience-section .col-lg-6.text-center {
    margin-bottom: 40px;
  }

  .experience-section .main-img {
    width: 180px;
    margin-top: 20px;
  }

  .experience-section .small-img {
    width: 70px;
  }

  .experience-section .top-left {
    top: -30px;
    left: 15%;
  }

  .experience-section .bottom-left {
    bottom: -60px;
    left: 60%;
  }

  .experience-section .experience-box {
    top: -70px;
    left: 60%;
    width: 110px;
    padding: 10px 18px;
  }

  .experience-box h2 {
    font-size: 28px;
  }

  .experience-box p {
    font-size: 12px;
  }

  .progress-box {
    padding: 10px 15px;
  }
}

/* ===== Small Mobile View (≤ 480px) ===== */
@media (max-width: 480px) {
  .experience-section {
    padding: 50px 0;
    text-align: center;
  }

  .experience-section .main-img {
    width: 150px;
    margin-top: 15px;
  }

  .experience-section .small-img {
    width: 140px;
  }

  .experience-section .top-left {
    top: -46px;
        left: 9%;
  }

  .experience-section .bottom-left {
    bottom: -45px;
    left: 55%;
  }

  .experience-section .experience-box {
    top: -55px;
    left: 55%;
    width: 100px;
    padding: 8px 15px;
  }

  .experience-box h2 {
    font-size: 24px;
  }

  .experience-box p {
    font-size: 11px;
  }

  .progress-box {
    padding: 8px 12px;
  }
}














/* === Offer Section (Jarvis Clone) === */
.offer-section {
  background: radial-gradient(circle at top right, #070066, #070066 70%);
  color: #fff;
  padding: 90px 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  animation: none !important;
  transition: none !important;
  background-attachment: fixed;
}

.section-subtitle1 {
  color: #ff857c;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 15px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #ffffff;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1150px;
  margin: 0 auto;
}

.offer-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 10px rgba(50, 50, 100, 0.15);
  transition: all 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(100, 200, 255, 0.25);
  background: rgba(255, 133, 124, 1);
}

.icon-box {
  width: 48px;
  height: 48px;
  background: radial-gradient(circle, #070066 0%, #070066 80%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #ff857c;
  font-size: 22px;
  box-shadow: 0 0 10px rgba(170, 255, 90, 0.4);
}

.offer-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #070066;
}

.offer-card p {
  font-size: 15px;
  color: #000;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }
  .offer-card {
    padding: 25px;
  }
}








/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: #ff857c;
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}

.display-5 {
  color: #ffffff !important;
}

/* === Make All Tab Text White === */
.tab-content .tab-pane {
  color: #ffffff !important;
}

.tab-content .tab-pane h1,
.tab-content .tab-pane p,
.tab-content .tab-pane i {
  color: #ffffff !important;
}

/* Keep button text white */
.tab-content .tab-pane .btn {
  color: #ffffff !important;
}


















/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ffffff;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #ffc107;
}

.footer .copyright a:hover {
    color: var(--primary);
}




















































.saree-store {
  padding: 60px 20px;
  background: radial-gradient(circle at top right, #070066, #070066 70%);
  text-align: center;
}

.container1 {
max-width: 1625px;
}



.saree-store .title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1px;
}

.saree-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.column.tall .saree-card {
  flex: 1;
}

.stack {
  justify-content: space-between;
}

.saree-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.saree-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.saree-card.full-height {
  height: 600px; /* Adjust this to desired size */
}

.saree-card.half-height {
  height: 290px; /* Half of full-height minus gap */
}

.label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: #ff857c;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
}

/* ---------- Tablet (≤1024px) ---------- */
@media (max-width: 1024px) {
  .saree-grid {
    flex-wrap: wrap;         /* allow wrapping */
    gap: 15px;
  }

  .column {
    flex: 1 1 48%;           /* two columns per row */
  }

  .saree-card.full-height {
    height: 450px;           /* reduce height for smaller screens */
  }

  .saree-card.half-height {
    height: 220px;
  }

  .saree-store .title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

/* ---------- Mobile (≤768px) ---------- */
@media (max-width: 768px) {
  .saree-grid {
    flex-direction: column;  /* stack columns vertically */
    align-items: center;
  }

  .column {
    width: 100%;             /* full width column */
  }

  .saree-card.full-height,
  .saree-card.half-height {
    height: auto;            /* let images resize naturally */
  }

  .saree-store .title {
    font-size: 24px;
  }

  .label {
    font-size: 14px;
    padding: 6px 12px;
  }
}

/* ---------- Small Mobile (≤480px) ---------- */
@media (max-width: 480px) {
  .saree-store {
    padding: 40px 15px;
  }

  .saree-store .title {
    font-size: 20px;
  }

  .label {
    font-size: 12px;
    padding: 5px 10px;
  }
}












/* ===== Stylized Yoga Girl Animation ===== */
.skip-edu-section {
  background: radial-gradient(circle at top right, #070066, #070066 70%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.skip-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

.skip-sub {
  font-size: 16px;
  color: #cfd0f7;
}

/* Frame */
.skip-frame {
  position: relative;
  width: 420px; /* increased width */
  height: 150px; /* increased height */
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.frame-glow {
  position: absolute;

  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,133,124,0.15), transparent 60%);
  filter: blur(20px);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: .7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}



/* Girl */
.yoga-girl {
  position: absolute;
  bottom: 20px;
  width: 130px; /* increased width */
  height: 260px; /* increased height */
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: breathe 1s ease-in-out infinite;
}
@keyframes breathe {
  0%,100% { transform: translateY(0) scaleY(1); }
  50% { transform: translateY(-5px) scaleY(1.03); }
}

.hair {
  width: 90px; /* increased */
  height: 50px; /* increased */
  background: linear-gradient(180deg, #601a3a, #ffbcae);
  border-radius: 50px 50px 20px 20px;
  position: absolute;
  top: 0;
}

.head {
  width: 65px; /* increased */
  height: 65px; /* increased */
  background: #ffd9c8;
  border-radius: 50%;
  margin-top: 25px;
  z-index: 2;
}

/* Body */
.body {
  position: relative;
  width: 80px; /* increased */
  height: 130px; /* increased */
  background: linear-gradient(180deg, #ff857c, #ffb4a8);
  border-radius: 35px 35px 10px 10px;
  margin-top: 15px;
  z-index: 1;
  animation: poseChange 12s ease-in-out infinite;
}

/* Arms */
.arm {
  position: absolute;
  top: 15px;
  width: 20px; /* thicker arms */
  height: 100px; /* longer arms */
  background: #ffd9c8;
  border-radius: 10px;
  transform-origin: top center;
}
.arm-left { left: -18px; animation: leftArmPose 12s ease-in-out infinite; }
.arm-right { right: -18px; animation: rightArmPose 12s ease-in-out infinite; }

@keyframes leftArmPose {
  0%,25% { transform: rotate(90deg); } 
  33%,58% { transform: rotate(20deg); }
  66%,100% { transform: rotate(-10deg); }
}
@keyframes rightArmPose {
  0%,25% { transform: rotate(-90deg); }
  33%,58% { transform: rotate(-20deg); }
  66%,100% { transform: rotate(10deg); }
}

/* Legs */
.leg {
  position: absolute;
  bottom: -75px; /* adjusted for taller body */
  width: 20px; /* thicker */
  height: 100px; /* longer */
  background: #11121a;
  border-radius: 10px;
  transform-origin: top center;
}
.leg-left { left: 10px; animation: leftLegPose 12s ease-in-out infinite; }
.leg-right { right: 10px; animation: rightLegPose 12s ease-in-out infinite; }

@keyframes leftLegPose {
  0%,25% { transform: rotate(0deg); }
  33%,58% { transform: rotate(-50deg); }
  66%,100% { transform: rotate(0deg); }
}
@keyframes rightLegPose {
  0%,25% { transform: rotate(0deg); }
  33%,58% { transform: rotate(15deg); }
  66%,100% { transform: rotate(0deg); }
}

/* Wellness Cards */
.wellness-card {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
  color: #fff;
}
.wellness-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-5px);
}
.wellness-card i {
  font-size: 30px;
  margin-bottom: 10px;
}
.wellness-card h5 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

@media (max-width: 768px) {
  .skip-edu-section {
    padding: 60px 15px 40px;
    text-align: center;
    overflow: hidden;
  }

  /* Stack layout */
  .row.align-items-center {
    flex-direction: column !important;
  }

  .col-lg-5,
  .col-lg-7 {
    width: 100%;
    text-align: center;
  }

  /* Fix overlap issue */
  .skip-frame {
    position: relative;
    width: 220px;
    height: 120px;
    margin: 40px auto 25px; /* adds top spacing below heading */
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .yoga-girl {
    position: relative; /* remove absolute so it flows naturally */
    width: 90px;
    height: 160px;
    margin: 0 auto;
    animation: breathe 1s ease-in-out infinite;
  }

  .frame-glow {
    display: none; /* optional: hides glow for smaller screens */
  }

  /* Adjust proportions */
  .body {
    width: 50px;
    height: 90px;
  }

  .hair {
    width: 60px;
    height: 35px;
  }

  .head {
    width: 45px;
    height: 45px;
  }

  .arm {
    width: 12px;
    height: 60px;
  }

  .leg {
    width: 12px;
    height: 65px;
  }

  /* Headline spacing */
  .skip-title {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .skip-sub {
    font-size: 13px;
    margin-bottom: 10px;
  }

  /* Card tweaks */
  .wellness-card {
    padding: 14px;
    margin: 6px 0;
  }

  .wellness-card i {
    font-size: 24px;
  }

  .wellness-card h5 {
    font-size: 14px;
  }
}

























.about-section {
  position: relative;
  width: 100vw;
  overflow: hidden;
  height: auto;
}


.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100vh;
  object-fit: cover;
  z-index: 1;
}





.about-overlay {
  position: relative;
  z-index: 2;
  padding: 100px 20px;
 

}

.about-card {
  max-width: 1100px;
  margin: auto;
  background: radial-gradient(circle at top right, #070066, #070066 70%);
  border-radius: 25px;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  gap: 30px;
}

.about-text {
  flex: 1 1 300px;
}

.about-text h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
}

.about-text p {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 25px;
    text-align: justify;
}

.about-links p {
  font-size: 16px;
  color: #555;
  margin-bottom: 5px;
}

.about-links i {
  margin-right: 8px;
  color: #5271ff;
}

.about-image {
  flex: 1 1 250px;
  text-align: center;
}

.about-image img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}
.about-image video {
  width: 370px;
  height: 370px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  animation: spin 20s linear infinite; /* Add this line */
  transition: transform 0.3s ease;
}





/* ===== Responsive Media Queries for About Section ===== */

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  .about-overlay {
    padding: 80px 20px;
  }

  .about-card {
    flex-direction: column;
    text-align: center;
    padding: 35px 25px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .about-image video {
    width: 300px;
    height: 300px;
  }
}

/* Mobile Devices (≤ 768px) */
@media (max-width: 768px) {
  .about-overlay {
    padding: 60px 15px;
  }

  .about-card {
    flex-direction: column;
    padding: 25px 20px;
    gap: 25px;
  }

  .about-text {
    flex: 1 1 100%;
  }

  .about-text h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .about-text p {
    font-size: 13px;
    line-height: 1.6;
  }

  .about-image video {
    width: 220px;
    height: 220px;
    margin-top: 10px;
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .about-overlay {
    padding: 50px 10px;
  }

  .about-card {
    border-radius: 20px;
    padding: 20px 15px;
  }

  .about-text h2 {
    font-size: 18px;
  }

  .about-text p {
    font-size: 12px;
  }

  .about-image video {
    width: 180px;
    height: 180px;
  }
}














/* ==== Floating WhatsApp & Call Buttons ==== */
.floating-icons {
  position: fixed;
  bottom: 85px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

/* Common styles for both buttons */
.floating-icons a {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* WhatsApp button */
.floating-icons .whatsapp {
  background-color: #25D366;
}

.floating-icons .whatsapp:hover {
  background-color: #1ebe5c;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.8);
}

/* Call button */
.floating-icons .call {
  background-color: blue;
}

.floating-icons .call:hover {
  background-color: #ff6a61;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 133, 124, 0.8);
}

/* Small floating bounce animation */
@keyframes float-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.floating-icons a {
  animation: float-bounce 3s ease-in-out infinite;
}

/* Responsive adjustment */
@media (max-width: 600px) {
  .floating-icons {
    bottom: 15px;
    right: 15px;
    gap: 12px;
  }

  .floating-icons a {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
}



























  
  
  
.pkg-section {
  background: radial-gradient(circle at top right, #070066, #070066 70%);
  padding: 80px 0;
  color: #fff;
  text-align: center;
}

.pkg-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
}

.pkg-subtitle {
  color: #d3d3ff;
  font-size: 1rem;
  margin-bottom: 50px;
}

.pkg-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 14px;
  padding: 30px 40px;
  margin: 30px auto;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  max-width: 850px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #000;
}



.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pkg-img img {
  width: 160px;
  height: auto;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.pkg-card:hover .pkg-img img {
  transform: scale(1.05);
}

.pkg-info {
  flex: 1;
  margin-left: 30px;
  text-align: left;
}

.pkg-card.reverse .pkg-info {
  margin-left: 0;
  margin-right: 30px;
  text-align: right;
}

.pkg-info h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #070066;
  margin-bottom: 10px;
}

.pkg-info p {
  font-size: 1rem;
  color: #000;
  margin: 0;
}

/* Fade animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .pkg-card,
  .pkg-card.reverse {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .pkg-info,
  .pkg-card.reverse .pkg-info {
    margin: 20px 0 0 0;
    text-align: center;
  }

  .pkg-img img {
    width: 120px;
  }
}

/* Two cards per row layout */
.pkg-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.pkg-row .pkg-card {
  flex: 0 0 calc(50% - 15px);
  margin: 0;
}

/* Responsive: 1 card per row on small screens */
@media (max-width: 768px) {
  .pkg-row .pkg-card {
    flex: 0 0 100%;
  }
}












.refer-section {
  background: 
    radial-gradient(circle at top right, rgba(7, 0, 102, 0.85), rgba(7, 0, 102, 0.7)),
    url('../img/5.png') no-repeat center center;
  background-size: cover; /* make it cover the whole section */
  padding: 90px 0; /* optional: adjust top/bottom spacing */
}

.section-title1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
}

.section-subtitle {
  font-size: 1rem;
  color: #ffffff;
}

.refer-card {
  background: #fff;
  border-radius: 15px;
  padding: 7px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.refer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.refer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.refer-header h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #070066;
}

.refer-header span {
  font-size: 1rem;
  color: #070066;
}

















.custom-gallery-wrap {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.custom-gallery-heading {
  font-size: 2em;
  margin-bottom: 0;
  color: red;
  font-weight: bold;
}

.custom-gallery-desc {
  font-size: 1.1em;
  color: #59002d;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.custom-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.custom-gallery-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.custom-gallery-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-gallery-box:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.custom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s ease;
  cursor: pointer;
}

.custom-gallery-box:hover .custom-overlay {
  opacity: 1;
}

/* Lightbox Styles */
.custom-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.custom-lightbox-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.custom-lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
  .custom-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .custom-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Prev/Next Buttons */
.custom-lightbox-prev,
.custom-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: white;
  cursor: pointer;
  padding: 10px;
  user-select: none;
  transition: background 0.3s ease;
}

.custom-lightbox-prev:hover,
.custom-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.custom-lightbox-prev { left: 20px; }
.custom-lightbox-next { right: 20px; }

.view-more-wrapper {
  text-align: center;
  margin: 30px 0 10px;
}

.btn-view-more {
  display: inline-block;
  padding: 12px 28px;
  background-color: #59002d; /* your brand green */
  color: white;
  font-weight: 600;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgb(45 106 79 / 0.3);
  transition: background-color 0.3s ease;
}

.btn-view-more:hover {
  background-color: red;
}






/* Dream Properties Section */
.dream-properties-section {
    background-color: #070066; /* Same dark blue background */
    position: relative;
    overflow: hidden;
}

.dream-properties-section .section-subtitle {
    color: #ff857c; /* Green accent for subtitle */
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.dream-properties-section .section-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.dream-properties-section .section-text {
    color: #f1f1f1;
    font-size: 16px;
    text-align: justify;
    margin-bottom: 15px;
}

/* Optional: Add subtle animation for fade-in effect */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}













/* ==============================
   Health & Wellness Boot Camp Cards
   ============================== */
.bootcamp-section {
  background: radial-gradient(circle at top right, #070066, #070066 70%);
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
  color: #1c1c1c;
  text-align: center;
}

.bootcamp-header {
  max-width: 800px;
  margin: 0 auto 50px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.bootcamp-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.bootcamp-header h2 {
  color: #ffffff;
  font-size: 34px;
  margin-bottom: 10px;
}

.bootcamp-header p {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
}

.bootcamp-intro {
  margin-top: 20px;
  font-size: 16px;
}

.bootcamp-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.bootcamp-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  transition: all 0.4s ease, opacity 0.8s ease;
  border-top: 5px solid #ff857c;
  opacity: 0;
  transform: translateY(40px);
}

.bootcamp-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.bootcamp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.bootcamp-card h3 {
  color: #070066;
  font-size: 22px;
  margin-bottom: 15px;
}

.bootcamp-card p {
  line-height: 1.7;
  font-size: 15px;
  color: #000;
}

.bootcamp-card ul {
  list-style: none;
  padding: 0;
}

.bootcamp-card ul li {
  background: #f1f8f4;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 10px;
  font-size: 15px;
  transition: 0.3s ease;
}

.bootcamp-card ul li:hover {
  background: #e8f5e9;
}

.bootcamp-cta {
  text-align: center;
  border-top: 5px solid #ff857c;
}

.bootcamp-btn {
  display: inline-block;
  background: #ff857c;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  margin-top: 15px;
  transition: 0.3s ease;
}

.bootcamp-btn:hover {
  background: #1b5e20;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .bootcamp-header h2 { font-size: 28px; }
  .bootcamp-card { padding: 25px; }
}