/********** Template CSS **********/

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed !important;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Fonts ***/
.font-work-sans {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-dancing-script {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


/*** Button ***/




/*** Navbar ***/
body{
    margin:0;
    font-family: 'Poppins', sans-serif;
    background:#0b0f1a;
    color:#fff;
}
/* HEADER */
.header{
    position:absolute;
    top:20px;
    width:100%;
    z-index:100;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:90%;
    margin:auto;
}

/* LOGO */
.logo-img{
    height:60px;
}

/* MENU */
.nav-menu{
    display:flex;
    gap:12px;
    align-items:center;
}

.nav-menu a{
    text-decoration:none;
    color:#fff;
    padding:10px 16px;
    border-radius:10px;
    background:rgba(0,0,0,0.6);
    transition:0.3s;
    display:block;
}

.nav-menu a:hover{
    background:#1e40ff;
}

/* DROPDOWN */
.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    background:#111827;
    border-radius:10px;
    flex-direction:column;
    min-width:200px;
    padding:6px 0;

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:0.3s ease;
}

/* SHOW */
.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu a{
    padding:10px 15px;
    background:none;
    border-radius:0;
    white-space:nowrap;
}

.dropdown:hover .dropdown-menu{
    display:flex;
}

/* SUBMENU */
.submenu{
    position:relative;
}

.submenu-menu{
    position:absolute;
    top:0;
    left:100%;
    background:#111827;
    border-radius:10px;
    display:none;
    flex-direction:column;
    min-width:200px;
    padding:6px 0;
}

.submenu-menu a{
    padding:10px 15px;
}

.submenu:hover .submenu-menu{
    display:flex;
}

/* ALIGN ARROW */
.submenu > a{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* BUTTON */
.quote-btn{
    background:#3b82f6;
    padding:10px 20px;
    border-radius:25px;
    color:#fff;
    text-decoration:none;
}

/* HAMBURGER */
.menu-toggle{
    display:none;
    font-size:28px;
    color:#fff;
    cursor:pointer;
}

/* ================= MOBILE ================= */
@media(max-width:991px){

    .menu-toggle{
        display:block;
    }

    .navbar{
        width:95%;
    }

    .nav-menu{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        flex-direction:column;
        background:#111827;
        padding:15px;
        display:none;
        border-radius:0 0 15px 15px;
    }

    .nav-menu.active{
        display:flex;
    }

    .nav-menu a{
        width:100%;
        text-align:left;
        padding:12px;
        background:#1f2937;
        border-radius:8px;
    }

    /* DROPDOWN MOBILE */
    .dropdown-menu{
        position:static;
        display:none;
        background:#1f2937;
        margin-top:5px;
        border-radius:8px;
    }

    .dropdown.active .dropdown-menu{
        display:flex;
    }

    /* SUBMENU MOBILE */
    .submenu-menu{
        position:static;
        display:none;
        background:#374151;
        margin-top:5px;
        border-radius:8px;
    }

    .submenu.active .submenu-menu{
        display:flex;
    }

    /* BUTTON HIDE */
    .quote-btn{
        display:none;
    }
}

/* HERO */
/* RESET (optional but recommended) */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* HERO SECTION */
.hero{
    position:relative;
    height:120vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    font-family:Arial, sans-serif;
}

/* BACKGROUND VIDEO */
.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

/* DARK OVERLAY */
.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.3);
    z-index:2;
}

/* HERO CONTENT CONTAINER */
.hero-container{
    width:90%;
    margin:auto;
    position:relative;
    z-index:3;
    display:flex;
    align-items:center;
    justify-content:flex-start;
}

/* LEFT CONTENT */
.hero-left{
    max-width:650px;
}

/* HEADING */
.hero-left h1{
    font-size:60px;
    line-height:1.1;
    color:#fff;
    font-weight:700;
}

/* PARAGRAPH */
.hero-left p{
    color:#ddd;
    margin:20px 0;
    font-size:20px;
    line-height:1.6;
}

/* BUTTONS */
.hero-buttons{
    display:flex;
    gap:15px;
    margin-top:10px;
}

/* COMMON BUTTON */
.btn{
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
    color:#fff;
    font-size:15px;
    transition:all 0.3s ease;
    display:inline-block;
}

/* PRIMARY BUTTON */
.btn-primary{
    background:#3b82f6;
}

