* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #00b4d8;
  --accent: #ffd700;
  --dark-bg: #0e1117;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --border-glow: rgba(255, 255, 255, 0.15);
  --edge-glow: rgba(0, 180, 216, 0.4);
  --primary-light: #90e0ef;
  --light-bg: #1e293b;
  --border: rgba(255, 255, 255, 0.15);
  --shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
  --glow: 0 0 18px rgba(0, 180, 216, 0.35);
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #e2e8f0;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
}

p {
  font-family: "Trebuchet MS", Helvetica, sans-serif;
}

/* BACKGROUND EFFECT */
body::before {
  content: '';
  position: fixed;
  top: -200px;
  left: -200px;
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle at center, #1e3a8a 0%, transparent 70%);
  z-index: -2;
  filter: blur(160px);
  opacity: 0.3;
  animation: slowRotate 60s linear infinite;
}

@keyframes slowRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


.hero {
  height: 100vh;
  width: 100%;
  background-image: url('images/your-image.png');
  /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* overlay for readability */
  z-index: 0;
}

.hero h2,
.hero p,
.hero .cta-button {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-size: 20px;
  max-width: 700px;
  margin-bottom: 30px;
  color: #e0e0e0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  line-height: 30px;
}

.cta-button {
  background-color: #00b4d8;
  color: #FFFFFF;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #90e0ef;
  color: #fff;
}

.footer {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #e2e8f0;
  padding: 100px 0px 60px;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

.footer-bg-shapes::before,
.footer-bg-shapes::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
}

.footer-bg-shapes::before {
  top: -80px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: #00b4d8;
}

.footer-bg-shapes::after {
  bottom: -60px;
  right: -40px;
  width: 250px;
  height: 250px;
  background: #3b82f6;
}

.footer-container {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
}

.footer-brand img {
  width: 160px;
  filter: brightness(150%);
}

.footer-brand p {
  max-width: 300px;
}

.footer-links h4,
.footer-newsletter h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: #00b4d8;
  padding-left: 5px;
}

.footer-appointments {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px;
  border-radius: 20px;
  box-shadow: inset 2px 2px 6px rgba(255, 255, 255, 0.1),
    inset -2px -2px 6px rgba(0, 0, 0, 0.2),
    0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
  color: #fff;
  max-width: 450px;
}

.footer-appointments h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-appointments p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e0e0e0;
  margin-bottom: 16px;
}

.appointment-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  background: #38bdf9;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.appointment-btn:hover {
  transform: translateY(-2px);
  background: #00b4d8;
}

/* ========== Responsive Footer Layout ========== */

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}

.footer-brand,
.footer-links,
.footer-appointments {
  flex: 1 1 250px;
}

.footer-brand {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.5;
}

/* ========== About Page CSS Starts ========== */
.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('images/about.png') center center / cover no-repeat;
  padding: 115px 20px;
  text-align: center;
  animation: zoomHero 25s ease-in-out infinite alternate;
  position: relative;
  color: #fff;
  overflow: hidden;
  height: 60vh;
}

@keyframes zoomHero {
  0% {
    background-size: 100%;
  }

  100% {
    background-size: 105%;
  }
}


.about-hero h2 {
  font-size: 3.2rem;
  z-index: 2;
  position: relative;
  letter-spacing: 2px;
  color: #ffffff;
}

.about-hero p {
  font-size: 20px;
  max-width: 800px;
  margin-bottom: 30px !important;
  color: #e0e0e0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  line-height: 30px;
  margin: 0 auto;
}

.about-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 100px 20px;
  gap: 50px;
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.whyChoose-section {
  padding: 0px 0px 80px 0px;
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 80px 20px;
  max-width: 90%;
  margin: auto;
  margin-top: 10px;
}

.section h2 {
  color: var(--primary);
  font-size: 2.2rem;
  text-align: center;
  padding: 8px;
}

