/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 { font-size: 72px; }
h2 { font-size: 48px; }
h3 { font-size: 36px; }
h4 { font-size: 24px; }
p  { font-size: 16px; }
a  { text-decoration: none; color: black; }

/* Header Styles */
header {
    height: 10vh;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
    z-index: 100;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
    transition: .5s;
}

.header:hover::before {
    left: 100%;
}

#menu-icon {
    font-size: 2rem;
    color: #336D82;
    display: none;
    cursor: pointer;
}

/* Navbar */
.navbar {
    margin: 0 30px;
}

.navbar a {
    color: #336D82;
    font-size: 1.2rem;
    font-weight: bolder;
    margin-left: 35px;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: goldenrod;
}

/* Mobile Menu */
@media (max-width: 992px) {
    .header {
        padding: 1.25rem 4%;
    }
}

@media (max-width: 768px) {
    #menu-icon {
        display: block;
    }

    .navbar {
        position: fixed;
        top: 18vh;
        left: -10px;
        width: 90%;
        padding: .5rem 4%;
        display: none;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        z-index: 50;
    }

    .navbar.active {
        display: block;
    }

    .navbar a {
        color: #FAF9EE;
        display: block;
        margin: 2rem 5rem;
    }

    .nav-bg {
        position: fixed;
        top: 10vh;
        left: 0;
        width: 100%;
        height: 360px;
        background: rgba(255, 255, 255, .1);
        backdrop-filter: blur(20px);
        z-index: 40;
        display: none;
    }

    .nav-bg.active {
        display: block;
    }
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    width: 120px;
    height: 60px;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.logo:hover img {
    transform: rotate(15deg) scale(1.05);
}