.btn-primary:hover{
    background:#2563eb;
}

/* DARK BUTTON */
.btn-dark{
    background:#1f2937;
}

.btn-dark:hover{
    background:#111827;
}

/* SERVICES STRIP */
.services{
    position:absolute;
    bottom:40px;
    width:100%;
    z-index:3;
}

/* SERVICES BOX */
.services-box{
    width:90%;
    margin:auto;
    background:#111827;
    padding:25px 30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

/* SERVICES GRID */
.services-top{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

/* SERVICE CARD */
.service-card{
    padding-left:15px;
    border-left:4px solid #3b82f6;
    color:#fff;
    font-weight:500;
    font-size:15px;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media(max-width:992px){

    .hero{
        height:auto;
        padding:100px 0 60px;
    }

    .hero-container{
        text-align:center;
        justify-content:center;
    }

    .hero-left{
        max-width:100%;
    }

    .hero-left h1{
        font-size:40px;
    }

    .hero-left p{
        font-size:16px;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .services{
        position:static;
        margin-top:40px;
    }

    .services-top{
        grid-template-columns:1fr 1fr;
    }
}

/* MOBILE */
@media(max-width:600px){

    .hero-left h1{
        font-size:30px;
    }

    .hero-left p{
        font-size:14px;
    }

    .btn{
        padding:10px 18px;
        font-size:14px;
    }

    .services-top{
        grid-template-columns:1fr;
    }

    .services-box{
        padding:20px;
    }
}

.about-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f8f8, #eef2f3);
  overflow: hidden;
}

/* Decorative shape */
.about-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(0, 123, 255, 0.08);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

/* VIDEO WRAPPER */
.video-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.2);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Hover zoom */
.video-wrapper:hover video {
  transform: scale(1.08);
}

/* Overlay */
.video-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #000;
  font-size: 22px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: 0.3s;
}

/* Pulse animation */
.play-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  animation: pulse 1.5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}

/* CONTENT */
.content-area {
  padding-left: 30px;
}

.content-area h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #222;
}

.content-area h2 span {
  color: #007bff;
}

.content-area p {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

/* Highlight box */
.highlight-box {
  margin-top: 20px;
  padding: 15px 20px;
  background: #0b132b;
  border-left: 4px solid #007bff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  font-size: 16px;
}

/* RESPONSIVE */
@media(max-width: 991px) {
  .content-area {
    padding-left: 0;
    margin-top: 30px;
    text-align: center;
  }

  .content-area h2 {
    font-size: 30px;
  }
}



.video-hero {
  position: relative;
  height: 95vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* VIDEO */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* GRADIENT OVERLAY (LEFT DARK → RIGHT LIGHT) */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 20%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.1) 100%
  );
  z-index: 2;
}

/* CONTENT */
.video-hero .content {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 650px;
  padding-left: 20px;
}

/* TAG STYLE */
.tag {
  background: #fff;
  color: #000;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 25px;
  font-weight: 500;
}

/* HEADING */
.video-hero h1 {
  font-size: 52px;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #fff;
}

/* TEXT */
.video-hero p {
  font-size: 24px;
  line-height: 1.6;
  color: #ddd;
}



/* RESPONSIVE */
@media(max-width: 768px) {
  .video-hero {
    height: 80vh;
  }

  .video-hero h1 {
    font-size: 32px;
  }

  .video-hero p {
    font-size: 18px;
  }

  
}



/* SECTION */
.mkts-wrap {
  background: radial-gradient(circle at top left, #0f172a, #020617);
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

/* animated background glow */
.mkts-wrap::before,
.mkts-wrap::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59,130,246,0.25), transparent);
  filter: blur(100px);
}

.mkts-wrap::before {
  top: -100px;
  left: -100px;
}

.mkts-wrap::after {
  bottom: -100px;
  right: -100px;
}

/* CONTAINER */
.mkts-container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.mkts-head {
  text-align: center;
  margin-bottom: 80px;
}

