/* ---------- GLOBAL ---------- */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #fff8f0;
    color: #000;
}
section {
    padding: 40px 20px;
}
h1, h2 {
    text-align: center;
    color: #ff6c0a;
	padding-bottom: 20px;
}
a {
    text-decoration: none;
}

/* ---------- MARQUEE ---------- */
.marquee {
    background: linear-gradient(90deg, #7a1f1f, #d35400);
    color: #fff;
    padding: 12px 0;
    overflow: hidden;
}
.marquee span {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    font-size: 18px;
}
@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ---------- 3 IMAGE SECTION ---------- */
/* White Text Section */
.astro-text-section {
  background: #fff8f0;
  
}

.astro-text-wrapper {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.astro-text-wrapper h2 {
  color: #7a1f1f;
  font-size: 32px;
  margin-bottom: 5px;
}

.astro-text-wrapper p {
  font-size: 16px;
  color: #444;
  line-height: 1.9;
}

.topheadimg{
	padding: 10px 10px;
}
.three-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.three-images img {
    width: 100%;
    border-radius: 5px;
    transition: transform 0.4s;
}
.three-images img:hover {
    transform: scale(1.05);
}

/* ---------- BLINK TEXT ---------- */
.blink-text {
    background: #7a1f1f;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 20px;
    animation: blink 1s infinite;
}
@keyframes blink {
    50% { background: #d35400; }
}


/* ---------- ABOUT ---------- */
.about{
	    background: #7c201e;
}
.about p {
  color: #fff;
    margin: auto;
	font-size:17px;
    text-align: center;
    line-height: 2.5;
}
.about strong {
 color:#ff6c0a;
}
/* ---------- SERVICES (6) ---------- */
.astoser1{
	background-color:#000;
}
.astoser1 h2{
	color:#fff;
	font-weight:bold;
	padding-bottom: 30px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.service-box {
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
	transition: all 0.4s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.service-box img {
    width: 100%;
	 border-radius: 15px;
	 overflow: hidden;
  border-radius: 12px;
  transition: transform 0.5s ease;
}
.service-box:hover img{
	 transform: scale(1.15);
}
.service-box:hover{
	box-shadow: 0 10px 25px rgba(122,31,31,0.4);
}
.call-btn {
    display: inline-block;
    margin: 10px;
    background: #7a1f1f;
    color: #fff;
    padding: 10px;
    border-radius: 30px;
}
.astro-service {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.astro-service h3{
	color:#7c201e;
	font-weight:bold;
	font-size: 18px;
}
.astro-img {
  overflow: hidden;
  border-radius: 12px;
}

.astro-img img {
  width: 100%;
  transition: transform 0.5s ease;
}

.astro-service:hover img {
  transform: scale(1.15);
}

.astro-service:hover {
  box-shadow: 0 10px 25px rgba(122,31,31,0.4);
}

/* ---------- WHY CHOOSE US ---------- */
.why-choose-astro {
  background: #7c201e;
  padding: 50px 20px;
}

.why-choose-astro h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
  font-size: 32px;
}

.choose-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.choose-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.choose-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 30px rgba(122,31,31,0.35);
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7a1f1f, #d35400);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin: 0 auto 20px;
  box-shadow: 0 0 15px rgba(122,31,31,0.6);
  transition: transform 0.4s;
}

.choose-card:hover .icon-circle {
  transform: rotate(360deg) scale(1.1);
}

.choose-card h3 {
  color: #7a1f1f;
  margin-bottom: 10px;
}

.choose-card p {
  color: #000;
  line-height: 1.6;
  font-size: 16px;
}


/* ---------- BANNER ---------- */
.section banner{
	padding: 0px;
	width:100%;
}
.banner img {
    width: 100%;
       border-top: 10px solid #fff;
}

/* ---------- HOVER SERVICES ---------- */
.speasstrolo{
	background-color:#7c201e;
}
.hover-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.hover-card {
    background: #fff;
    border-radius: 15px;
	    padding: 10px;
    overflow: hidden;
	text-align:center;
    transition: transform 0.4s, box-shadow 0.4s;
}
.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.hover-card img {
    width: 100%;
}
.hover-card h3 {
    color:#7c201e;
}

/* ---------- FEEDBACK ---------- */
.feedback {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.feedback-box {
    background: #7c201e;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}
.feedback-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
	    border: 2px solid #fff;
}
.feedback-box h4{
	color:#d35400;
	font-weight:bold;
	    font-size: 20px;
}
.feedback-box p{
	color:#fff;
}
/* ---------- FOOTER ---------- */
footer {
    background: #7a1f1f;
    color: #fff;
    padding: 40px 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}
footer a {
    color: #fff;
	font-weight:bold;
}
/* FOOTER BOTTOM / COPYRIGHT */
.footer-bottom{
  text-align:center;
  background:#0a0a0a;
  padding:15px 20px;
  font-size:14px;
  color:#fff;
  border-top:2px solid #fff;
}
/* =============================== */
/* FLOATING BUTTONS */
/* =============================== */
/* Floating Buttons Base */
.float-whatsapp, .float-call{
    position: fixed;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    box-shadow: 0 0 15px rgba(255,0,0,0.6);
    animation: pulse 1.5s infinite;
}

.float-whatsapp img,
.float-call img{
    width: 35px;
    filter: brightness(0) invert(1);
}

/* Position */
.float-whatsapp{
    bottom: 120px;
    background:#25D366;
    box-shadow:0 0 12px #25D366;
	color: #fff;
}

.float-call{
    bottom: 40px;
    background:#e60000;
    box-shadow:0 0 12px #e60000;
	color: #fff;
}

/* Hover */
.float-whatsapp:hover, .float-call:hover{
    transform: scale(1.15);
    transition: 0.3s;
}

/* Glow Animation */
@keyframes pulse {
  0% { box-shadow: 0 0 10px #ff0000; }
  50% { box-shadow: 0 0 25px #ff0000; }
  100% { box-shadow: 0 0 10px #ff0000; }
}

/* ICONS */
.icon{font-size:25px;}