@import url('https://fonts.googleapis.com/css2?family=Monoton&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rajdhani:wght@300;400;500;600;700&display=swap');
/* Color Variables */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&family=Montserrat:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

:root { 
    --main-color: #D39B37;
    --text-color: #3267AB;
    --bg-color: #000000;
  }

/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
}


/* Sticky Call Button Styling */
.call-button {
    position: fixed;
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    z-index: 1000; /* Ensure it appears above other elements */
    border-radius: 50%;
    width: 60px; /* Adjust button size */
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Optional shadow */
    transition: transform 0.1s ease, box-shadow 0.3s ease;
  }
  
  .call-button img {
    width: 70%; /* Size of the image inside the button */
    height: auto;
    border-radius: 50%;
  }
  
  .call-button:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4); /* Enhance shadow on hover */
  }
  
  .call-button.shake {
    animation: shake 0.5s ease-in-out; /* Apply the shake animation */
  }
  
  /* Updated Keyframes for multi-directional shake */
  @keyframes shake {
    0%, 100% {
        transform: translate(0, 0); /* No movement */
    }
    20% {
        transform: translate(-5px, -5px); /* Move left and up */
    }
    40% {
        transform: translate(5px, 5px); /* Move right and down */
    }
    60% {
        transform: translate(-5px, 5px); /* Move left and down */
    }
    80% {
        transform: translate(5px, -5px); /* Move right and up */
    }
  }

/* Universal Section Heading */
.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
}

/* Horizontal Lines */
.horizontal-line {
    display: inline-block;
    width: 50px; /* Adjusted for perfect spacing */
    height: 2px;
    background-color: #0056b3; /* Blue line */
}

/* First Word (Lighter Style) */
.section-main {
    font-weight: normal;
    color: #444;
    font-size: 3rem;
}

/* Second Word (Bold & Blue) */
.section-highlight {
    font-weight: bold;
    font-size: 3rem;
    color: #0056b3; /* Blue text */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-header {
        flex-wrap: nowrap; /* Keep in a single line */
    }

    .section-main, .section-highlight {
        font-size: 2.5rem; /* Adjust for smaller screens */
    }

    .horizontal-line {
        width: 40px; /* Adjusted for spacing */
    }
}

@media (max-width: 480px) {
    .section-header {
        flex-wrap: nowrap;
    }

    .section-main, .section-highlight {
        font-size: 2rem; /* Reduce size for mobile */
    }

    .horizontal-line {
        width: 30px;
    }
}


/* Navbar Styles */
.navbar {
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    padding: 15px 0;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: #000; /* Solid black when scrolled */
}

.navbar-brand img {
    height: 60px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-size: 1.1rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffc107 !important; /* Yellow on hover */
}

/* Custom Animated Toggler */
.navbar-toggler {
    border: none;
    background: transparent !important;
    outline: none !important;
    padding: 10px;
}

.toggler-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}










