/* Body font */
body {
  font-family: 'Inter', sans-serif;
}

/* Header Style */
.header {
  background-color: #e0f7ff;
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background 0.3s ease;
}

/* Header inner layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 45px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.08);
}

/* Nav links */
.nav-links a {
  margin-left: 1.2rem;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 9999px; /* rounded pill style */
  transition: all 0.3s ease, transform 0.2s ease;
}

/* Hover effect */
.nav-links a:hover {
  background: #e53935;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(229,57,53,0.3);
}

/* Active page link */
.nav-links a.active {
  background: #e53935;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(229,57,53,0.5);
  animation: pulse 1.5s infinite;
}

/* Pulse animation for active link */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(229,57,53, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(229,57,53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229,57,53, 0); }
}

/* Hamburger Button */
.mobile-btn {
  display: none;
  background: none;
  font-size: 1.8rem;
  color: #222;
  cursor: pointer;
  border: none;
  transition: transform 0.3s ease;
}

.mobile-btn:hover {
  transform: rotate(90deg);
}

/* Mobile Dropdown */
.mobile-menu {
  background-color: #e0f7ff;
  padding: 1rem;
  animation: slideDown 0.4s ease;
}

.mobile-menu a {
  display: block;
  padding: 0.8rem;
  color: #222;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease, transform 0.2s ease;
}

.mobile-menu a:hover {
  background: #e53935;
  color: #fff;
  transform: translateX(5px);
  box-shadow: 0 4px 10px rgba(229,57,53,0.3);
}

.mobile-menu a.active {
  background: #e53935;
  color: #fff;
  font-weight: 600;
  animation: pulse 1.5s infinite;
}

/* Slide down animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive for small screen */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-btn {
    display: block;
  }
}













.hero-slider {
  width: 100%;
  aspect-ratio: 3 / 2; /* 3:2 Landscape ratio */
  overflow: hidden;
  position: relative;
  border-radius: 0px;
  box-shadow: 0 0 25px rgba(0, 150, 255, 0.5);
  animation: glowPulse 3s ease-in-out infinite;
}

/* Light blue glow animation */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.3),
                0 0 40px rgba(0, 150, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 35px rgba(0, 150, 255, 0.6),
                0 0 60px rgba(0, 150, 255, 0.3);
  }
  100% {
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.3),
                0 0 40px rgba(0, 150, 255, 0.2);
  }
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1.5s ease-in-out;
  transform: scale(1.05) translateX(20px);
}

/* Active slide (JS adds this class) */
.slide.active {
  opacity: 1;
  transform: scale(1) translateX(0);
  z-index: 1;
}

/* Pure CSS autoplay (optional if JS not used) */
.slider img {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: crossFadeSlide 20s infinite;
}

/* Timing for each image: 4 images × 5s each = 20s loop */
.slider img:nth-child(1) { animation-delay: 0s; }
.slider img:nth-child(2) { animation-delay: 5s; }
.slider img:nth-child(3) { animation-delay: 10s; }
.slider img:nth-child(4) { animation-delay: 15s; }

/* Cross fade + slide animation */
@keyframes crossFadeSlide {
  0% {
    opacity: 1;
    transform: scale(1.05) translateX(0);
  }
  20% {
    opacity: 1;
    transform: scale(1) translateX(-10px);
  }
  24% {
    opacity: 0;
    transform: scale(1) translateX(-40px);
  }
  25% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
  70% {
    opacity: 1;
    transform: scale(1.05) translateX(-10px);
  }
  74% {
    opacity: 0;
    transform: scale(1) translateX(-40px);
  }
  100% {
    opacity: 0;
    transform: scale(1) translateX(40px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slider {
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    aspect-ratio: 3 / 2;
  }
}












body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #e0f7ff;
  color: #222;
}

.welcome-section {
  text-align: center;
  padding: 3rem 1rem;
}

.welcome-label {
  color: #222;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.divider {
  width: 150px;
  height: 1px;
  border-bottom: 2px solid #222;
  margin: 0 auto 20px auto;
  position: relative;
}

.divider::after {
  content: "✮";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 0 10px;
  color: #E53935;
}

.brand-name {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.5rem 0;
  color: #E53935;
  font-family: 'Kavoon', cursive;
}

.description {
  font-size: 1rem;
  color: #000;
  max-width: 700px;
  margin: 1rem auto 2rem auto;
  line-height: 1.6;
}

/* Icons */
.icon-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 2rem;
}

