 
    /* Custom CSS for Contact Page */
    :root {
      --primary-color: #0d6efd;
      --primary-dark: #0b5ed7;
      --primary-light: #3d8bfd;
      --bg-light: #f8f9fa;
      --bg-dark: #212529;
      --text-dark: #f8f9fa;
      --footer-bg: #107ae4;
      --footer-text: #111111;
      --footer-link-color: rgba(255, 255, 255, 0.8);
      --footer-hover-color: rgb(248, 5, 5);
      --secondary-color: #7e3af2;
      --accent-color: #0694a2;
      --success-color: #0e9f6e;
      --warning-color: #f59e0b;
      --danger-color: #dc2626;
      --light-color: #f9fafb;
      --dark-color: #1f2a37;
      --text-muted: #6b7280;
      --bg-secondary: #f3f4f6;
      --border-color: #e5e7eb;
      --font-family: 'Poppins', sans-serif;
      --heading-font: 'Montserrat', sans-serif;
      --border-radius: 8px;
      --border-radius-sm: 4px;
      --border-radius-lg: 12px;
      --transition: all 0.3s ease;
      --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
      --box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
      --box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    }

    /* Dark mode styles */
    [data-bs-theme="dark"] {
      --bg-color: var(--bg-dark);
      --text-color: var(--text-dark);
      --navbar-bg: #343a40;
      --topbar-bg: #2c3034;
    }

    [data-bs-theme="light"] {
      --bg-color: var(--bg-light);
      --text-color: var(--text-primary);
      --navbar-bg: #ffffff;
      --topbar-bg: #f8f9fa;
    }

    body {
      background-color: var(--bg-color);
      color: var(--text-color);
      transition: background-color 0.3s, color 0.3s;
      font-family: var(--font-family);
      padding-top: 135px; /* Account for fixed header */
    }

    @media (max-width: 991.98px) {
      body {
        padding-top: 76px; /* Adjust for navbar only on mobile */
      }
    }

    /* Apply primary theme color */
    .btn-primary, .social-btn, .back-to-top {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
    }
    
    .btn-primary:hover, .social-btn:hover {
      background-color: var(--primary-dark);
      border-color: var(--primary-dark);
    }
    
    .btn-outline-primary {
      color: var(--primary-color);
      border-color: var(--primary-color);
    }
    
    .btn-outline-primary:hover {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
    }
    
    .text-primary {
      color: var(--primary-color) !important;
    }
    
    .section-title {
      color: var(--primary-color);
      position: relative;
      padding-bottom: 15px;
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background-color: var(--primary-color);
    }
    
    .section-title.text-center:after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    /* Contact Hero Section - Matching About Page */
    .contact-hero {
      background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
      color: white;
      padding: 100px 0;
      text-align: center;
    }
    
    @media (max-width: 768px) {
      .contact-hero {
        padding: 60px 0;
      }
      
      .contact-hero h1 {
        font-size: 2rem;
      }
    }
    
    /* Contact Information Section */
    .contact-info-card {
      text-align: center;
      padding: 2rem 1.5rem;
      border: none;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(13, 110, 253, 0.1);
      transition: transform 0.3s ease;
      border-top: 4px solid var(--primary-color);
    }
    
    .contact-info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(13, 110, 253, 0.15);
    }
    
    .contact-icon {
      font-size: 2.5rem;
      color: var(--primary-color);
      margin-bottom: 1rem;
    }
    
    @media (max-width: 576px) {
      .contact-info-card {
        padding: 1.5rem 1rem;
      }
    }
    
    /* Social Media Section */
    .social-media-section {
      background: linear-gradient(135deg, var(--primary-color) 0%, #0d6efd 100%);
      padding: 80px 0;
      color: white;
    }

    .social-media-card {
      background: white;
      border-radius: 10px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .social-media-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .social-media-card h4 {
      color: var(--dark-color);
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .social-media-card p {
      color: #6c757d;
      margin-bottom: 1.5rem;
      flex-grow: 1;
    }

    .social-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .facebook-card .social-icon { color: #3b5998; }
    .twitter-card .social-icon { color: #1da1f2; }
    .linkedin-card .social-icon { color: #0077b5; }
    .youtube-card .social-icon { color: #ff0000; }
    .instagram-card .social-icon { color: #e4405f; }
    .whatsapp-card .social-icon { color: #25d366; }

    .social-btn {
      display: inline-block;
      padding: 0.5rem 1.5rem;
      background-color: var(--primary-color);
      color: white;
      border-radius: 30px;
      text-decoration: none;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-weight: 500;
    }

    .social-btn:hover {
      background-color: #0d2b5e;
      color: white;
      transform: translateY(-2px);
      text-decoration: none;
    }
    
    @media (max-width: 768px) {
      .social-media-card {
        margin-bottom: 1.5rem;
      }
      
      .social-media-section {
        padding: 2.5rem 0;
      }
      
      .social-icon {
        font-size: 2rem;
      }
    }
    
    /* Location Section */
    .travel-direction {
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid #e9ecef;
    }
    
    .travel-direction:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }
    
    .travel-direction h5 {
      display: flex;
      align-items: center;
      margin-bottom: 0.5rem;
      color: var(--primary-color);
    }
    
    .map-container {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(13, 110, 253, 0.1);
      height: 100%;
      border: 1px solid rgba(13, 110, 253, 0.1);
    }
    
    .map-container iframe {
      display: block;
      width: 100%;
      height: 450px;
    }
    
    @media (max-width: 768px) {
      .map-container {
        margin-bottom: 2rem;
        height: 300px;
      }
      
      .travel-direction {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
      }
    }
    
    /* Contact Form */
    .contact-form {
      border: none;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(13, 110, 253, 0.1);
      border-top: 4px solid var(--primary-color);
    }
    
    .form-control:focus, .form-select:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }
    
    /* Header Styles */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1050;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      will-change: transform;
    }

    /* When scrolled, slide header up 45px so navbar sticks to screen top - DESKTOP ONLY */
    @media (min-width: 992px) {
      .site-header.header-scrolled {
        transform: translateY(-45px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
      }
    }

    /* MOBILE: Completely disable header scroll behavior and transitions */
    @media (max-width: 991.98px) {
      .site-header {
        transition: none !important;
        transform: none !important;
      }
      
      .site-header.header-scrolled {
        transform: none !important;
        box-shadow: 0 2px 4px rgba(0,0,0,.1) !important;
      }
    }

    /* Top Bar Styles */
    .top-bar {
      background-color: var(--topbar-bg);
      border-bottom: 1px solid #dee2e6;
      font-size: 0.8rem;
      position: relative;
      z-index: 1030;
      padding: 0.5rem 0;
    }

    [data-bs-theme="dark"] .top-bar {
      border-bottom-color: #495057;
    }

    .top-bar a {
      color: var(--text-color) !important;
      text-decoration: none;
      transition: color 0.2s, transform 0.2s;
      white-space: nowrap;
    }

    .top-bar a:hover {
      color: var(--primary-color) !important;
      transform: translateY(-1px);
    }

    .social-icons a {
      font-size: 1rem;
    }

    /* Navbar Styles */
    .navbar {
      background-color: var(--navbar-bg);
      box-shadow: 0 2px 4px rgba(0,0,0,.1);
      transition: background-color 0.3s;
      position: relative;
      width: 100%;
      z-index: 1020;
      height: 70px;
    }

    .navbar-brand img {
      max-height: 50px;
      width: auto;
    }

    .brand-text {
      font-size: 0.6rem;
      margin-bottom: 0;
      font-weight: 600;
      line-height: 1;
    }

    .nav-link {
      color: var(--text-color) !important;
      font-weight: 500;
      position: relative;
      padding: 0.5rem 0.75rem !important;
      transition: color 0.2s, transform 0.2s;
      white-space: nowrap;
      font-size: 0.95rem;
    }

    @media screen and (max-width: 1230.98px) {
      .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.5rem !important;
      }
    }

    .nav-link:hover, .nav-link.active {
      color: var(--primary-color) !important;
      transform: translateY(-1px);
    }

    /* Active link indicator */
    .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0.75rem;
      right: 0.75rem;
      height: 2px;
      background-color: var(--primary-color);
      border-radius: 2px;
    }

    /* Dropdown styles */
    .dropdown-menu {
      border: none;
      box-shadow: 0 4px 6px rgba(0,0,0,.1);
    }

    .dropdown-item {
      padding: 0.5rem 1rem;
      transition: background-color 0.2s, transform 0.2s;
    }

    .dropdown-item:hover {
      background-color: rgba(13, 110, 253, 0.1);
      transform: translateX(5px);
    }

    /* Mobile menu toggler animation */
    .navbar-toggler {
      border: none;
      padding: 0.25rem;
      width: 30px;
      height: 30px;
      position: relative;
    }

    .navbar-toggler span {
      display: block;
      height: 2px;
      width: 100%;
      background-color: var(--text-color);
      margin: 5px 0;
      transition: all 0.3s;
      transform-origin: center;
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Desktop Hover Behavior */
    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
      
      .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
      }
    }

    /* Mobile Styles */
    @media (max-width: 991.98px) {
      .top-bar {
        display: none !important; /* Hide top bar on mobile */
      }
      
      .navbar-collapse {
        position: fixed;
        top: var(--header-height, 60px);
        right: -100%;
        bottom: 0;
        height: calc(100vh - var(--header-height, 80px));
        width: 280px;
        max-width: 90%;
        padding: 1rem;
        background-color: var(--navbar-bg);
        box-shadow: -5px 0 15px rgba(0,0,0,.12);
        transition: right 0.28s ease;
        z-index: 1065; /* above content */
        overflow-y: auto; /* only menu scrolls */
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
      }
      
      .navbar-collapse.show {
        right: 0;
      }
      
      /* Prevent body/page scrolling when mobile menu open */
      .no-scroll,
      html.no-scroll {
        overflow: hidden;
        height: 100%;
        touch-action: none;
      }
      
      /* Backdrop for mobile menu */
      .navbar-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,0.45);
        z-index: 1060; /* below menu but above page content */
        display: none;
      }
      .navbar-backdrop.show {
        display: block;
      }
      
      /* ensure links inside menu close it when tapped */
      .navbar-collapse .nav-link,
      .navbar-collapse .dropdown-item {
        -webkit-tap-highlight-color: transparent;
      }
      
      .navbar-nav {
        margin-top: 1rem;
        text-align: left;
        width: 100%;
      }
      
      .nav-item {
        width: 100%;
        text-align: left;
      }
      
      .nav-link {
        text-align: left;
        justify-content: flex-start;
        display: flex;
        align-items: center;
      }
      
      /* FIX: Ensure dropdown menus work properly on mobile */
      .dropdown-menu {
        position: static !important;
        transform: none !important;
        border: none;
        background-color: rgba(0,0,0,0.05);
        box-shadow: none;
        text-align: left;
        margin-left: 1rem;
        width: calc(100% - 2rem);
        display: none; /* Hide by default */
      }
      
      [data-bs-theme="dark"] .dropdown-menu {
        background-color: rgba(255,255,255,0.05);
      }
      
      .dropdown-menu.show {
        display: block !important; /* Show when toggled */
      }
      
      .dropdown-toggle::after {
        float: none;
        margin-top: 0.5rem;
        margin-left: 0.5rem;
      }
      
      /* Mobile top bar integration */
      .mobile-top-bar {
        border-bottom: 1px solid #dee2e6;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        text-align: left;
      }
      
      [data-bs-theme="dark"] .mobile-top-bar {
        border-bottom-color: #495057;
      }
      
      .mobile-top-bar a {
        display: block;
        padding: 0.5rem 0;
        color: var(--text-color) !important;
        text-decoration: none;
        text-align: left;
        transition: color 0.2s, transform 0.2s;
      }
      
      .mobile-top-bar a:hover {
        color: var(--primary-color) !important;
        transform: translateX(5px);
      }
      
      /* Stack brand logos horizontally on mobile */
      .navbar-brand-container {
        flex-direction: row;
        align-items: center;
      }
      
      .navbar-brand {
        margin-right: 0.5rem !important;
        margin-bottom: 0;
      }
      
      /* Dark mode toggle positioning on mobile */
      .navbar-toggler-container {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }
    }

    /* Extra small devices */
    @media (max-width: 575.98px) {
      .navbar-brand img {
        max-height: 35px;
        width: 30px;
      }
      
      .brand-text {
        font-size: 0.5rem;
      }
      
      .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
      }
      
      /* Ensure logos stay side by side on mobile */
      .navbar-brand-container {
        flex-wrap: nowrap;
      }
      
      .navbar-brand {
        flex-shrink: 0;
      }
    }

    /* Animation classes */
    .bi-animate {
      transition: transform 0.2s;
    }

    a:hover .bi-animate, .btn:hover .bi-animate {
      transform: translateY(-1px);
    }

    /* Theme toggle button */
    .theme-toggle {
      border: none;
      background: transparent;
      font-size: 1.25rem;
      cursor: pointer;
      padding: 0.25rem 0.5rem;
      border-radius: 0.25rem;
      transition: background-color 0.2s, transform 0.2s, color 0.2s;
      color: var(--text-color);
    }

    .theme-toggle:hover {
      background-color: rgba(0,0,0,.1);
      transform: scale(1.1);
      color: var(--primary-color);
    }

    [data-bs-theme="dark"] .theme-toggle:hover {
      background-color: rgba(255,255,255,.1);
    }

    /* AI Robot Chatbox */
    .ai-robot-container {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
    }

    .ai-chat-toggle {
      width: 70px;
      height: 70px;
      cursor: pointer;
      transition: transform 0.3s ease-in-out;
      border-radius: 50%;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #e0f2f7; /* Light background for the toggle */
      overflow: hidden;
      animation: float 2s ease-in-out infinite; /* Cute floating animation */
    }

    .ai-chat-toggle:hover {
      transform: scale(1.1);
    }

    /* Floating Animation */
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    /* The Cute CSS-based Robot */
    .cute-robot-icon {
      position: relative;
      width: 50px;
      height: 50px;
      background-color: #ffffff; /* Main body color */
      border-radius: 50%;
      border: 2px solid #b2ebf2; /* Light blue border */
      box-shadow: inset 0 0 5px rgba(0,0,0,0.1); /* Inner shadow */
      display: flex;
      justify-content: center;
      align-items: center;
    }

    /* Robot's head */
    .cute-robot-icon::before {
      content: '';
      position: absolute;
      top: -15px; /* Position above the body */
      width: 35px;
      height: 35px;
      background-color: #ffffff;
      border-radius: 50%;
      border: 2px solid #b2ebf2;
      box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
      z-index: 1;
    }

    /* Robot's antenna */
    .cute-robot-icon::after {
      content: '';
      position: absolute;
      top: -28px; /* Above the head */
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 8px;
      background-color: #b2ebf2; /* Antenna color */
      border-radius: 2px 2px 0 0;
      z-index: 2;
    }

    /* Robot's screen/face */
    .cute-robot-face {
      position: absolute;
      width: 25px;
      height: 18px;
      background-color: #333333; /* Dark screen */
      border-radius: 5px;
      top: -5px; /* Position on the head */
      z-index: 2;
      display: flex;
      justify-content: space-around;
      align-items: center;
    }

    /* Robot's glowing eyes */
    .cute-robot-face .eye-light {
      width: 8px;
      height: 8px;
      background-color: #00bcd4; /* Glowing blue */
      border-radius: 50%;
      box-shadow: 0 0 5px #00bcd4, 0 0 10px #00bcd4; /* Glowing effect */
    }

    /* Robot's chest accent */
    .cute-robot-accent {
      position: absolute;
      width: 30px;
      height: 15px;
      background-color: #80deea; /* Light teal accent color */
      border-radius: 0 0 15px 15px; /* Rounded bottom */
      top: 30px; /* Position on the body */
      left: 50%;
      transform: translateX(-50%);
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    /* AI Chatbox */
    .ai-chatbox {
      width: 320px;
      height: 400px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      display: none; /* Initially hidden */
      flex-direction: column;
      position: absolute;
      bottom: 80px; /* Position above the logo */
      right: 0;
    }

    .chatbox-header {
      background: #007bff;
      color: #fff;
      padding: 10px 15px;
      border-radius: 10px 10px 0 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .chatbox-header .close-btn {
      background: none;
      border: none;
      color: #fff;
      font-size: 24px;
      cursor: pointer;
    }

    .chatbox-body {
      flex-grow: 1;
      padding: 15px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    /* Message Styles */
    .message {
      padding: 8px 12px;
      border-radius: 10px;
      max-width: 80%;
      word-wrap: break-word;
    }

    .sent-message {
      background-color: #007bff;
      color: #fff;
      align-self: flex-end;
    }

    .received-message {
      background-color: #f1f1f1;
      color: #333;
      align-self: flex-start;
    }

    .chatbox-footer {
      display: flex;
      padding: 10px 15px;
      border-top: 1px solid #eee;
    }

    .chatbox-footer input {
      flex-grow: 1;
      border: 1px solid #ccc;
      border-radius: 20px;
      padding: 8px 15px;
      margin-right: 10px;
      outline: none;
    }

    .chatbox-footer button {
      background: #007bff;
      color: #fff;
      border: none;
      border-radius: 20px;
      padding: 8px 15px;
      cursor: pointer;
    }

    /* Back to Top Button - FIXED VISIBILITY */
    .back-to-top {
      background-color: var(--primary-color);
      color: white;
      box-shadow: var(--box-shadow);
      position: fixed;
      bottom: 100px;
      right: 30px;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 1; /* Changed from 0 to 1 */
      visibility: visible; /* Changed from hidden to visible */
      transition: var(--transition);
      z-index: 1000;
      border: none;
      outline: none;
    }

    .back-to-top:hover {
      background-color: var(--primary-dark);
      transform: translateY(-3px);
    }

    @media (max-width: 768px) {
      .ai-robot-container, .back-to-top {
        bottom: 10px;
        right: 10px;
      }
      
      .back-to-top {
        bottom: 80px;
      }
    }

    /* Footer */
    footer {
      background-color: var(--footer-bg) !important;
      color: var(--footer-text);
      padding-top: 3rem;
    }

    .footer-links a {
      color: var(--footer-link-color);
      text-decoration: none;
      transition: var(--transition);
      font-size: 0.9rem;
    }

    .footer-links a:hover {
      color: var(--footer-text);
      padding-left: 5px;
    }

    .footer-bottom {
      background-color: rgba(0, 0, 0, 0.2) !important;
      border-top: 1px solid var(--border-color);
      padding: 1rem 0;
    }
  