@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);
}

  
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Ensures exactly 3 columns */
    gap: 30px;
    margin: 140px 20px; /* Adds margin to the container */
  
  }
  
  .service {
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: #fff;
    
  }
  
  .service-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
  }
  
  .image-container {
    width: 100%;
    height: auto;
    
    padding-top: 56.25%; /* 16:9 aspect ratio */
    position: relative;
  }
  
  .image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures dynamic image resizing */
  }
  
  .title {
    margin: 0;
    padding: 16px;
    background: #f4f4f4;
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
  }
  
  .title:hover {
    background: #0056b3;
    color: #fff;
  }
  
  .title .arrow {
    font-weight: bold;
    transition: transform 0.3s ease;
  }
  
  .title:hover .arrow {
    transform: translateX(5px);
  }
  
  @media screen and (max-width: 932px) { /* Covers iPhones and smaller tablets */
    .services {
      grid-template-columns: repeat(2, 1fr); /* 2 columns */
      gap: 15px;
      margin: 80px 10px;
      margin-top:120px;
    }
    
    .service {
      border-radius: 6px;
      box-shadow: 0 3px 5px rgba(0, 0, 0, 0.08);
    }
  
    .image-container {
      padding-top: 90%; /* Adjusts image aspect ratio */
    }
  
    .title {
      font-size: 11px;
      padding: 12px;
    }
  
    .title .arrow {
      font-size: 16px;
    }
  }
  
  @media screen and (max-width: 844px) { /* iPhone 12, 13, 14 */
    .services {
      grid-template-columns: repeat(1, 1fr); /* Stacks into 1 column */
      margin: 70px 10px;
      margin-top:120px;
    }
  
    .image-container {
      padding-top: 90%;
    }
  
    .title {
      font-size: 11px;
      padding: 10px;
    }
  
    .title .arrow {
      font-size: 14px;
    }
  }
  
  @media screen and (max-width: 768px) { /* Tablets */
    .services {
      grid-template-columns: repeat(2, 1fr); /* 2 columns */
      margin: 80px 15px;
      margin-top:120px;
    }
  
    .image-container {
       
      padding-top: 60%;
    }
  
    .title {
      font-size: 11px;
      padding: 14px;
    }
  
    .title .arrow {
      font-size: 18px;
    }
  }
  
  @media screen and (max-width: 414px) { /* iPhone XR, 11 */
    .services {
      grid-template-columns: repeat(1, 1fr); /* Stacks into 1 column */
      margin: 50px 10px;
      margin-top:120px;
    }
  
    .image-container {
      padding-top: 75%;
    }
  
    .title {
      font-size: 11px;
      padding: 8px;
    }
  
    .title .arrow {
      font-size: 13px;
    }
  }
  

      /* 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;
    }
}



 



