* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  stroke-dasharray: smooth;
}

body {
  font-family: Arial, sans-serif;
}

/* Top Bar */
.top-bar-container {
  display: flex;
  justify-content: space-between;
  padding: 12px 24px;
  background: #940c0c;
}

.top-alert {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}

.top-purchase {
  padding-right: 100px;
  color: #f8ec46;
  font-weight: bold;
  font-size: 18px;
}
/* Navigation Header */
.main-header {
  background: #052850;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 55px;
}

.brand-title {
  font-size: 24px;
  margin-left: 20px;
  font-weight: bold;
  color: yellow;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #ffd700;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-right: 20px;
}
.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin-bottom: 4px;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #052850;
    position: absolute;

    top: 70px;
    left: 0;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-links li {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #1a355e;
  }
}

/* Hero Banner */
.hero-banner {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-banner .banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Floating Buttons */
.sticky-icons {
  position: fixed;
  bottom: 80px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.sticky-icons a {
  width: 45px;
  height: 45px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform 0.2s;
}

.sticky-icons a.phone-btn {
  background: #2196f3;
}

.sticky-icons a:hover {
  transform: scale(1.1);
}

.sticky-offer {
  position: fixed;
  bottom: 60px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1000;
}

.sticky-offer a img {
  width: 100px;
  height: auto;
  transition: transform 0.2s ease-in-out;
  cursor: pointer;
}

.sticky-offer a img:hover {
  transform: scale(1.1);
}

.price-alert {
  animation: toggleAlert 1.3s infinite; /* 5s show + 5s hide */
}

@keyframes toggleAlert {
  0%,
  45% {
    opacity: 1;
    visibility: visible;
  }
  50%,
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/*********************************************/
.intro-deepavali-section {
    background-color: #022144;
    background-size: cover;
    padding: 80px 20px; 
    text-align: center;
    position: relative;
    overflow: hidden; 
}


.intro-deepavali-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.95)); 
}

.section-wrap {
  margin: 75px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative; 
    z-index: 2;
}

.text-box {
    background: #ffffff; 
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1); 
    position: relative;
    overflow: hidden;
}

.main-title {
    font-family: 'Montserrat', sans-serif; 
    font-size: 3.5em; 
    line-height: 1.2;
    color: #c41919; 
    margin-bottom: 25px;
    position: relative;
    z-index: 3;
    letter-spacing: -1px; }

.main-title .highlight {
    color: #ff8c00; 
    position: relative;
    display: inline-block;
}


.main-title .highlight::after {
    content: '✨'; 
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 0.6em;
    animation: sparkle 1.5s infinite ease-in-out;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}


