/*
Theme Name: CA Services India
Theme URI: https://caservicesind.com
Author: Adarsh
Author URI: mailto:adarsh@caservicesind.com
Description: Elegant theme for Indian CA services, covering ITR & GST filing.
Version: 1.3
*/

/* Limit custom logo size */
.custom-logo {
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Indian flag inspired background */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: linear-gradient(to bottom, #FF9933 0%, #ffffff 50%, #138808 100%) !important;
  color: #333;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
}

/* Ashoka Chakra watermark */
body::before {
  content: '';
  position: fixed;
  top: 60%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: url('https://upload.wikimedia.org/wikipedia/commons/1/17/Ashoka_Chakra.svg') no-repeat center;
  background-size: contain;
  opacity: 0.05;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Header with soft elegant theme */
header {
  background: linear-gradient(90deg, #ffa94d 0%, #ffffff 50%, #5ca765 100%);
  color: #111;
  padding: 2rem 1rem;
  text-align: center;
  border-bottom: 2px solid #ccc;
}

/* Section background styling */
.service-box,
.contact-section {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(3px);
}

/* WhatsApp Button Styling */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 16px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 28px;
  z-index: 1000;
  transition: background-color 0.3s ease;
  text-decoration: none !important;
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
}

.whatsapp-button i {
  margin: 0;
  text-decoration: none;
}

/* Responsive styles */
@media (max-width: 768px) {
  header {
    padding: 1rem 0.5rem;
    font-size: 0.95rem;
  }

  .service-section {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .service-box {
    width: 100% !important;
    box-sizing: border-box;
  }

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

  .whatsapp-button {
    width: 50px;
    height: 50px;
    font-size: 24px;
    padding: 14px;
  }

  .custom-logo {
    max-height: 60px;
  }
}