.icon-box {
  width: 100px;
  text-align: center;
}

.icon-box img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.icon-box p {
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Buttons */
.button-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  transition: 0.3s ease;
}

.call {
  background: linear-gradient(90deg, #0052cc, #007bff);
  color: white;
  animation: pulse 1.5s infinite;
  transition: all 0.3s ease;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.call:hover {
  background: linear-gradient(90deg, #007bff, #0052cc);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px) scale(1.05);
}

.whatsapp {
  background-color: #25d366;
  color: white;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.whatsapp:hover {
  background: #8E2C2C;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3); /* Bigger shadow on hover */
  transform: translateY(-2px);
}

.enquiry {
  background: linear-gradient(45deg, #007bff, #00c6ff);
  color: white;
  animation: pulse 1.5s infinite;
}

.enquiry:hover {
  background: linear-gradient(45deg, #0056b3, #0099cc);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
/* Responsive */
@media (max-width: 768px) {
  .brand-name {
    font-size: 1.6rem;
  }

  .icon-box {
    width: 80px;
  }

  .icon-box img {
    width: 80px;
    height: 80px;
  }
}












/* General Reset */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f0f9ff;
  color: #333;
}

/* Section Styles */
.services-section {
  background-color: #fff; /* sky blue */
  padding: 60px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #E53935; /* yellow-600 */
    margin-bottom: 10px;
    font-weight: bold;
    font-family: 'DM Serif Text', serif;
}

.section-header p {
    font-size: 1.1rem;
    color: #000;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Card Styles */
.service-card {
    position: relative;
    background-color: #f0f9ff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    overflow: hidden; /* shimmer க்காக */
}

/* Golden Border Effect */
.service-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    height: 200%;
    width: 200%;
    background: linear-gradient(
        to right,
        #fff 20%,
        #fff 40%,
        #ECD08C 50%,
        #ECD08C 55%,
        #fff 70%,
        #fff 100%
    );
    background-size: 200% auto;
    transform: rotate(-45deg);
    animation: shine 3s linear infinite;
    z-index: 1;
}

/* White content background inside */
.service-card::after {
    content: "";
    position: absolute;
    top: 1%;
    left: 1%;
    height: 98%;
    width: 98%;
    background: #f0f9ff;
    border-radius: 10px;
    z-index: 2;
}

/* Content on top */
.service-card > * {
    position: relative;
    z-index: 3;
}

/* Shine animation */
@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Hover போது Glow Shadow */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(30,144,255,0.8),
                0 0 40px rgba(0,191,255,0.6),
                0 10px 20px rgba(0,0,0,0.15);
}

/* Border Rotation Animation */
@keyframes rotateBorder {
    to {
        --border-angle: 1turn;
    }
}

/* Shimmer Animation */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.service-card img {
    width: 56px;
    height: 56px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #0052cc;
    margin-bottom: 8px;
    font-weight: 700; /* Bold */
}

.service-card p {
    font-size: 0.95rem;
    color: #000;
    font-weight: bold;
}














/* === Customer Verified Reviews Section === */
/* Basic Reset */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #000;
}

/* Customer Reviews Section */
.grand-reviews-ver {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
}
.grand-reviews-ver h2 {
  font-size: 28px;
  color: #E53935;
  margin-bottom: 30px;
  font-weight:Bold;
  font-family: 'DM Serif Text', serif;
}
.grand-review-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.grand-review-item {
  background: #f9f9f9;
  border-radius: 10px;
  max-width: 300px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.review-profile {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.review-profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}
.review-info strong {
  color: #0052cc;
  display: block;
  font-size: 16px;
}
.verified {
  color: green;
  font-size: 14px;
}
.review-text {
  font-size: 15px;
  color: #333;
}

/* Rainbow animated Google Review button with Pulse Glow */
.grand-google-more-review {
  position: relative;
  z-index: 0;
  display: inline-block;
  border-radius: 30px;
  overflow: hidden;
  padding: 3px; /* Border thickness */
  animation: grand-pulse 2s infinite ease-out;
}

.grand-google-more-review::before {
  content: '';
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-color: #399953;
  background-repeat: no-repeat;
  background-size: 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: 
    linear-gradient(#399953, #399953),
    linear-gradient(#fbb300, #fbb300),
    linear-gradient(#d53e33, #d53e33),
    linear-gradient(#377af5, #377af5);
  animation: grand-google-rotate 4s linear infinite;
}

.grand-google-more-review::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 3px;
  top: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background: #1976D2; /* Original Blue background */
  border-radius: 27px;
}

/* Button text style */
.grand-google-more-review a {
  position: relative;
  z-index: 1;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
}

/* Hover effect for text background */
.grand-google-more-review:hover::after {
  background: #3367D6; /* Darker Blue on hover */
}

/* Rainbow rotation animation */
@keyframes grand-google-rotate {
  100% {
    transform: rotate(1turn);
  }
}

/* Soft Glow Pulse animation */
@keyframes grand-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(25, 118, 210, 0.6);
  }
  70% {
    box-shadow: 0 0 15px 15px rgba(25, 118, 210, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(25, 118, 210, 0);
  }
}

/* Visit Our Office Section */
.grand-office-section {
  padding: 40px 20px;
  background: linear-gradient(to right, #e0f7fa, #ffffff);
  text-align: center;
}
.grand-office-section h2 {
  font-size: 28px;
  color: #E53935;
  font-weight:Bold;
  margin-bottom: 20px;
  font-family: 'DM Serif Text', serif;
}
.grand-office-desc {
  font-size: 16px;
  max-width: 700px;
  margin: auto;
  color: #333;
}

.grand-office-contact {
  margin: 25px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.office-icon {
  background: linear-gradient(45deg, #3367D6, #42a5f5, #3367D6);
  background-size: 300% 300%;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
  animation: gradient-rotate 4s linear infinite;
}

.office-icon:hover {
  transform: scale(1.05);
}

@keyframes gradient-rotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.grand-map-embed iframe {
  width: 100%;
  max-width: 100%;
  height: 300px;
  border: none;
  border-radius: 12px;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .grand-review-list {
    flex-direction: column;
    align-items: center;
  }
  .grand-office-contact {
    flex-direction: column;
    align-items: center;
  }
}













/* === Footer Section === */
.grand-footer {
  background: linear-gradient(to right, #9fefff, #e0f7ff, #9fefff);
  color: #000;
  padding: 50px 20px 25px;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
}

.grand-footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.grand-footer-column {
  flex: 1 1 250px;
  min-width: 220px;
}

.grand-footer-column h4 {
  color: #1a73e8; /* premium blue shade */
  font-size: 1.25rem;
  margin-bottom: 18px;
  font-family: 'DM Serif Text', serif;
  border-bottom: 2px solid #1a73e8;
  display: inline-block;
  padding-bottom: 4px;
}

.grand-footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.grand-footer-column li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.grand-footer-column li:hover {
  transform: translateX(4px);
}

.grand-footer-column li i {
  margin-right: 10px;
  color: #1a73e8;
  font-size: 1rem;
}

.grand-footer-column a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.grand-footer-column a:hover {
  color: #1a73e8;
}

/* Buttons */
.grand-footer-buttons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.grand-call-btn,
.grand-whatsapp-btn {
  background: linear-gradient(135deg, #207c39, #2dbf59);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, background 0.3s ease;
}

.grand-call-btn i,
.grand-whatsapp-btn i {
  margin-right: 8px;
}

.grand-call-btn:hover,
.grand-whatsapp-btn:hover {
  background: linear-gradient(135deg, #1c6d32, #28a94e);
  transform: scale(1.05);
}

/* Footer Bottom */
.grand-footer-bottom {
  text-align: center;
  padding-top: 25px;
  font-size: 0.85rem;
  color: #555;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 30px;
}

.grand-footer-bottom strong {
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .grand-footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  .grand-footer-buttons {
    justify-content: center;
  }
}