.mkts-head span {
  background: linear-gradient(135deg, #ffffff, #94a3b8);
  color: #000;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
}

/* ITEM */
.mkts-item {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 100px;
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.9s ease;
}

.mkts-item.show {
  opacity: 1;
  transform: translateY(0);
}

.mkts-item.alt {
  flex-direction: row-reverse;
}

/* IMAGE BOX */
.mkts-media {
  flex: 1;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

.mkts-media img {
  width: 100%;
  display: block;
  transition: transform 0.7s ease;
}

/* hover zoom + tilt illusion */
.mkts-media:hover img {
  transform: scale(1.12) rotate(1deg);
}

/* glass border */
.mkts-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 25px;
}

/* CONTENT */
.mkts-info {
  flex: 1;
}

.mkts-info h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mkts-info p {
  color: #cbd5f5;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 15px;
}

/* subtle hover animation */
.mkts-info:hover h2 {
  transform: translateX(5px);
  transition: 0.3s;
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .mkts-item {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .mkts-item.alt {
    flex-direction: column;
  }

  .mkts-info h2 {
    font-size: 28px;
  }
}





/* SECTION */
/* SECTION */
.stats-wrap {
  display: flex;
  min-height: 600px;
  overflow: hidden;
  background: #020617;
}

/* LEFT IMAGE */
.stats-media {
  width: 60%;
  position: relative;
  overflow: hidden;
}

.stats-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.stats-media:hover img {
  transform: scale(1.12);
}

/* overlay with gradient */
.stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,6,23,0.8), transparent);
}

/* RIGHT PANEL */
.stats-panel {
  width: 40%;
  background: linear-gradient(135deg, #0b132b, #020617);
  padding: 90px 60px;
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* angled cut */
.stats-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: -140px;
  width: 200px;
  height: 100%;
  background: inherit;
  clip-path: polygon(100% 0, 0 0, 65% 100%, 100% 100%);
}

/* TITLE */
.stats-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 50px;
  line-height: 1.3;
}

.stats-title span {
  color: #3b82f6;
}

/* LIST */
.stats-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* CARD */
.stats-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 15px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
}

/* hover glow */
.stats-card:hover {
  transform: translateX(12px);
  background: rgba(59,130,246,0.1);
  box-shadow: 0 10px 30px rgba(59,130,246,0.2);
}

/* ICON CIRCLE */
.stats-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  box-shadow: 0 5px 15px rgba(59,130,246,0.5);
}

/* TEXT */
.stats-label {
  font-size: 15px;
  color: #94a3b8;
}

.stats-value {
  font-size: 26px;
  font-weight: 700;
  margin-top: 3px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .stats-wrap {
    flex-direction: column;
  }

  .stats-media,
  .stats-panel {
    width: 100%;
  }

  .stats-panel {
    padding: 50px 25px;
    text-align: center;
  }

  .stats-panel::before {
    display: none;
  }

  .stats-card {
    justify-content: center;
  }
}




.page-header-banner {
    position: relative;
    background: url("../img/Banner.webp") no-repeat center center;
    background-size: cover;
    color: #fff;
}

/* Overlay for readability */
.page-header-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); /* adjust darkness */
    z-index: 1;
}

/* Keep content above overlay */
.page-header-banner .container {
    position: relative;
    z-index: 2;
}

/* Fix breadcrumb colors */
.page-header-banner .breadcrumb a {
    color: #fff;
}

.page-header-banner .breadcrumb-item.active {
    color: #fff;
}


.about-section {
  background-color: #f9f9f9;
}

.about-section h2 {
  font-size: 36px;
  color: #222;
}

.about-content h3 {
  font-size: 26px;
  font-weight: 600;
}

.about-content p {
  color: #555;
  line-height: 1.7;
}

.about-content ul li {
  margin-bottom: 10px;
  font-weight: 600;
  color: #000
}


.tooling-section {
  background: #f5f5f5;
}

/* Buttons */
.btn-green {
  background: #1c6b5a;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
}

.btn-green:hover {
  background: #145244;
  color: #fff;
}

.btn-blue {
  background: #3aaed8;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
}

.btn-blue:hover {
  background: #2d8fb3;
  color: #fff;
}

/* Card */
.tool-card {
  background: #fff;
  border: 1px solid #ddd;
  text-align: center;
  transition: 0.3s;
}

.tool-card img {
  width: 100%;
  height: auto;
}

.tool-content {
  padding: 20px;
}

.tool-content h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

/* Hover Effect */
.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}


.quality-section {
  background: #f7f7f7;
}

/* Section Title */
.section-title h2,
.section-title h3 {
  font-weight: 700;
  position: relative;
  padding-left: 20px;
}

.section-title h2::before,
.section-title h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 5px;
  height: 80%;
  background: #f57c00;
}

