/* HEADINGS → Montserrat */
h2, h4, h5, button {
  font-family: 'Montserrat', sans-serif;
}

a {
  font-family: 'roboto', sans-serif;
}

span, p{
  font-family: 'Open Sans', sans-serif;
}









/* =======================
       NAVBAR GLOBAL CSS
========================== */

:root {
  --primary-color: #ff004f;
  --secondary-color: #ff8a00;
  --dark-color: #333;
}

/* REMOVE caret arrow from dropdown */
.nav-link.dropdown-toggle::after {
  display: none !important;
}

/* Hover dropdown */
.nav-item.dropdown:hover .dropdown-menu {
  display: block !important;
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

/* Prevent click toggle on desktop */
@media (min-width: 992px) {
  .dropdown-toggle {
    pointer-events: none;
  }
}

/* NAVBAR Container */
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  background: #fff !important;
}

/* Logo */
.navbar-brand img {
  height: 50px;
  width: auto;
}

/* Navlinks */
.nav-link {
  color: var(--dark-color) !important;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

/* Hover color */
.nav-link:hover {
  color: var(--primary-color) !important;
}

/* Animated underline */
.navbar-nav .nav-link {
  position: relative !important;
  padding-bottom: 5px;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #ff004f;
  transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Dropdown menu */
.dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0;
}

.dropdown-item {
  padding: 10px 20px;
  transition: all 0.3s;
}

.dropdown-item:hover {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

/* Enquiry button */
.enquirybtn {
  background-color: #ff004f !important;
  border-color: #ff004f !important;
  color: white !important;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 0;
}

.enquirybtn:hover {
  background-color: #e00045 !important;
  border-color: #e00045 !important;
  color: white !important;
}

/* enquiry button response  */
/* FULL SCREEN POPUP OVERLAY */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.7);
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes slideUp {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(-30px); opacity: 0; }
}

/* When closing */
.popup-overlay.closing {
  animation: fadeOut 0.3s ease forwards;
}

.popup-content.closing {
  animation: slideUp 0.3s ease forwards;
}


/* POPUP BOX */
.popup-content {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 420px;
  padding: 35px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 0 20px rgba(78, 241, 255, 0.4);
  animation: slideDown 0.35s ease;
}

.popup-content h2 {
  color: white;
}


@media(max-width: 768px){
  .popup-content {
    margin: 1rem;
  }
}

@keyframes slideDown {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* CLOSE BUTTON */
.close-popup {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}

.close-popup:hover {
  color: #4ef1ff;
}

/* FORM LABEL */
.popup-form label {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-top: 12px;
}

/* INPUTS */
.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
}

/* BUTTON */
.popup-submit-btn {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 30px;
   background: linear-gradient(135deg, #ff4db8, #4bc3f8);
  font-weight: 700;
  color: #000;
  transition: 0.3s;
}

.popup-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(78, 241, 255, 0.5);
}

/* ========== CUSTOM HAMBURGER ICON ========== */
/* Remove Bootstrap default icon */
.navbar-toggler-icon {
  display: none;
}

/* Base settings */
.navbar-toggler {
   border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 10px;         /* increases clickable area */
  width: 45px;           /* makes full box clickable */
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler .toggler-icon,
.navbar-toggler .toggler-icon::before,
.navbar-toggler .toggler-icon::after {
width: 100%;
  /* width: 28px; */
  height: 3px;
  background-color: #000;
  display: block;
  border-radius: 2px;
  transition: 0.3s ease-in-out;
  position: relative;
}

.navbar-toggler .toggler-icon::before,
.navbar-toggler .toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

/* Default (closed) → hamburger */
.navbar-toggler .toggler-icon::before {
  top: -8px;
}

.navbar-toggler .toggler-icon::after {
  top: 8px;
}

/* ================================
   WHEN MENU IS OPEN (NO .collapsed)
   SHOW X
================================ */
.navbar-toggler:not(.collapsed) .toggler-icon {
  background-color: transparent;
}

.navbar-toggler:not(.collapsed) .toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler:not(.collapsed) .toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}











/* ===========================
      CONTACT PAGE STYLES
=========================== */

/* Contact Section Styling */
.contact-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 79, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(108, 99, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 138, 0, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.contact-wrapper {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* .contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
} */

.contact-image-col {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.contact-perfect-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

/* .contact-card:hover .contact-perfect-img {
    transform: scale(1.05);
} */

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
    padding: 30px 25px;
}

.overlay-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info {
    padding: 40px;
}

.form-title {
    color: var(--dark-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

.form-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 220px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.form-control {
    border-radius: 10px;
    border: 1px solid #e1e5eb;
    padding: 14px 16px;
    transition: all 0.3s ease;
    font-size: 15px;
    margin-bottom: 20px;
    background: #fafafa;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 79, 0.15);
    background: white;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
    font-size: 14px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    color: white;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(255, 0, 79, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 0, 79, 0.4);
    color: white;
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.submit-btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    20% {
        transform: scale(25, 25);
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

.contact-details {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    color: #555;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 0, 79, 0.3);
}

.contact-text strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 0, 79, 0.1);
    z-index: 0;
}

.floating-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.floating-2 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    right: 5%;
    animation: float 10s ease-in-out infinite reverse;
}

.floating-3 {
    width: 70px;
    height: 70px;
    top: 50%;
    left: 10%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-info {
        padding: 30px 25px;
    }
    
    .contact-card {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info {
        padding: 25px 20px;
    }
    
    .image-overlay {
        padding: 20px;
    }
}

/* Success Message */
.success-message {
    display: none;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}









/* footer  */





/* ===========================
   FOOTER — RESPONSIVE IMPROVEMENT
   Put this after your current footer styles
   =========================== */

.footer-content {
  /* background: #f8f2f4; */
    background-color: #ffc107;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 10px;           /* slightly larger for readability */
  font-weight: 600;
  flex-wrap: nowrap;         /* keep row until small breakpoint */
  text-align: left;
  border-top: 1px solid rgba(0,0,0,0.04);
}

/* logo block */
.footer-content .footer-brand img,
.footer-content img {
  height: 50px;
  width: auto;
  display: block;
}

/* make items semantically separate (optional if you already have these divs) */
.footer-content > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* small screens: stack vertically and center everything */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px;
    gap: 10px;
    font-size: 10px;
  }

  /* shrink logo */
  .footer-content .footer-brand img,
  .footer-content img {
    height: 44px;
  }
}

/* extra small phones */
@media (max-width: 420px) {
  .footer-content {
    padding: 14px 12px;
    font-size: 10px;
    gap: 8px;
  }

  .footer-content .footer-brand img,
  .footer-content img {
    height: 36px;
  }
}

/* Optional: make the design credit visually lighter */
.footer-content .footer-design {
  opacity: 0.85;
  font-weight: 600;
}

/* Optional: links in footer */
.footer-content a {
  color: #333;
  text-decoration: none;
}

.footer-content a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}




