


/* Headings & Navigation */
h1, h2, h3, h4, h5, h6,
.nav-link-custom {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.nav-link-custom {
  color: #333 !important;
  font-weight: 500;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 6px;
}

.nav-link-custom:hover {
  color: #0d6efd !important;
  background-color: rgba(13,110,253,0.08); /* soft blue highlight */
}

.nav-link-custom.active {
  color: #0d6efd !important;
  font-weight: 600;
  border-bottom: 2px solid #0d6efd;
}

.body{
  font-family: 'Roboto', sans-serif;


}



/* Hero Section with gradient overlay */
/* Hero Section with Featured Background */



/* Hero Section Background */
.contact-hero {
    height: 85vh;
    background: url('../Image/gallery4.jpg') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
  }
  .contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.3));
  }
  .contact-hero .container {
    position: relative;
    z-index: 1;
  }
  
  /* Semi-transparent Featured Card */
  .featured-card-transparent {
    background: rgba(255, 255, 255, 0.15); /* semi-transparent glass */
    color: #fff;
    font-weight: 500;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 650px;
    margin: auto;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .featured-card-transparent:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  }
  
  /* Animations */
  .animate-card {
    animation: fadeInUp 1.2s ease forwards;
  }
  .animate-title {
    animation: slideInDown 1s ease forwards;
  }
  .animate-subtitle {
    animation: fadeIn 2s ease forwards;
  }
  .animate-text {
    animation: fadeIn 2.5s ease forwards;
  }
  
  /* Keyframes */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes slideInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  /* Semi-transparent Featured Card */
  .featured-card-transparent {
    background: rgba(255, 255, 255, 0.15); /* semi-transparent */
    color: #fff;
    font-weight: 500;
    backdrop-filter: blur(6px); /* glass effect */
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 600px;
    margin: auto;
    animation: fadeInUp 1s ease;
  }
  
  /* Animation */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Transparent Featured Card */
  .featured-card-transparent {
    background: rgba(255, 255, 255, 0.15); /* semi-transparent */
    color: #fff;
    font-weight: 500;
    backdrop-filter: blur(6px); /* glass effect */
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 400px;
    margin: auto;
    animation: fadeInUp 1s ease;
  }
  
  /* Animation */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
  }
  /* Info Cards */
  .info-card {
    background: #fff;
    border: 1px solid #e0e6f1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.15);
  }
  
  /* Form Card */
  .form-card {
    background: #fff;
    border: 1px solid #e0e6f1;
  }
  .form-card .btn-primary {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    border: none;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .form-card .btn-primary:hover {
    background: linear-gradient(90deg, #6610f2, #0d6efd);
    transform: scale(1.05);
  }
  
  /* Animations */
  .animate-fade {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
  }
  .animate-fade-delay {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s forwards;
  }
  @keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
  }

  /* Footer Styling */
.footer {
    background: #111;
    color: #eee;
  }
  
  /* Footer Logo Styling */
  .footer-logo {
    width: 100px;        /* adjust size */
    height: 100px;       /* make it square for perfect circle */
    object-fit: cover;   /* crop nicely inside circle */
    border-radius: 50%;  /* makes it round */
    box-shadow: 0 0 12px rgba(0,0,0,0.2); /* subtle glow */
    transition: transform 0.3s ease;
  }
  
  .footer-logo:hover {
    transform: scale(1.05);
  }
  
  .footer-logo:hover {
    transform: scale(1.05);
  }
  
  .footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-link:hover {
    color: #0d6efd;
  }
  
  /* Social Icons */
  .social-icon {
    font-size: 1.4rem;
    margin: 0 8px;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .social-icon:hover {
    transform: scale(1.2);
  }
  
  /* Individual Colors */
  .social-icon.whatsapp { color: #25D366; }
  .social-icon.facebook { color: #1877f2; }
  .social-icon.tiktok { color: #000; }
  .social-icon.instagram { color: #e1306c; }
  .social-icon.linkedin { color: #0a66c2; }
  
  .social-icon.whatsapp:hover { color: #1ebe5d; }
  .social-icon.facebook:hover { color: #0a58ca; }
  .social-icon.tiktok:hover { color: #444; }
  .social-icon.instagram:hover { color: #c13584; }
  .social-icon.linkedin:hover { color: #004182; }
  
  .footer-link {
    color: #ccc;
    text-decoration: none;
  }
  
  .footer-link:hover {
    color: #0d6efd;
  }
  
  .small.text-muted {
    color: #aaa !important; /* ensure visibility */
    font-size: 0.9rem;
  }
  
  /* Footer Credit Styling */
  .footer-credit {
    color: #aaa;
    font-size: 0.85rem;
    margin-top: 8px;
  }
  
  .jvdev {
    font-family: 'Poppins', sans-serif; /* modern font */
    font-weight: 600;
    color: #0d6efd; /* primary blue */
    letter-spacing: 1px;
    transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
  }
  
  .jvdev:hover {
    color: #ffd700; /* gold accent on hover */
    text-shadow: 0 0 10px rgba(255,215,0,0.6);
    transform: scale(1.05);
    cursor: pointer;
  }
  
  
  
  /* Footer Credit Styling */
  .footer-credit {
    color: #aaa;
    font-size: 0.9rem;
    margin-top: 8px;
  }
  
  /* JV Developers Mark */
  .jvdev-mark {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #0d6efd; /* primary blue */
    letter-spacing: 1px;
    padding: 4px 10px;
    border: 2px solid #0d6efd;
    border-radius: 20px; /* pill shape badge */
    background: rgba(13,110,253,0.1);
    transition: all 0.3s ease;
  }
  
  /* Highlight Developers word */
  .dev-highlight {
    color: #ffd700; /* gold accent */
  }
  
  /* Hover Effect */
  .jvdev-mark:hover {
    background: rgba(13,110,253,0.2);
    color: #ffd700;
    border-color: #ffd700;
    text-shadow: 0 0 10px rgba(255,215,0,0.6);
    transform: scale(1.05);
    cursor: pointer;
  }
  
  /* Footer Credit Styling */
  .footer-credit {
    color: #aaa;
    font-size: 0.9rem;
    margin-top: 8px;
  }
  
  /* JVDevelopers Logo */
  .jvdev-logo img.jv-logo {
    width: 100px;
    height: auto;
    border-radius: 100%; /* makes it round */
    box-shadow: 0 0 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    vertical-align: middle;
  }
  
  .jvdev-logo img.jv-logo:hover {
    transform: scale(1.05);
  }