/* Box Design */
.quality-box {
  background: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Left Border Accent */
.quality-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  border-radius: 10px 0 0 10px;
}

/* Color Variants */
.quality-box.blue::before {
  background: #2f5aa8;
}

.quality-box.orange::before {
  background: #f57c00;
}

/* Text */
.quality-box h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.quality-box p {
  color: #000;
  line-height: 1.7;
}

.quality-box ul {
  padding-left: 18px;
  margin: 15px 0;
}

.quality-box ul li {
  margin-bottom: 8px;
  font-weight: 500;
}


.mission-section {
  position: relative;
  background: url('../img/111.webp') center/cover no-repeat;
  padding: 120px 0 200px;
  color: #fff;
  overflow: hidden;
}

/* Dark Overlay */
/* Normal Overlay (Balanced) */
/* Blackish Overlay */

.mission-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 1;
}

/* Content above overlay */
.mission-section .container {
  position: relative;
  z-index: 2;
}

/* Tag */
.tag {
  display: inline-block;
  background: #e5e5e5;
  color: #000;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Mission Text */
.mission-content h1 {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.4;
  max-width: 700px;
  color: #fff;
}

/* Values Section */
.values-wrapper {
  margin-top: 80px;
  position: relative;
}
.values-wrapper .row {
  margin-top: 10px;
}

/* Title */
.values-title {
  background: #e5e5e5;
  color: #000;
  display: inline-block;
  padding: 12px 25px;
  border-radius: 10px 10px 0 0;
  font-weight: 600;
  margin-bottom: -1px;
}

/* Cards */
.value-box {
  background: #050d1a;
  padding: 40px 30px;
  height: 100%;
  min-height: 320px; /* 🔥 increased height */
  border-radius: 10px; /* space feel */
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s;
margin: 10px;
}

/* Blue Accent Line */
.value-box::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 40px;
  width: 4px;
  height: 50px;
  background: #2f6bff;
  border-radius: 5px;
}

/* Text */
.value-box h4 {
  margin-left: 20px;
  font-size: 25px;
  margin-bottom: 15px;
  color: #fff;
}

.value-box p {
  margin-left: 20px;
  color: #ccc;
  line-height: 1.7;
  font-size: 18px;
}