.desc {
    font-family: 'Poppins', sans-serif; 
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.desc strong {
    color: #c41919; 
    font-weight: 600; 
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .intro-deepavali-section {
        padding: 50px 15px;
    }
    .text-box {
        padding: 30px;
    }
    .main-title {
        font-size: 2.5em;
    }
    .desc {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2em;
    }
    .main-title .highlight::after {
        top: -5px;
        right: -10px;
        font-size: 0.5em;
    }
}

.specialities {
  text-align: center;
  padding: 60px 20px;
}

.special-title {
 font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: bold;
  color: #7e0a0a;
  margin-bottom: 10px;
}

.special-subtitle {
  max-width: 880px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.special-grid {
  /*display: grid;
  grid-template-columns: repeat(4, 1fr);;
  gap: 40px;
  justify-items: center;
  padding: 0px 40px;
 
;*/
display: flex;
  gap: 40px;
    justify-items: center;
    padding: 10px 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.special-item img {
  width: 150px;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

.special-item img:hover {
  transform: scale(1.1);
}

.special-item {
  width: 250px;
  height: 250px;
  border: 2px solid #a80031;
  border-radius: 20px 50px 20px 50px;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.special-item p {
  margin-top: 10px;
  font-weight: bold;
  color: #e6005c;
}
/*/**********************************/

/***********************************************/
.why-choose-us {
  text-align: center;
  padding: 40px 20px;
}

.why-choose-us h2 {
  font-size: 48px;
  color: #b30000;
  margin-bottom: 10px;
}

.why-choose-us p {
  max-width: 1200px;
  font-size: 18px;
  margin: 0 auto 30px;
  color: #444;
  line-height: 1.5;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 4 per row */
  gap: 30px;
  justify-items: center;
  margin: 0px 95px;
}

.choose-item {
 background: #cacaca52;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    width: 400px;
    height: auto;
}

.choose-item:hover {
  transform: translateY(-8px);
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.15);
}

.choose-item i {
  font-size: 40px;
  color: #ff0000;
  margin-bottom: 10px;
}

.choose-item h3 {
  font-size: 18px;
  color: #d10000;
  margin-bottom: 8px;
}

.choose-item p {
  font-size: 14px;
  color: #555;
}

/*************************************/
.legal-notice-section-new {
    max-width: 1000px;
    margin: 60px auto;
    padding: 30px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #333;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background:rgba(254, 255, 212, 0.89);
}

.legal-warning-box-new {
    background: linear-gradient(135deg, rgb(103, 58, 183 ,0.8), rgb(63, 81, 181,0.8) );
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    text-align: left;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
}

.legal-warning-box-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.warning-title-new {
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.legal-text {
    font-size: 1.15em;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-text strong {
    color: #f8ec46;
}

.order-process-guide-new {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.order-process-guide-new h3 {
    color: #f8ec46;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 15px;
}

.order-steps {
    list-style: none;
    padding: 0;
}

.order-steps li {
    position: relative;
    font-size: 1.1em;
    margin-bottom: 12px;
    padding-left: 40px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.order-steps li:hover {
    color: #f8ec46;
}

.step-icon {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #f8ec46;
    color: #c41919;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.contact-info-new {
    font-weight: bold;
    font-size: 1.2em;
    color: #f8ec46 !important;
    margin-top: 20px;
}

.compliance-points-new {
    text-align: left;
    margin-bottom: 40px;
}

.compliance-heading-new {
    font-family: 'Montserrat', sans-serif;
    color: #c41919;
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.compliance-heading-new::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f8ec46;
    border-radius: 5px;
}

.compliance-list-new {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.compliance-list-new li {
    font-size: 1.05em;
    line-height: 1.6;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    transform: translateY(0);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.compliance-list-new li:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, rgb(103, 58, 183,0.6) 0%, rgb(63, 81, 181,0.6) 100% );
    color: #333;
}

.check-icon-new {
    font-size: 1.5em;
    margin-right: 15px;
    color: #4CAF50;
    flex-shrink: 0;
}

.final-cta-new {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1.4em;
    color: #c41919;
    margin-top: 50px;
    padding: 20px;
    background-color: #fdf2e9;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .legal-warning-box-new {
        padding: 25px;
    }
    .warning-title-new {
        font-size: 1.5em;
    }
    .legal-text {
        font-size: 1em;
    }
    .order-process-guide-new {
        padding: 20px;
    }
    .order-process-guide-new h3 {
        font-size: 1.2em;
    }
    .order-steps li {
        font-size: 1em;
        padding-left: 35px;
    }
    .step-icon {
        width: 25px;
        height: 25px;
        font-size: 0.8em;
    }
    .compliance-heading-new {
        font-size: 1.5em;
    }
    .compliance-list-new {
        grid-template-columns: 1fr;
    }
    .compliance-list-new li {
        padding: 20px;
    }
    .final-cta-new {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .legal-notice-section-new {
        padding: 15px;
        margin: 30px auto;
    }
    .warning-title-new {
        font-size: 1.3em;
    }
    .legal-warning-box-new {
        padding: 20px;
    }
}

/**********************************************/
.footer {
  background: #022144;
  color: #fff;
  padding: 50px 20px 20px;
  font-size: 14px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
    justify-items: center;
}

.footer h3 {
  color: #ffcc00;
  margin-bottom: 15px;
}

.footer-column p {
  margin: 8px 0;
  line-height: 1.6;
}

.footer-column i {
  margin-right: 8px;
  color: #ffcc00;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  margin-top: 20px;      /* space above */
  text-align: center;
  font-size: 13px;
  color: #ccc;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}



/* Header + Top bar */
@media (max-width: 768px) {
  .top-bar-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 10px;
  }

  .top-purchase {
    padding-right: 0;
    font-size: 16px;
    margin-top: 4px;
  }

  .main-header {
    flex-direction: row;
    padding: 15px 20px;
  }

  .brand-title {
    font-size: 20px;
    margin-left: 0;
  }

  .nav-links li a {
    font-size: 14px;
  }
}

/* Hero Section */
@media (max-width: 768px) {
  .hero-banner {
    height: 250px;
  }

  .hero-banner .banner-img {
    object-position: center;
  }
}

/* Specialities Grid */
@media (max-width: 768px) {
  .special-grid {
    justify-content: center;
    gap: 20px;
    padding: 0 15px;
  }

  .special-item {
    width: 45%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .special-item {
    width: 100%;
  }
}

/* Why Choose Us */
@media (max-width: 768px) {
  .choose-grid {
    grid-template-columns: 1fr 1fr;
    margin: 0 20px;
  }
}

@media (max-width: 480px) {
  .choose-grid {
    grid-template-columns: 1fr;
    margin: 0 10px;
  }

  .choose-item {
    width: 100%;
  }
}

/* Floating buttons */
@media (max-width: 480px) {
  .sticky-icons {
    bottom: 20px;
    left: 10px;
  }

  .sticky-offer {
    bottom: 20px;
    right: 10px;
  }

  .sticky-offer a img {
    width: 80px;
  }
}

/* Footer */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-column p {
    font-size: 13px;
  }
}
.slider{
  width:100%;
  height:400px;
  position:relative;
  overflow:hidden;
}
.slide{
  width:100%;
  height:400px;
  position:absolute;
  top:0;
  left:0;
  opacity:0;
  transition:opacity 1s ease-in-out;
}
.slide.active{
  opacity:1;
  z-index:1;
}
.navigation-button{
  text-align:center;
  margin-top:20px;
}
.dot {
  cursor:pointer;
  height:15px;
  width:15px;
  margin:0 2px;
  background-color: #bbb;
  border-radius:50%;
  display:inline-block;
}
.dot.active {
  background-color: #717171;
}
/**@media (max-width: 768px) {

  .slider {
    display: none !important;
  }
  .navigation-button {
    display: none !important;
  }
  .nav-links li {
    display: block;
  }
}**/