/* ============================= */
/* 🎨 ROOT VARIABLES (LIGHT) */
/* ============================= */
:root {
    --primary: #1A3263;
    --secondary: #6c757d;
    --blue-slate: #4A5C69;
    --air-force-blue: #7891A4;
    --bg: #ffff;
    --text: #1A3263;
    --dark: #333;

    --radius: 10px;
    --radius: 10px;
    --transition: 0.3s ease;
}

/* 🌙 DARK MODE */
body.dark {
    --bg: #333;
    --text: #ffffff;
}

/* ============================= */
/* 🔧 GLOBAL RESET */
/* ============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================= */
/* 🌐 BODY */
/* ============================= */
html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    background: #f6f6f6 !important;
    color: var(--text);
    line-height: 1.6;
    transition: background var(--transition), color var(--transition);
}

/* ============================= */
/* 🔤 TYPOGRAPHY */
/* ============================= */
h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

p {
    margin-bottom: 10px;
}

/* ============================= */
/* 🔗 LINKS */
/* ============================= */
a {
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
}

a:hover {
    opacity: 0.8;
}

/* ============================= */
/* Heading */
/* ============================= */

   .section-heading.left {
  text-align: center;
  color:  #1A3263;
}

.section-heading.left .heading-line {
  margin: 10px 0;
}

/* ============================= */
/* 🔘 BUTTONS */
/* ============================= */
.btn-custom {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--radius);
    border: none;
    background: var(--primary);
    color: #fff;
    transition: var(--transition);
    cursor: pointer;
}

.btn-custom:hover {
    opacity: 0.9;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

 /* Hero section */
    .hero-section {
      height: 100vh;
      position: relative;
      background-size: cover;
      background-position: center;
      transition: background-image 1s ease-in-out;
    }

    .hero-section::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      top: 0;
      left: 0;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

/* ============================= */
/* 📏 SPACING UTILITIES */
/* ============================= */
.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.py-1 {
    padding: 10px 0;
}

.py-2 {
    padding: 20px 0;
}

.py-3 {
    padding: 40px 0;
}

/* ============================= */
/* 📐 CONTAINER */
/* ============================= */
.container-custom {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ============================= */
/* 🖼 IMAGES */
/* ============================= */
/* img {
    max-width: 100%;
    display: block;
} */

/* ============================= */
/* 🎯 FLEX UTILITIES */
/* ============================= */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ============================= */
/* ✨ TRANSITION */
/* ============================= */
.transition {
    transition: var(--transition);
}

/* ============================= */
/* 📱 RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }
}

/* //////////////////////////////////NAV-Bar//////////////////////////////////// */
/* ===== Root ===== */
:root {
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
}

/* ===== Navbar ===== */
.navbar-glass {
    backdrop-filter: blur(12px);
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    color: var(--primary) !important;
    border: 1px solid #fff !important;
}

.dropdown:hover {
    cursor: pointer !important;
}

.dropdown {
    cursor: pointer !important;
}

.nava {
    color: var(--primary) !important;
}

.nava:hover {
    color: #fff !important;
}

.sample-btn {
    background: var(--primary) !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 10px !important;
}


/* Sticky */
.navbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    border-radius: 50px !important;

}

/* Logo */
.logo-img {
    height: 70px;
    border-radius: 30px !important;
}

/* ===== Layout ===== */
.navbar-container {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Left */
.nav-left {
    flex: 1;
}

/* Center */
.nav-center {
    flex: 2;
    display: none;
    justify-content: center;
    gap: 30px;
}

/* Right */
.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

/* Button */
.btn-custom {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ===== Sidebar (Mobile Fullscreen) ===== */
.sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    transition: 0.4s;
    z-index: 999;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.sidebar.active {
    left: 0;
}

.sidebar a {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
}


/* Request Button */

.request-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 18px;
  text-decoration: none;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* Hover Effect */
.request-btn:hover {
  background-color: #fff;
  color: #1A3263; 
}
/* ===== Hamburger ===== */
.hamburger {
    width: 28px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #000;
    transition: 0.3s;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
    background: #fff;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
    background: #fff;
}

/* ===== Desktop ===== */
@media (min-width: 992px) {

    .nav-center {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .sidebar {
        display: none;
    }
}

/* ================================================Rendam -css */

.product-card {
  background: #fff;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}




    /*================================Footer=============================================*/
    .footer {
      background: #1A3263;
      color: #ddd;
      padding: 60px 0 20px;
    }

    .footer h5 {
      color: #fff;
      margin-bottom: 20px;
      font-weight: 600;
    }

    .footer a {
      color: #ddd;
      text-decoration: none;
      transition: 0.3s;
    }

    .footer a:hover {
      color: #fff;
      padding-left: 5px;
    }

    /* Logo */
    .footer-logo img {
      max-width: 200px;
    }

    /* Social Icons */
    .social-icons a {
      display: inline-block;
      margin: 5px;
      font-size: 16px;
      width: 42px;
      height: 42px;
      line-height: 42px;
      text-align: center;
      border-radius: 50%;
      background: #ffffff20;
      color: #fff;
      transition: 0.3s;
    }

    .social-icons a:hover {
      background: #fff;
      color: #1A3263;
      transform: translateY(-4px);
    }

    /* WhatsApp Highlight */
    .whatsapp {
      background: #25D366 !important;
    }

    .whatsapp:hover {
      background: #1ebe5d !important;
      color: #fff !important;
    }

    /* Bottom */
    .footer-bottom {
      border-top: 1px solid #ffffff30;
      margin-top: 40px;
      padding-top: 15px;
      text-align: center;
      font-size: 14px;
    }

    /* Mobile Center Alignment */
    @media (max-width: 767px) {
      .footer {
        text-align: center;
      }

      .footer .row>div {
        margin-bottom: 20px;
      }

      .footer-logo img {
        max-width: 220px;
        text-align: center !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
      }
    }