/* Remove last border */
.value-box:last-child {
  border-right: none;
}
.value-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
/* Responsive */
@media (max-width: 991px) {
  .mission-content h1 {
    font-size: 28px;
  }

  .value-box {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}

.content-section{
    padding:80px 0;
    background:#f9fafb;
}

.container1{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns: 3fr 1fr; /* 9:3 layout */
    gap:30px;
}

/* LEFT CONTENT */
.main-content h2{
    font-size:32px;
    margin-bottom:15px;
}

.main-content h3{
    font-size:22px;
    margin-bottom:15px;
}


.main-content p{
    font-size:16px;
    line-height:1.7;
    margin-bottom:20px;
    color:#444;
	font-weight:300;
}

.content-img img{
    width:100%;
    border-radius:15px;
    margin:20px 0;
}

/* SIDEBAR */
/* PRODUCT LIST */
/* SIDEBAR BOX */
.sidebar{
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* PRODUCT BOX (NEW COLOR) */
.products-box{
    background:#fff; /* dark premium */
    color:#fff;
    border-radius:15px;
    padding:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.products-box h3{
    margin-bottom:10px;
	
}

/* PRODUCT LIST */
.product-list{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:15px;
	
	
}

.product-list a{
    text-decoration:none;
    padding:12px 15px;
    background:#1c4f9c;
    border-radius:10px;
    color:#e5e7eb;
    font-size:18px;
    transition:0.3s;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* ARROW */
.product-list a::after{
    content:"›";
    font-size:18px;
}

/* HOVER EFFECT */
.product-list a:hover{
    background:#3b82f6;
    color:#fff;
    transform:translateX(5px);
}

/* CONTACT BOX */
.contact-box{
    background:#fff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.contact-box h3{
    margin-bottom:10px;
}

.contact-box p{
    font-size:18px;
    line-height:1.6;
    margin-bottom:12px;
    color:#444;
}

/* RESPONSIVE */
@media(max-width:991px){
    .sidebar{
        flex-direction:row;
        overflow-x:auto;
    }

    .sidebar-box{
        min-width:260px;
    }
}

/* RESPONSIVE */
@media(max-width:991px){
    .container1{
        grid-template-columns: 1fr;
    }

    
}


.section-box{
    margin-bottom:20px;
}

.section-box h3{
    margin-bottom:10px;
    font-size:18px;
    color:#222;
}

.custom-list{
    padding-left:18px; /* default bullet spacing */
    margin:0;
}

.custom-list li{
    margin-bottom:6px;
    font-size:16px;
    color:#444;
}

.data-table{
    width:100%;
    border-collapse:collapse;
    margin-top:10px;
}

/* HEADER */
.data-table th{
    background:#1c4f9c;
    color:#fff;
    padding:10px;
    text-align:left;
    font-size:18px;
}

/* CELLS */
.data-table td{
    border:1px solid #ddd;
    padding:10px;
    font-size:16px;
    color:#333;
}

/* ROW STRIPES */
.data-table tr:nth-child(even){
    background:#f5f8ff;
}

/* HOVER EFFECT (optional but clean) */
.data-table tr:hover{
    background:#e8f0ff;
}


}

/* SECTION */
/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
}

/* MAIN SECTION */
.contact-section{
    display:flex;
    width:100%;
    height:420px;
    overflow:hidden;
}

/* COMMON COLUMN */
.col{
    position:relative;
}

/* ================= LEFT IMAGE ================= */
.col-img{
    width:33.33%;
    background:url('../img/111.png') center/cover no-repeat;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

/* ================= CENTER CONTENT ================= */
.col-content{
    width:33.33%;
    background:#f3f3f3;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:30px;
}

.col-content h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:10px;
    color:#222;
}

.col-content p{
    font-size:15px;
    color:#666;
    margin-bottom:20px;
    max-width:350px;
}

/* SOCIAL ICONS */
.social-icons{
    margin-bottom:20px;
}

.social-icons a{
    display:inline-block;
    width:42px;
    height:42px;
    line-height:42px;
    margin:5px;
    background:#2d3748;
    color:#fff;
    border-radius:50%;
    font-size:16px;
    transition:0.3s;
}

.social-icons a:hover{
    background:#22c55e;
    transform:translateY(-3px);
}

/* BUTTON */
.btn{
    display:inline-block;
    background:#3b82f6;
    color:#fff;
    padding:12px 25px;
    border-radius:5px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn:hover{
    background:#3b82f6;
}

/* ================= RIGHT CATALOG ================= */
.col-catalog{
    width:33.33%;
    background:#2d3748;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
}

.catalog-box{
    text-align:center;
}

.catalog-box img{
    width:120px;
    margin-bottom:15px;
}

.catalog-box p{
    font-size:14px;
    font-weight:500;
    cursor:pointer;
}

.catalog-box p:hover{
    text-decoration:underline;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){
    .contact-section{
        flex-direction:column;
        height:auto;
    }

    .col-img,
    .col-content,
    .col-catalog{
        width:100%;
        clip-path:none;
    }

    .col-img{
        height:250px;
    }

    .col-catalog{
        padding:40px 0;
    }
}


/* TEAM SECTION */
.team-section {
    background: #0f172a;
}

.team-item {
    background: #111827;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
    text-align: center;
}

.team-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-content {
    padding: 20px;
}

.team-content h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
}

.team-content p {
    color: #0d6efd;
    font-size: 14px;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: #1f2937;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.team-social a:hover {
    background: #0d6efd;
    transform: translateY(-4px);
}

.team-item:hover {
    transform: translateY(-10px);
}

@media (max-width: 768px) {
    .team-item img {
        height: 240px;
    }
}


.stockist-section{
    background:#fff;
    padding:80px 20px;
    text-align:center;
    color:#fff;
}

/* TITLE */
.stockist-header h2{
    font-size:36px;
    margin-bottom:10px;
    font-weight:700;
}

.stockist-header p{
    color:#94a3b8;
    margin-bottom:50px;
}

/* LOGO GRID */
.stockist-logos{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

/* LOGO CARD */
.logo-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    width:200px;
    height:120px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;
    border:1px solid rgba(255,255,255,0.05);
}

/* IMAGE */
.logo-box img{
    max-width:100%;
    max-height:90px;
    object-fit:contain;
    transition:0.3s;
}

/* HOVER EFFECT */
.logo-box:hover{
    transform:translateY(-8px);
    border-color:#3b82f6;
}

.logo-box:hover img{
    transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:768px){
    .stockist-header h2{
        font-size:26px;
    }

    .logo-box{
        width:150px;
        height:100px;
        padding:20px;
    }
}



.cert-section{
    background:#020617;
    padding:120px 20px;
    text-align:center;
    color:#fff;
}

.cert-header h2{
    font-size:36px;
    margin-bottom:10px;
	color:#fff;
}

.cert-header p{
    color:#94a3b8;
    margin-bottom:50px;
}

.cert-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr); /* 2 per row */
    gap:25px;
}