/* Section Styles */
.section-container {
    position: relative;
    max-width: 1920px;
    min-height: 60vh;
    margin: 0 auto;
    padding: 6rem 2rem 4rem; /* Fixed: push content below fixed header */
    background: url("/img/bg8.jpg") no-repeat bottom/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.section-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.section-container h2,
.section-container p,
.button-group {
    position: relative;
    z-index: 2;
}

.section-container h2 {
    font-size: 5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.section-container p {
    font-size: 1.5rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: #eee;
}

/* Button Styles */
.button-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #fff;
    color: #333;
}

.primary-btn {
    background-color: #F4631E;
}

.call-btn i {
    margin-right: 0.5rem;
    color: green;
}

/* ========== Responsive for Tablets (up to 992px) ========== */
@media (max-width: 992px) {
    .section-container {
        padding: 7rem 1.5rem 3rem;
        min-height: 50vh;
    }

    .section-container h2 {
        font-size: 3.5rem;
    }

    .section-container p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .button-group {
        flex-direction: row;
        gap: 1rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* ========== Responsive for Mobile Devices (up to 768px) ========== */
@media (max-width: 768px) {
    .section-container {
        padding: 7rem 1rem 2rem;
        min-height: 40vh;
    }

    .section-container h2 {
        font-size: 2.5rem;
    }

    .section-container p {
        font-size: 1rem;
        max-width: 90%;
        margin-bottom: 1.5rem;
    }

    .button-group {
        flex-direction: row; /* Fixed: Keep side-by-side */
        gap: 0.8rem;
        flex-wrap: wrap;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

.info-cards {
    z-index: 2;
  display: flex;
  gap: 1.5rem;
  margin-top: 5rem;
  white-space: nowrap;   /* Prevent line break between cards */
  overflow-x: auto;      /* Allow horizontal scroll if needed */
  padding: 1rem 0;
   scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.card {
  width: 320px;
  background: rgba(255, 255, 255, 0.15); /* translucent white */
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  min-width: 250px;
  flex-shrink: 0; /* Prevent shrinking */
  color: #222;
  text-align: left;
  white-space: normal; /* Allow text wrapping inside card */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  scroll-snap-align: start;
  /* Glassmorphism blur */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* Optional subtle border */
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}


.card i {
  font-size: 2.4rem;
  color: #007bff;
  background-color: rgba(34, 34, 34, 0.7);
  border-radius: 12px;
  padding: 0.5rem;
  margin-bottom: 0.8rem;
  display: inline-flex;             /* changed from inline-block */
  justify-content: center;          /* center horizontally */
  align-items: center;              /* center vertically */
  width: 3.5rem;
  height: 3.5rem;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.5);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect remains the same */
.card:hover i {
  background-color: rgba(0, 123, 255, 0.15);
  box-shadow: 0 4px 12px rgba(255, 170, 0, 0.8);
  color: #F4631E;
}


.card h3 {
  margin: 0 0 0.6rem 0;
  font-weight: 700;
  font-size: 1.4rem;
  color: #FAF7F3;
  opacity: 100%;
}

.card h5 {
  margin: 0.4rem 0 0.2rem;
  font-weight: 600;
  color: #DCC5B2;
  font-size: 1rem;
}

.card p {
  margin: 0.1rem 0 1rem 0;
  font-size: 1rem;
  color: #FAF7F3;
}

.card a {
  color: #5EABD6;
  font-size: 0.9rem;
  cursor: pointer;
}

.card a:hover {
  color: #0056b3;
}

.social-icons {
    z-index: 2;
  background: #fff;
  border-radius: 15px;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 400px; /* optional, you can adjust */
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  user-select: none;
}

.social-icons h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  flex-shrink: 0;
}

.social-media {
  background: #f0f0f0;
  border-radius: 25px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 
    box-shadow 0.3s ease, 
    transform 0.3s ease, 
    background-color 0.3s ease;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.social-media i {
  font-size: 1.8rem;
  color: #555;
  transition: color 0.3s ease;
}

/* Hover effect - glowing with sliding */
.social-media:hover {
  box-shadow: 0 0 12px 3px rgba(255, 0, 0, 0.7);
  background-color: #ff4d4d;
  transform: translateX(6px);
}

.social-media:hover i {
  color: #fff;
}

@media (max-width: 768px) {
  .info-cards {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 1rem;
    gap: 1rem;
    margin: 2rem 0;
    width: 100vw;
    box-sizing: border-box;
  }

  .card {
    min-width: 80vw;
    max-width: 80vw;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .section-container {
    align-items: flex-start;
  }
}



/* Contact Section */
.contact-form-section {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 4rem 6%;
    background: #fff;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    max-width: 1400px;
    margin: 4rem auto;
}

/* Containers */
.contact-container {
    flex: 1 1 500px;
    padding: 2rem;
}

/* Contact Form Styling */
.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.contact-form:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border 0.3s;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0f62fe;
    outline: none;
    background-color: #fff;
}

button[type="submit"] {
    width: 100%;
    padding: 1rem;
    border: none;
    background: linear-gradient(135deg, #0f62fe, #3b82f6);
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
}

button[type="submit"]:hover {
    background: linear-gradient(135deg, #3b82f6, #0f62fe);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Map & Business Info Styling */
.map-section iframe {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.business-info {
    background-color: #ffffff;
    padding: 20px;
    margin-top: 2rem;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.time-info p{
    font-size: 1.5rem;
}

.business-info h3 {
    font-size: 1.2rem;
    color: #111827;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.business-info .time-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.5rem;
    margin-bottom: 1rem;
}

.business-info .time p {
    margin: 0.2rem 0;
    margin-bottom: 0.5rem;
}

.business-info a {
    display: inline-block;
    margin-top: 1rem;
    color: #0f62fe;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.business-info a:hover {
    text-decoration: underline;
}

/* Icons */
i {
    color: #0f62fe;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form-section {
        flex-direction: column;
        padding: 2rem;
    }
    .time-info p{
        font-size: 12px;
    }
}


footer{
    background: #101136;
}
.footer-section{
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

.cards{
    width: 30%;
    padding: 0 20px;
    margin-top: 1rem;
    color: #E5D9F2;
}

.cards img{
    width: 100px;
    height: 50px;
    margin-left: 4.5rem;
}

.logo-title h3{
    font-size: 1.8rem;
    width: 80%;
    text-align: center;
}

.logo-title p{
    width: 80%;
    text-align: center;
    color: #969696;
}

.quick-links{
    margin: 1.5rem 10px;
}

.quick-links a{
    color: #969696;
    line-height: 2.5;
    opacity: 0.5;
    font-size: 1rem;
}

.quick-links a:hover{
    opacity: 1;
}

.quick-links i{
    color: #969696;
}
.subscribe{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.subscribe input{
    width: 60%;
    height: 30px;
    color: #082C38;
    outline: none;
}

.social{
    position: relative;
    display: flex;
    gap: 30px;
    margin: 1rem 5px;
}

.social a{
    color: #D9D9D9;
    font-size: 2rem;
    transition: 0.25s;
    text-decoration: none;
}

.social i{
    font-size: 1.8rem;
    color: goldenrod;
}

.social i:hover{
   color: #0f62fe;
   filter: drop-shadow(0 0 5px #FFD700);
}
.social a:hover{
    color: #FF8C00;
    filter: drop-shadow(0 0 5px #01dbc2);
}

.subscribe a{
    width: 60%;
    text-align: center;
    color: #D9D9D9;
    padding: 10px 40px;
    border-radius: 10px;
    background-color: #484BE4;
}
.subscribe a:hover{
    color: #082C38;
    background-color: #9D4FFD;
}
.footer-sml-content{
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

hr{
    width: 95%;
    margin: 0 auto;
}

.terms{
    margin-left: 1rem;
}
.policy a{
    color: #969696;
}
.policy a:hover{
    color: white;
}
.terms p{
    color: #969696; 
}
.newsletter{
    width: 80%;
    margin: 1rem 0;
}

.terms span{
    color: #484BE4;
    font-size: 1.2rem;
    padding-left: 5px;
}

/* ============================= */
/* 🎯 Media Queries for Responsiveness */
/* ============================= */

@media screen and (max-width: 998px) {
    .footer-section {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .cards {
        width: 80%;
        margin: 0 auto;
        text-align: center;
    }

    .cards img {
        margin-left: 0;
    }
    
    .subscribe input,
    .subscribe a {
        width: 80%;
    }

    .logo-title h3,
    .logo-title p,
    .newsletter p {
        width: 100%;
    }
    
    .footer-sml-content {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }

    .terms {
        margin-left: 0;
    }
}

@media screen and (max-width: 480px) {
    .logo-title h3 {
        font-size: 1.4rem;
    }

    .cards:nth-child(1){
        display: none;
    }

    .cards:nth-child(4){
        margin-left: 2rem;
    }

    .quick-links a {
        font-size: 0.9rem;
    }

    .subscribe input,
    .subscribe a {
        width: 100%;
    }

    .footer-sml-content{
        width: 80%;
        margin: 0 auto;
    }

    .policy{
        display: none;
    }

    .newsletter{
        font-size: 1.1rem;
        margin: 1rem auto;
    }

    .terms span {
        font-size: 1rem;
    }
}
li{
    list-style: none;
}
a{
    text-decoration: none;
}