.section p {
  font-size: 1rem;
  color: #fff;
  text-align: center;
  line-height: 1.8;
}

.why-us {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 4%;
}

.why-card {
  background: #00b4d8;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(14px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease-in-out;
}

.why-card h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(0, 180, 216, 0.3);
}

.why-card i {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
}

.cta {
  text-align: center;
  background: linear-gradient(to right, #002233, #000);
  padding: 100px 20px;
  border-top: 1px solid var(--border);
  position: relative;
}

.cta::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.1;
  filter: blur(60px);
}

.cta h3 {
  font-size: 32px;
  color: #e2e8f0;
  margin-bottom: 10px;
}

.cta p {
  margin-bottom: 10px;
  color: #cbd5e1;
}

.cta>a.cta-button {
  margin-top: 25px;
  display: inline-block;
}

.cta a {
  background-color: var(--primary);
  color: #fff;
  padding: 16px 42px;
  border-radius: 14px;
  font-weight: bold;
  font-size: 17px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 180, 216, 0.4);
  transition: all 0.35s ease;
}

.cta a:hover {
  background-color: var(--primary-light);
  transform: scale(1.06);
  box-shadow: 0 8px 30px rgba(0, 180, 216, 0.55);
}

.abc-button {
  background-color: #00b4d8;
  color: #FFFFFF;
  border: none;
  padding: 12px 28px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.abc-button:hover {
  background-color: #90e0ef;
  color: black;
}


.imgWithText {
  display: flex;
  gap: 50px;
  align-items: center;
}

.text p {
  text-align: justify;
  color: #fff;
  line-height: 1.9;
  font-weight: bold;
}

.image-block-left img, .image-block-right img {
  border-radius: 20px;
  height: 460px;
  width: 613px;
  object-fit: fill;
}


.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  text-align: center;
  font-size: 30px;
  line-height: 55px;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

/* Icon inside WhatsApp Button */
.whatsapp-float img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

/* Hover effect on the icon */
.whatsapp-float:hover img {
  transform: rotate(360deg);
}



/* ========== About Page CSS Ends ========== */

/* ========== Service Page CSS Starts ========== */
.service-hero {
  position: relative;
  height: 70vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  padding: 0 20px;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(31, 41, 55, 0.7));
  z-index: 0;
}

.slider-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.slider-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  animation: slideFadeZoom 20s infinite;
  transition: opacity 1s ease-in-out;
}

@keyframes slideFadeZoom {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }

  5% {
    opacity: 1;
    transform: scale(1);
  }

  25% {
    opacity: 1;
    transform: scale(1);
  }

  30% {
    opacity: 0;
    transform: scale(1.05);
  }

  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}


.slider-wrapper img:nth-child(1) {
  animation-delay: 0s;
}

.slider-wrapper img:nth-child(2) {
  animation-delay: 5s;
}

.slider-wrapper img:nth-child(3) {
  animation-delay: 10s;
}

.slider-wrapper img:nth-child(4) {
  animation-delay: 15s;
}



.service-hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffffff;
  z-index: 2;
  position: relative;
}

.service-hero h1::after {
  content: '';
  width: 80px;
  height: 4px;
  background: #38bdf8;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.service-hero p {
  font-size: 20px;
  color: #d1d5db;
  margin-top: 20px;
  z-index: 2;
  position: relative;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  padding: 70px 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.6s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.service-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: filter 0.4s ease;
  opacity: 0;
  /* Keep images hidden initially */
  animation: fadeIn 1.5s forwards;
  animation-delay: 1s;
  /* Delay image load */
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 350px;
  width: 100%;
  background: rgb(0 0 0 / 50%);
  /* black overlay */
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}


@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.service-card-content {
  padding: 25px;
}

.service-card h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: #fff;
}

.image-caption {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  text-align: center;
  pointer-events: none;
  text-shadow: 1px 1px 3px #000;
}

.service-card:hover .image-caption {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
  z-index: 1;
}