/* Popup Overlay.......................marry christmas */
/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
  }
  
  /* Snowfall Background */
  #snowfall-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 98%;
    z-index: 0;
    pointer-events: none;
  }
  
  /* Popup Card */
  .popup-card {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    z-index: 1;
    animation: scaleUp 0.5s ease-in-out;
    max-width: 400px;
    width: 100%;
    position: relative;
  }
  
  /* Close Button */
  .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff0000;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
  }
  
  .close-button:hover {
    transform: scale(1.2);
    background: var(--main-color);
  }
  
  /* Image Section */
  .popup-image img {
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    height: auto;
  }
  
  /* Heading */
  .popup-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 15px;
  }
  
  /* Text */
  .popup-card p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  /* Buttons */
  .popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
  }
  
  .popup-buttons .popup-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: var(--text-color);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .popup-buttons .popup-button:hover {
    transform: scale(1.1);
    background: var(--text-color);
  }
  
  /* Show Popup */
  .popup-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Popup Card Animation */
  @keyframes scaleUp {
    from {
      transform: scale(0.8);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }

/* Mobile Responsive Styles */

/* For devices up to 375x667 (iPhone 6/7/8, SE) */
@media (max-width: 375px) {
    .popup-card {
      padding: 15px;
      max-width: 90%;
    }
  
    .popup-buttons .popup-button {
      padding: 8px 15px;
      font-size: 0.9rem;
    }
  
    .popup-card h2 {
      font-size: 1.8rem;
    }
  
    .popup-card p {
      font-size: 0.9rem;
    }
  }
  
  /* For devices up to 414x896 (iPhone XR/11, Galaxy S10+) */
  @media (max-width: 414px) {
    .popup-card {
      padding: 18px;
      max-width: 95%;
    }
  
    .popup-buttons .popup-button {
      padding: 10px 18px;
      font-size: 1rem;
    }
  
    .popup-card h2 {
      font-size: 1.9rem;
    }
  
    .popup-card p {
      font-size: 0.95rem;
    }
  }
  
  /* For devices up to 390x844 (iPhone 12/13/14) */
  @media (max-width: 390px) {
    .popup-card {
      padding: 15px;
      max-width: 92%;
    }
  
    .popup-buttons .popup-button {
      padding: 8px 16px;
      font-size: 0.95rem;
    }
  
    .popup-card h2 {
      font-size: 1.85rem;
    }
  
    .popup-card p {
      font-size: 0.9rem;
    }
  }
  
  /* For devices up to 430x932 (iPhone 14 Pro Max, Galaxy S20 Ultra) */
  @media (max-width: 430px) {
    .popup-card {
      padding: 20px;
      max-width: 95%;
    }
  
    .popup-buttons .popup-button {
      padding: 10px 18px;
      font-size: 1rem;
    }
  
    .popup-card h2 {
      font-size: 2rem;
    }
  
    .popup-card p {
      font-size: 1rem;
    }
  }  

/* Tablet View (768px and up) */
@media (min-width: 768px) {
  .popup-card {
    padding: 25px;
    max-width: 500px;
  }

  .popup-buttons .popup-button {
    padding: 12px 22px;
    font-size: 1.1rem;
  }

  .popup-card h2 {
    font-size: 2.2rem;
  }

  .popup-card p {
    font-size: 1.1rem;
  }
}








/* Hero Section Styles */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding: 20px;
}

#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-content {
  z-index: 1;
  max-width: 90%;
}

.hero-logo {
  height: 150px;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content .btn {
  font-size: 1.2rem;
  padding: 10px 30px;
  border-radius: 25px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero-content .btn:hover {
  transform: scale(1.05);
  background-color: #ffc107;
  border-color: #ffc107;
}

/* Responsive Design */

/* iPhone 12, 13, 14 (390×844px) & iPhone XR, 11 (414×896px) → 1-column layout */
@media (max-width: 430px) {
  .hero {
      padding: 10px;
  }

  .hero-logo {
      height: 150px;
  }

  .hero-content h1 {
      font-size: 2.5rem;
  }

  .hero-content p {
      font-size: 1rem;
  }

  .hero-content .btn {
      font-size: 1rem;
      padding: 8px 20px;
  }
}

/* iPhone 14 Pro Max (431px - 767px) → Adjustments for better readability */
@media (min-width: 431px) and (max-width: 767px) {
  .hero {
      padding: 15px;
  }

  .hero-logo {
      height: 150px;
  }

  .hero-content h1 {
      font-size: 3rem;
  }

  .hero-content p {
      font-size: 1.2rem;
  }

  .hero-content .btn {
      font-size: 1.1rem;
      padding: 9px 25px;
  }
}

/* Tablets (768px and up) → 2-column layout */
@media (min-width: 768px) {
  .hero {
      flex-direction: row;
      text-align: left;
      padding: 40px;
  }

  .hero-content {
      max-width: 50%;
  }

  .hero-logo {
      height: 150px;
  }

  .hero-content h1 {
      font-size: 4rem;
  }

  .hero-content p {
      font-size: 1.5rem;
  }

  .hero-content .btn {
      font-size: 1.2rem;
      padding: 10px 30px;
  }
}


/* What We Do Section */
.what-we-do {
    padding: 100px 0;
    background-color: #f9f9f9; /* Light background for contrast */
    overflow: hidden; /* Ensure animations don't overflow */
}

.section-heading {
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease-out; /* Fade-in animation */
}

.section-heading .subheading {
    font-size: 1.2rem;
    color: #666;
    animation: fadeInUp 1.2s ease-out; /* Fade-in animation */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-item i {
    font-size: 2rem;
    color: #0056b3; /* Blue color for icons */
    margin-bottom: 10px;
}

.service-item h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1rem;
    color: #666;
}

/* Image Animation */
.what-we-do img {
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
    animation: fadeInLeft 1s ease-out; /* Fade-in animation */
}

.what-we-do img:hover {
    transform: scale(1.05); /* Slightly enlarge image on hover */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .what-we-do {
        padding: 60px 0;
    }

    .section-heading h2 {
        font-size: 2.5rem;
    }

    .section-heading .subheading {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .what-we-do img {
        margin-bottom: 30px; /* Add space below image on mobile */
    }
}

#book-appointment {
    background-color: #f0f8ff; /* Light blue background */
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#appointmentForm {
    max-width: 500px;
    background: #fff;
}

#appointmentForm input, #appointmentForm textarea, #appointmentForm select {
    border-radius: 5px;
}

#appointmentForm button {
    background-color: #002855; /* Navy blue */
    border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

#appointmentForm button:hover {
    background-color: #004080; /* Darker blue */
}