.cert-card{
    background:#111827;
    padding:15px;
    border-radius:15px;
    text-decoration:none;
    color:#fff;
    transition:0.3s;
    border:1px solid rgba(255,255,255,0.05);
}

.cert-card img{
    width:100%;
    height:600px;
    object-fit:cover;
    border-radius:10px;
}

.cert-card:hover{
    transform:translateY(-8px);
    border-color:#3b82f6;
}

/* responsive */
@media(max-width:991px){
    .cert-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:500px){
    .cert-grid{
        grid-template-columns:1fr;
    }
}


.ps-contact-section{
    padding:180px 0;
    background:#0b1120;
}

.ps-contact-container{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
}

/* INFO CARD */
.ps-info-card{
    background:#111827;
    color:#fff;
    padding:25px;
    border-radius:12px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.05);
    transition:0.3s;
}

.ps-icon{
    width:50px;
    height:50px;
    margin:auto;
    background:#1c4f9c;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:22px;
    margin-bottom:15px;
}

.ps-info-card h3{
    margin-bottom:10px;
	 color:#d1d5db;
}

.ps-info-card p{
    font-size:16px;
    color:#d1d5db;
}

.ps-info-card a{
    color:#d1d5db;
    text-decoration:none;
}

/* HOVER */
.ps-info-card:hover{
    background:#1c4f9c;
    transform:translateY(-5px);
}

/* LOCATION */
.ps-location-card{
    background:#111827;
    padding:15px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.05);
    color:#fff;
}

.ps-location-card p{
    font-size:16px;
    color:#d1d5db;
}

.ps-location-card h3{
   
    color:#d1d5db;
}

.ps-location-card iframe{
    width:100%;
    height:180px;
    border:0;
    border-radius:10px;
}



/* RESPONSIVE */
@media(max-width:991px){
    .ps-contact-container{
        grid-template-columns:1fr;
    }



}


.services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #fff;
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  margin-top: 50px;
  color:#fff;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.service-card {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: 0.4s ease;
  backdrop-filter: blur(10px);
}

/* IMAGE */
.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}

/* TEXT */
.service-card h4 {
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
  color:#fff;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.service-card:hover img {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 26px;
  }
}




.custom-footer {
  background: linear-gradient(135deg, #020c1b, #0b2a4a);
  color: #fff;
  font-family: 'Poppins', sans-serif; /* ✅ ADD THIS */
}

/* Logo */
.footer-logo {
  color: #f7b84b;
  font-size: 28px;
  margin-bottom: 15px;
  height:50px;
}

/* Text */
.footer-text {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* Titles */
.footer-title {
  color: #f7b84b;
  margin-bottom: 20px;
  font-weight: 600;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  font-size: 18px;
}

.footer-links li {
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  transition: 0.3s;
}

.footer-links a:hover {
  color: #4da3ff;
  padding-left: 6px;
}

/* Contact */
.footer-contact {
font-size: 16px;
  margin-bottom: 10px;
}

.footer-contact i {
  margin-right: 8px;
  color: #4da3ff;
}

/* Social */
.footer-social a {
  display: inline-block;
  width: 38px;
  height: 38px;
  background: #4da3ff;
  color: #fff;
  text-align: center;
  line-height: 38px;
  margin-right: 8px;
  border-radius: 6px;
  transition: 0.3s;
}

.footer-social a:hover {
  transform: scale(1.1);
}

/* Newsletter */
.footer-newsletter {
  display: flex;
  margin-top: 10px;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  background: #2b2b2b;
  color: #fff;
  border-radius: 5px 0 0 5px;
}

.footer-newsletter button {
  background: #4da3ff;
  border: none;
  padding: 0 15px;
  color: #fff;
  border-radius: 0 5px 5px 0;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 15px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
/* RESET */