.services-container.hover-active .service-card:not(:hover) img {
  filter: blur(2px) brightness(0.7);
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(to right, #000, #1e3a8a);
  padding: 50px 20px;
  text-align: center;
  color: #fff;
}

.cta-section h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-section a {
  padding: 12px 30px;
  background-color: #fff;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
}

.stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.stat-item {
  font-size: 24px;
  color: #38bdf8;
}

.stat-item span {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
}

/********* Service Detail Page starts *********/
section.detailpage-section, .specs-section {
  padding: 50px 20px;
  margin: auto;
}
section.features-section, section.benefits-section, section.whyChoose-section, section.sdfeatures-section {
  width: 80%;
  margin: 40px auto;
  text-align: justify;
}
h3.details-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
}
section#detailpage {
  text-align: unset;
}
.sdfeatures-section > ul{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 40px;
	margin: 0;
	padding: 0;
}

.sdfeatures-section > ul li{
	width: 48%;
	position: relative;
	text-transform: capitalize;
	padding-left: 35px;
  font-size: 1.2rem;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
}

.sdfeatures-section > ul li:before{
	content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 22px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}
.sdetail-featuredimgSection {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
}

img.sdetail-featuredimage {
  width: 500px;
  height: 500px;
  object-fit: contain;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
img.sdetail-featuredimage:hover {
transform: translateY(-10px);
}
.whyChoose-section p, .benefits-section p{
  text-align: justify;
  margin-bottom: 10px;
}
section.whyChoose-section .image-block-left img{
    width: 550px;
    height: 400px;
    object-fit: cover;
}

.footer-bg-shapes::after {
  content: none;
}

.cta::after {
  content: none;
}
table.specsTable {
  border: none;
  border-spacing: 10px;
  max-width: 800px;
  margin: 0 auto;
}
table.specsTable tr{
border: transparent;
}
table.specsTable tr td:first-child {
  border-left: 4px solid var(--edge-glow);
}
table.specsTable tr td {
  background: var(--glass-bg);
  border: 1px solid var(--border-glow);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  backdrop-filter: blur(10px);
  padding: 10px 25px;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
}

table.specsTable tr th {
  border: transparent;
  background: rgb(255 255 255 / 93%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  backdrop-filter: blur(10px);
  padding: 10px 25px;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-size: 1.2rem;
  text-align: left;
  color: var(--primary);
}

table.specsTable tr th:first-child {
  width: 33%;
}

/* Testimonials */
.testimonials {
  background: #1f2937;
  padding: 60px 20px;
}

.testimonial {
  max-width: 700px;
  margin: 0 auto 30px;
  background: #0f172a;
  padding: 30px;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.testimonial p {
  font-size: 18px;
  line-height: 1.6;
}

.testimonial h4 {
  margin-top: 15px;
  font-size: 20px;
  color: #38bdf8;
}

.testimonials h2 {
  margin-top: -45px;
  font-size: 25px;
  color: #fff;
  text-align: center;
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #1e293b;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  background: #334155;
  color: #fff;
}

.faq-answer {
  padding: 20px;
  display: none;
  font-size: 16px;
  background: #1e293b;
  color: #e2e8f0;
}


/* ========== Service Page CSS Ends ========== */

/* ========== Gallery Page CSS Starts ========== */

.gallery-hero {
  padding: 115px 20px;
  text-align: center;
  background: radial-gradient(circle at center, #001f3f 0%, #000 100%);
  position: relative;
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 44vh;
}

.gallery-hero::before,
.gallery-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(80px);
}

.gallery-hero::before {
  top: -100px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: var(--primary-light);
}

.gallery-hero::after {
  bottom: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: var(--primary);
}

.gallery-hero h1 {
  font-size: 3.2rem;
  z-index: 2;
  position: relative;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.6);
}

.gallery-hero p {
  font-size: 20px;
  color: #cbd5e1;
  margin-top: 10px;
  z-index: 2;
  position: relative;
  max-width: 700px;
  margin-inline: auto;
}

.gallery-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 0px 100px 0px;
  gap: 50px;
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 10px;
}

.filter-buttons button {
  background: var(--glass-bg);
  color: #f1f5f9;
  border: 1px solid var(--border);
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 600;
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.35s ease;
  letter-spacing: 0.5px;
}

.filter-buttons button:hover,
.filter-buttons button.active {
  background: var(--primary-light);
  color: #0f172a;
  transform: translateY(-4px);
  box-shadow: var(--glow);
}

.filter-buttons button.active {
  transform: translateY(-0px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  height: auto;
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 20px 80px;
}

.gallery-item {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 24px rgba(0, 180, 216, 0.3);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  width: 100%;
  text-align: center;
  padding: 14px 12px;
  font-size: 15px;
  backdrop-filter: blur(6px);
  font-weight: 500;
}

/* ========== Gallery Page CSS Ends ========== */

/* ========== Contact Page CSS Starts ========== */

/* CONTACT HERO */
.contact-hero {
  padding: 115px 20px;
  text-align: center;
  background: radial-gradient(circle at center, #001f3f 0%, #000 100%);
  /* background: linear-gradient(to right, #001f3f, #000); */
  box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.02);
  position: relative;
  height: 44vh;
}

.contact-hero h1 {
  font-size: 3.2rem;
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.6);
}

.contact-hero p {
  font-size: 20px;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto;
  margin-top: 10px;
}

/* CONTACT SECTION */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 100px 20px;
  gap: 50px;
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* GLASS PANEL STYLE */
.contact-form, .contact-info {
  flex: 1;
  min-width: 350px;
  background: var(--glass-bg);
  border: 1px solid var(--border-glow);
  border-left: 4px solid var(--edge-glow);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.contact-form:hover, .contact-info:hover {
  transform: translateY(-10px);
}

.contact-form h2,
.contact-info h2 {
  color: var(--primary);
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  margin-bottom: 20px;
  font-size: 15px;
  transition: border 0.3s ease, background 0.3s ease;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.contact-form button {
  background: linear-gradient(135deg, var(--primary), #90e0ef);
  color: #fff;
  font-weight: bold;
  font-family: sans-serif;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.contact-form button:hover {
  transform: scale(1.03);
  background: linear-gradient(135deg, #48cae4, #00b4d8);
}

.contact-info p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-left: 3px solid var(--primary);
  transition: border-left 0.3s ease;
  border-radius: 8px;
  gap: 15px;
}

.contact-form a {
  background: linear-gradient(135deg, var(--primary), #90e0ef);
  color: #fff;
  font-weight: bold;
  font-family: sans-serif;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.contact-form a:hover {
  transform: scale(1.03);
  background: linear-gradient(135deg, #48cae4, #00b4d8);
}

.contact-info a {
  text-decoration: none;
  color: #90e0ef;
  transition: color 0.3s ease;
}

/* .contact-info a:hover{
                     color:var(--accent);
                     text-decoration:underline;
                     }                */
.contact-info p i {
  min-width: 25px;
  text-align: center;
}


.contact-info p:hover {
  border-left: 3px solid var(--primary);
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding-left: 12px;
}

.contact-info i {
  color: #fff;
  margin-left: 10px;
  font-size: 1.5rem;
}

/* MAP */
.map-container {
  margin: 40px auto 80px auto;
  max-width: 70%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  z-index: 2;
  position: relative;
}

iframe {
  width: 100%;
  height: 400px;
  border: none;
}



.contact-info strong {
  color: #fff;
}

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.captcha {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.CaptchaField.input-box {
  width: 100%;
  margin-left: 25px;
}

label.captchaLabel {
  font-size: 24px;
  font-weight: 500;
  display: flex;
}

label.captchaLabel>small {
  color: #dc0018;
  font-size: 25px;
}

span.captchaValue {
  display: flex;
  font-size: 30px;
  gap: 8px;
  font-family: cursive;
}

.CaptchaField.input-box>input {
  margin-bottom: 0;
}

.contact-formDiv>a {
  float: right;
}

/* ========== Contact Page CSS Ends ========== */




.footer-social {
  text-align: center;
}

.footer-social a {
  display: inline-block;
  color: #f1f5f9;
  margin: 0 10px;
  font-size: 20px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #38bdf8;
  transform: scale(1.2);
}

.footer-info {
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.footer-info a {
  color: #90e0ef;
  text-decoration: none;
}

/* === Back to Top Button (Advanced Glassmorphism Style) === */
/* === Back to Top Button (Sky Blue Themed, No Overlap) === */
.back-to-top {
  position: fixed;
  bottom: 90px;
  /* moved up to avoid overlapping WhatsApp */
  right: 25px;
  z-index: 999;
  width: 55px;
  height: 55px;
  font-size: 29px;
  font-weight: bold;
  border-radius: 50%;
  background: #38bdf8;
  /* subtle sky-blue tint */
  border: 1px solid rgba(56, 189, 248, 0.15);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top:hover {
  background: #00b4d8;
  transform: translateY(-4px) scale(1.05);
}

/* Animation for fadeIn */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonials {
  background: #1f2937;
  padding: 60px 20px;
}

.testimonial {
  max-width: 700px;
  margin: 0 auto 30px;
  background: #0f172a;
  padding: 30px;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.testimonial p {
  font-size: 18px;
  line-height: 1.6;
}

.testimonial h4 {
  margin-top: 15px;
  font-size: 20px;
  color: #38bdf8;
}

.testimonials h2 {
  margin-top: -45px;
  font-size: 25px;
  color: #fff;
  text-align: center;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.heading-section {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}

/* Services Section */
.services-section {
  padding: 80px 0px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  max-width: 1300px;
  margin: 0 auto;
}

.services-grid img {
  width: 300px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.services-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.2);
}

.center-button {
  text-align: center;
  margin-top: 40px;
}

.center-button .cta-button {
  background-color: #38bdf8;
  color: #fff;
  border: none;
  padding: 14px 28px;
  margin-top: -10%;
  font-size: 18px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.center-button .cta-button:hover {
  transform: translateY(-2px);
  background: #00b4d8;
}

/* Trust Section */
.carousel-container {
  overflow: hidden;
  position: relative;
  max-width: 100%;
  margin: auto;
}

.trust-carousel {
  display: flex;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.trust-carousel img {
  width: 200px;
  margin: 0 10px;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dots .dot.active {
  background-color: #333;
}


.trust-carousel img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.2);
}

#gallerypage.gallery-section {
  padding: 60px 20px;
  text-align: center;
}

section.gallery-section>.content2 {
  margin-top: 0;
  padding: 0px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 10px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.heading {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}


/* Content Wrapper Style */
.content-wrapper {
  transition: margin-top 0.3s ease;
}

.content-wrapper.shifted {
  margin-top: 460px;
  /* Same as nav height */
}


.content1 {
  position: relative;
  z-index: 2;
  padding: 50px 0;
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: center;
  animation: fadeInUp 1.2s ease-in-out both;
}

.content1 p {
  max-width: 70%;
  margin: 0 auto;
  color: #fff;
  background-color: #00b4d8;
  padding: 20px 25px;
  border-radius: 20px;
  box-shadow: inset 0 0 15px rgba(0, 242, 254, 0.1);
  transition: transform 0.3s ease;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
}

.content1 p:hover {
  transform: scale(1.02);
}

.content2 {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: center;
  margin-top: -1.5%;
  animation: fadeInUp 1.2s ease-in-out both;
}

.content2 p {
  max-width: 70%;
  margin: 0 auto;
  color: #fff;
  background-color: #00b4d8;
  padding: 20px 25px;
  border-radius: 20px;
  box-shadow: inset 0 0 15px rgba(0, 242, 254, 0.1);
  transition: transform 0.3s ease;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
}

.content2 p:hover {
  transform: scale(1.02);
}


.image-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.image-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.image-modal .modal-content {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.image-modal.show .modal-content {
  transform: scale(1);
  opacity: 1;
}

.image-modal .close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 36px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10000;
}


.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.footer-social-icons {
  margin-top: 30px;
}


/* For very small mobile screens (like phones in portrait mode) */
@media only screen and (max-width: 480px) {
  .content1 p, .content2 p {
    font-size: 13px;
  }

  /* Further adjustments for very small screens */
  body {
    font-size: 12px;
  }

  .about-hero h2 {
    font-size: 24px;
  }

  .section h2 {
    font-size: 1rem;
  }

  .section p {
    font-size: 0.8rem;
  }

  .why-us {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .cta h3 {
    font-size: 20px;
  }

  .cta>a.cta-button {
    margin-top: 15px;
  }

  .cta a {
    padding: 10px 25px;
    font-size: 0.85rem;
    border-radius: 8px;
  }

  .whatsapp-float {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .whatsapp-float img {
    width: 40px;
    height: 40px;
  }

  .heading h2 {
    font-size: 1.5rem;
  }

  .heading p {
    font-size: 0.85rem;
  }

  .footer-appointments h4 {
    font-size: 1.25rem;
  }

  .footer-appointments p {
    font-size: 0.95rem;
  }

  .appointment-btn {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  body::before {
    content: none;
  }

  .container {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    padding: 0 15px;
  }

  header.header>.container {
    padding: 15px;
  }

  .content-wrapper.shifted {
    margin-top: 280px;
  }

  .logo-text h1 {
    font-size: 22px;
  }

  .logo img {
    width: 50px;
    height: 50px;
  }

  .hero {
    padding: 0 15px;
  }

  .hero h2 {
    font-size: 35px;
  }

  .section-heading {
    font-size: 29px;
  }

  /* Services Section */
  .services-section {
    padding: 30px 10px;
  }

  .services-section .section-heading {
    font-size: 32px;
    text-align: center;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .services-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
  }

  .center-button {
    text-align: center;
    margin: 0 auto 20px auto;
    width: 100%;
  }

  .center-button .cta-button {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    padding: 20px;
    font-family: sans-serif;
    margin: 0 auto;
    display: inline-block;
    width: 100%;
  }

  .imgWithText {
    flex-direction: column;
    gap: 25px;
  }

  /* Gallery Section */
  .gallery-section {
    font-size: 20px;
    gap: 25px;
    padding: 25px 15px;
  }

  .gallery-section .heading {
    font-size: 20px;
    text-align: center;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0;
  }

  .gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
  }

  /* (Optional) Trust Carousel - if uncommented later */
  .carousel-container {
    overflow-x: auto;
    padding: 10px;
  }

  .trust-carousel {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .trust-carousel img {
    width: 100px;
    height: auto;
    flex-shrink: 0;
    border-radius: 4px;
  }

  .carousel-dots {
    text-align: center;
    margin-top: 10px;
  }

  .dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
  }

  .dot.active {
    background: #000;
  }

  .service-hero h1 {
    font-size: 29px;
  }

  .service-hero p {
    font-size: 16px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card p {
    font-size: 14px;
  }

  .cta-section h2 {
    font-size: 24px;
  }

  .cta-section p {
    font-size: 16px;
  }



  .heading h2 {
    font-size: 1rem;
    margin-left: 10%;
    width: 80%;
  }

  .text p {
    font-size: 15px;
    width: 100%;
    line-height: 1.6;
  }

  .image-block-left img, .image-block-right img {
    width: 100%;
    height: auto;
  }

  .text1 p {
    font-size: 1rem;
    width: 90%;
    margin-top: 20px;
    margin-left: 20px;
  }

  /* About Hero Section */
  .about-hero {
    padding: 80px 20px;
    text-align: center;
    background-size: cover;
    height: 49vh;
  }

  .about-hero .hero-content {
    max-width: 100%;
    height: auto;
  }

  .about-hero h2, .gallery-hero h1 {
    font-size: 25px;
    margin-top: 0px;
  }

  .about-hero p, .gallery-hero p {
    font-size: 1rem;
    max-width: 100%;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .about-section {
    padding: 50px 15px;
    max-width: 100%;
    gap: 25px;
  }

  .gallery-hero {
    padding: 80px 15px;
  }

  /* Section Adjustments */
  .section {
    padding: 60px 20px;
    margin-top: 5%;
  }

  .section h2 {
    font-size: 1rem;
    text-align: center;
    width: 100%;
    padding: 10px;
  }

  .section p {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.6;
  }

  .why-us {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 0%;
  }

  .why-card h4 {
    margin-bottom: 0px;
  }

  .why-card {
    padding: 20px;
    /* Less padding in each card */
  }

  .why-card>p {
    font-size: 14px;
  }

  .service-hero {
    height: 50vh;
    padding: 0 15px;
  }

  .services-container {
    padding: 70px 0;
  }

  .image-caption {
    top: 35%;
  }

  .cta {
    padding: 40px 20px;
    /* Reduced padding */
  }

  .cta h3 {
    font-size: 24px;
    /* Smaller heading font size */
  }

  .cta a {
    padding: 12px 30px;
    /* Smaller button size */
    font-size: 0.9rem;
    /* Smaller font size */
  }

  /* WhatsApp Button */
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 26px;
    /* Smaller icon size */
  }

  .whatsapp-float img {
    width: 45px;
    height: 45px;
  }

  .why-card {
    margin-top: 15px;
  }

  .captcha {
    gap: 0;
    flex-wrap: wrap;
  }

  label.captchaLabel {
    font-size: 14px;
    align-items: center;
  }

  .CaptchaField.input-box {
    flex-basis: 100%;
    margin-left: 0;
  }

  .contact-form textarea {
    margin-bottom: 0px;
  }

  .contact-form a {
    padding: 10px 25px;
    font-size: 0.85rem;
    border-radius: 8px;
  }

  .contact-info p {
    font-size: 14px;
    flex-direction: column;
    padding: 8px 15px;
    border-top: 3px solid var(--primary);
    border-left: 1px solid transparent;
    gap: 8px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer {
    padding: 50px 15px 40px 15px;
  }

  .footer-bg-shapes::after {
    bottom: 0;
    right: 0;
    width: auto;
    height: auto;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-brand img {
    max-width: 120px;
  }

  .footer-brand p,
  .footer-links ul,
  .footer-appointments p {
    font-size: 0.95rem;
  }

  .footer-appointments {
    margin-top: 20px;
    max-width: 100%;
  }

  .footer-social-icons {
    margin-top: 10px;
    text-align: center;
  }

  .appointment-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
  }

  .contact-hero {
    padding: 80px 15px;
  }

  .contact-section {
    flex-direction: column;
    align-items: center;
    padding: 60px 15px;
    max-width: 100%;
  }

  .contact-form, .contact-info {
    min-width: 100%;
    padding: 15px;
  }

  .contact-hero h1 {
    font-size: 25px;
  }

  .contact-hero p {
    font-size: 1rem;
    max-width: 100%;
  }

  /* Content Sections */
  .content1, .content2 {
    padding: 0px;
    width: 100%;
    margin-left: 0%;
  }

  .content1 p, .content2 p {
    font-size: 14px;
    max-width: 100%;
    margin: 30px auto;
    padding: 20px;
    text-align: justify;
  }

  .content2 p {
    margin: 0px auto;
  }

  .footer-top {
    flex-direction: row;
    text-align: center;
    padding: 15px;
  }

  .footer-container {
    max-width: 100%;
  }

  .footer-info>p>span {
    display: block;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 22px;
    right: 20px;
    bottom: 70px;
  }

  .map-container {
    margin: 0px auto 40px;
    max-width: 100%;
    padding: 0 15px;
  }

  .map-container>iframe {
    height: 250px;
  }
}


/* Tablets (portrait and small laptops, 601px to 991px) */
@media only screen and (min-width: 769px) and (max-width: 991px) {
  body::before {
    content: none;
  }

  .gallery-hero, .contact-hero, .about-hero {
    padding: 100px 20px;
    height: 30vh;
  }

  .about-hero {
    padding: 80px 30px;
    height: 35vh;
  }

  .hero {
    height: 70vh;
  }

  .hero p {
    font-size: 24px;
  }

  .gallery-section {
    max-width: 991px;
    width: 100%;
    padding: 40px 30px 100px 30px;
  }

  .section-heading {
    font-size: 2.1rem;
  }

  .imgWithText {
    flex-direction: column;
  }

  .service-hero {
    height: 50vh;
  }

  .services-grid {
    max-width: 991px;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 30px;
  }

  .services-grid img {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-bg-shapes::before, .footer-bg-shapes::after, .cta::after {
    content: none;
  }

  .contact-section {
    flex-direction: column;
    max-width: 100%;
    padding: 100px 40px;
  }

  .map-container {
    margin: 0px auto 80px auto;
    max-width: 90%;
  }

  .whyChoose-section {
    padding: 0px 30px 80px 30px;
    max-width: 100%;
    margin: auto;
    position: relative;
    z-index: 1;
  }

  .why-us {
    display: grid;
  }

  .about-section {
    padding: 100px 40px;
  }

  .about-hero h2 {
    letter-spacing: 1px;
  }

  .filter-buttons button {
    font-size: 1.3rem;
  }

  .footer-container {
    max-width: 100%;
    padding: 0 30px;
  }

  .footer-social-icons {
    text-align: center;
  }
}

/* Laptops and desktops (992px and up) */
@media only screen and (min-width: 992px) {}

/* Media Query for Mobile Responsiveness */

/* 404 page CSS */
.glow-box {
  position: relative;
  padding: 50px 40px;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 196, 255, 0.2);
  backdrop-filter: blur(15px);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
  box-shadow: 0 0 20px rgba(0, 196, 255, 0.2);
}
50% {
  box-shadow: 0 0 40px rgba(0, 196, 255, 0.4);
}
}

.glow-box h1 {
  font-size: 120px;
  color: #00C4FF;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #00C4FF;
}
.glow-box h2 {
  font-size: 28px;
  color: #00C4FF;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.glow-box p {
  font-size: 16px;
  color: #B0B0B0;
  margin-bottom: 30px;
}
.btn {
  padding: 12px 30px;
  background:#00C4FF;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight:bold;
  text-decoration: none;
  transition: all 0.3s ease;  
}
.btn:hover {
  color:black;
}
.bg-lights {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  pointer-events: none;
  overflow: hidden;
}
.circle {
  position: absolute;
  border-radius: 50%;
  background: #00C4FF;
  filter: blur(80px);
  opacity: 0.3;
  animation: move 20s infinite alternate ease-in-out;
}
.circle1 {
  width: 300px;
  height: 300px;
  top: -50px;
  left: -50px;
}
 .circle2 {
   width: 200px;
   height: 200px;
   bottom: -60px;
   right: -40px;
   background: #FF6F00;
}
 @keyframes move {
   0% { transform: translate(0, 0); }
   100% { transform: translate(40px, 60px); }
}
 @media (max-width: 600px) {
   .glow-box h1 {
     font-size: 80px;
   }
   .glow-box h2 {
     font-size: 22px;
   }
}
.services-container a{
	                 text-decoration:none;
					 color:white;
                     }