/* this is our work section  */
#our-work {
    background-color: #f9f9f9; /* Light background */
    padding: 60px 0;
    text-align: center;
}

.image-carousel {
    position: relative;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
  }
  
  .carousel-image {
    width: 100%;
    max-width: 2000px;
    height: 600px;
    border-radius: 5px;
    transition: opacity 1s ease-in-out, transform 1.5s ease-in-out;
    animation: zoomEffect 5s infinite ease-in-out;
  }
  
  @keyframes zoomEffect {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
  }
  
  .carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    z-index: 1;
  }
  
  .carousel-button.left {
    left: 10px;
  }
  
  .carousel-button.right {
    right: 10px;
  }
  
  .carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Responsive Styles */
  
  
  /* For 430x932, 390x844, 414x896 devices */
  @media (max-width: 432px) {
    .heading h1 {
        font-size: 2rem;
    }
  
    .carousel-image {
        height: 400px;
    }
  
    .carousel-button {
        font-size: 1.2rem;
        padding: 8px 16px;
    }
  }
  
  /* For 375x667 devices */
  @media (max-width: 376px) {
    .heading h1 {
        font-size: 1.8rem;
    }
  
    .carousel-image {
        height: 350px;
    }
  
    .carousel-button {
        font-size: 1rem;
        padding: 6px 12px;
    }
  }
  
  /* General tablet styles */
  @media (min-width: 600px) and (max-width: 768px) {
    .heading h1 {
        font-size: 2.5rem;
    }
  
    .carousel-image {
        height: 500px;
    }
  
    .carousel-button {
        font-size: 1.3rem;
        padding: 10px 18px;
    }
  }


  /* review css */

  .review-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .review-header .horizontal-line {
    display: inline-block;
    width: 80px;
    height: 2px;
    background-color:var(--text-color);
  }
  
  .review-part {
    font-weight: normal;
    font-size: 3rem;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .review-title {
    font-weight: bold;
    font-size: 3rem;
    color: var(--main-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, var(--text-color), var(--text-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
  }
  
  .testimonial-item img {
    max-width: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  
  .testimonial-item h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .testimonial-item .stars {
    color: #ffd700; /* Gold color for stars */
    margin-bottom: 10px;
  }
  
  .testimonial-item .review {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    line-height: 1.5;
  }
  
    
    .testimonial-carousel {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    
    .testimonial-item {
      display: none;
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
    }
    
    .testimonial-item.active {
      display: block;
      opacity: 1;
    }
    
    
    .testimonial-item img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin-bottom: 15px;
      border: 3px solid #ddd;
    }
    
    .stars {
      color: gold;
      font-size: 1.2rem;
      margin: 10px 0;
    }
    
    .review {
      font-style: italic;
      font-size: 1rem;
      line-height: 1.6;
      color: #555;
    }
    
    .carousel-indicators {
      display: flex;
      justify-content: center;
      margin-top: 15px;
    }
    
    .indicator {
      width: 10px;
      height: 10px;
      background-color: #ccc;
      border-radius: 50%;
      margin: 0 5px;
      cursor: pointer;
    }
    
    .indicator.active {
        background-color: #333;
      }



      /* footer  */
/* Full-Width Footer */
.footer {
    background-color: #002855; /* Navy Blue */
    color: #fff;
    padding: 50px 0;
    width: 100%;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Ensures content does not touch edges */
}

/* Footer Logo */
.footer-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

/* Footer Headings */
.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffc107; /* Yellow Accent */
}

/* Footer Links */
.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 10px;
}

.footer-links a, .footer-contact i {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffc107;
}

/* Social Icons */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.5rem;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: #ffc107;
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    font-size: 0.9rem;
    width: 100%;
}

/* Make Footer Full Width */
.footer-wrapper {
    width: 100%;
    background-color: #002855;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer .row {
        text-align: center;
    }
    .footer-links, .footer-contact {
        display: inline-block;
    }
    .social-icons {
        justify-content: center;
    }
}



 



