/* ===== HEADER CONTAINER ===== */
.header-container {
    position: relative;
}

/* Logo spanning top-bar + navbar */
.header-container .logo {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%; /* spans top-bar + navbar */
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: 2rem;
    font-weight: bold;
    background: #fff; /* adjust to match design */
    z-index: 10;
}

.header-container .logo span {
    color: #ff6a00;
}

/* Push top-bar and navbar to the right of logo */
.top-bar, .navbar {
    margin-left: 180px; /* adjust according to logo width */
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #0b497f;
    color: #ccc;
    /*padding: 13px 6%;*/
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
}

.top-left
{
    width:30%;
    
}

.top-left span
{
  
    padding: 0px 15px;
    border-left: 5px solid #e5b93c;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.top-right a {
    color: #ccc;
    margin-left: 12px;
}

/* ===== NAVBAR ===== */
.navbar {
    background: #fff;
    padding: 15px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu a {
    text-decoration: none;
    color: #0b497f;
    margin: 8px 0;
    padding: 0px 25px;
    text-transform: uppercase;
    font-weight: 700;
}

.menu button {
    padding: 10px 25px;
    border-radius: 25px;
    border: none;
    background: #e6ba3c;
    color: #fff;
}

.menu-toggle { display: none; }

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 130%;
    left: 0;
    background: #fff;
    min-width: 225px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/* HERO SLIDER */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideShow 24s infinite;
}

.slide1 {
    background-image: url("../img/slider/1.png");
    animation-delay: 0s;
}

.slide2 {
    background-image: url("../img/slider/2.png");
    animation-delay: 4s;
}

.slide3 {
    background-image: url("../img/slider/3.png");
    animation-delay: 8s;
}

.slide4 {
    background-image: url("../img/slider/4.jpg");
    animation-delay: 12s;
}


.slide5 {
    background-image: url("../img/slider/5.jpg");
    animation-delay: 16s;
}

.slide6 {
    background-image: url("../img/slider/6.jpg");
    animation-delay: 20s;
}

@keyframes slideShow {
    0% { opacity: 0; }
    5% { opacity: 1; }
    20% { opacity: 1; }
    25% { opacity: 0; }
    100% { opacity: 0; }
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 500px;
    z-index: 2;
}

.content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ff6600;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #e65c00;
}

/* Responsive */
@media (max-width: 768px) {
    .content h1 {
        font-size: 32px;
    }
    .content {
        left: 5%;
    }
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

/* RESPONSIVE */
@media(max-width:900px) {
    .top-bar, .navbar {
        margin-left: 0; /* full width on mobile */
    }

    .header-container .logo {
        position: relative;
        height: auto;
        margin-bottom: 10px;
        z-index: 10;
    }

    .menu {
        position: absolute;
        top: 100%;
        right: 0;
        background: #fff;
        flex-direction: column;
        width: 100%;
        display: none;
    }

    .menu.active { display: flex; }
    .menu-toggle { display: block; }

    .slide {
        flex-direction: column;
        text-align: center;
    }

    .hero-text, .hero-img { width: 100%; }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
}




/* about us section*/
 

.about {
  min-height: 100vh;
  /*background: linear-gradient(135deg, #667eea, #764ba2);*/
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 40px;
}

/* Floating shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

.shape1 {
  width: 200px;
  height: 200px;
  background: #1d2671;
  top: 10%;
  left: 15%;
}

.shape2 {
  width: 300px;
  height: 300px;
  background: #1d2671;
  bottom: 10%;
  right: 10%;
  animation-delay: 3s;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
  100% { transform: translateY(0); }
}

/* Glass card */
.about-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  max-width: 1100px;
  width: 100%;
  display: flex;
  gap: 40px;
  padding: 50px;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.about-left {
  flex: 1;
}

.about-left h2 {
  font-size: 42px;
  margin-bottom: 10px;
      color: #1d2671;
}

.underline {
  width: 70px;
  height: 4px;
  background: #e6ba3c;
  display: block;
  margin-bottom: 25px;
  border-radius: 5px;
}

.about-left p {
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.9;
 color: #1d2671;
}

/* Stats */
.stats {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
}

.stats div {
  text-align: center;
}

.stats h3 {
  font-size: 28px;
  color: #ffd369;
}

.stats span {
  font-size: 14px;
  opacity: 0.8;
 color: #1d2671;

}

/* Button */
.btn {
  display: inline-block;
  padding: 14px 30px;
  background: #ffd369;
  color: #333;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Image */
.about-right {
  flex: 1;
}

.about-right img {
  width: 100%;
  border-radius: 15px;
  transition: transform 0.4s ease;
}

.about-right img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .about-card {
    flex-direction: column;
    text-align: center;
  }

  .stats {
    justify-content: center;
  }
}


/* Section */

/* Animated gradient background */
.gradient-bg {
  position: absolute;
  top: 0; left: 0;
  width: 200%; height: 100%;
  background: linear-gradient(270deg, #667eea, #764ba2, #ff6a00, #ff3cac);
  background-size: 800% 800%;
  animation: gradientAnimation 15s ease infinite;
  z-index: 0;
}

@keyframes gradientAnimation {
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}


.creative-services {
  padding: 100px 20px;
  background: 
      linear-gradient(rgb(11 73 127 / 96%), #1d2671),
      url('../img/slider/2.png') center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.creative-services h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #fff;
}

.creative-services p {
  font-size: 1.1rem;
  margin-bottom: 60px;
  opacity: 0.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards container */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* Card styling */
.card {
  position: relative;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 40px 25px;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.card-bg {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, #0b497f, #e6ba3c, #144880, #14487f);
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
  z-index: 0;
  filter: blur(50px);
  transition: transform 0.5s ease;
}

@keyframes gradientShift {
  0% {background-position:0% 50%;}
  50% {background-position:100% 50%;}
  100% {background-position:0% 50%;}
}

.card i {
  font-size: 3rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.card h4 {
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.card h4
{
    font-family: 'Montserrat', sans-serif;
   
    line-height: 1.2;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card p {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* Hover effects */
.card:hover {
  transform: translateY(-15px) rotateX(3deg) rotateY(3deg);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.card:hover i {
  transform: scale(1.3) rotate(15deg);
  color: #fffc;
}

.card:hover .card-bg {
  transform: scale(1.2);
}

/* Responsive */
@media(max-width: 600px){
  .service-cards {
    grid-template-columns: 1fr;
  }
}

/* why choose us*/

.why-us-white {
  background: #ffffff;
  padding: 90px 20px;
}

.why-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.why-text h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #0f172a;
}

.why-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 30px;
}

.why-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.35);
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-box {
  background: #ffffff;
  padding: 28px 32px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.feature-box:hover {
  transform: translateX(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-box span {
  position: absolute;
  top: -18px;
  right: 25px;
  background: #6366f1;
  color: #fff;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
}

.feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #0f172a;
}

.feature-box p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .why-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-features {
    margin-top: 40px;
  }

  .feature-box {
    text-align: left;
  }
}


/*footer*/
.footer {
  background-color: #0b497f;
  color: #ffffff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #f9fafb;
}

.footer-section p,
.footer-section ul {
  font-size: 14px;
  line-height: 1.6;
  color: #d1d5db;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #d1d5db;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #38bdf8;
}

.social-links a {
  display: inline-block;
  margin-right: 10px;
  text-decoration: none;
  color: #ffffff;
  background-color: #e6ba3c;
  padding: 8px 10px;
  border-radius: 4px;
  font-size: 13px;
  transition: background-color 0.3s;
}

.social-links a:hover {
  background-color: #38bdf8;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #374151;
  padding-top: 15px;
  font-size: 13px;
  color: #9ca3af;
}

/*about us page*/

/* Banner */
.about-banner {
  height: 200px;
  background: linear-gradient(135deg, #0047b3, #1e90ff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-banner h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Section */
.mv-section-alt {
  padding: 80px 20px;
  background: #f0f4f8;
  font-family: 'Poppins', sans-serif;
}

/* Container */
.mv-container-alt {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.mv-title-alt {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #1a1a1a;
}

/* Cards Grid */
.mv-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Cards */
.mv-card-alt {
  background: linear-gradient(135deg, #ffffff, #e6f0ff);
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card-alt:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Icons */
.mv-icon-alt {
  font-size: 3rem;
  margin-bottom: 15px;
}

/* Headings */
.mv-card-alt h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #0047b3;
}

/* Text */
.mv-card-alt p,
.mv-card-alt li {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* List */
.mv-card-alt ul {
  list-style: none;
  padding: 0;
}

/* Responsive */
@media (max-width: 600px) {
  .about-banner h1 {
    font-size: 2.2rem;
  }

  .mv-title-alt {
    font-size: 2rem;
  }
}

/*products details */
 /* Left: Image Section */
    .product-images {
        flex: 1;
        min-width: 300px;
    }

    .main-image {
        width: 100%;
        height: 500px;
        overflow: hidden;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
        cursor: zoom-in;
    }

    .main-image img:hover {
        transform: scale(1.1);
    }

    .thumbnails {
        display: flex;
        gap: 10px;
    }

    .thumbnails img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 5px;
        cursor: pointer;
        border: 2px solid transparent;
        transition: border 0.3s;
    }

    .thumbnails img.active {
        border: 2px solid #e91e63;
    }

    /* Right: Details Section */
    .product-details {
        flex: 1;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .product-details h1 {
        margin-top: 5%;
        font-size: 23px;
        margin-bottom: 15px;
    }

    .product-details p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
        color: #555;
    }

    .price {
        font-size: 17px;
        color: #1d2671;
        margin-bottom: 25px;
    }

    .buy-btn {
        padding: 15px 30px;
        font-size: 18px;
        background-color: #e91e63;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        width: 200px;
        transition: background 0.3s;
    }

    .buy-btn:hover {
        background-color: #d81b60;
    }

/* Hide desktop header, show mobile header on mobile */
.desktop-header { display: block; }
.mobile-header-wrapper { display: none; }

@media (max-width: 900px) {
    .desktop-header { display: none; }
    .mobile-header-wrapper { display: block; font-family: 'Arial', sans-serif; }

    /* ===== Topbar ===== */
    .mobile-topbar {
        background: #0b497f;
        color: #fff;
        padding: 8px 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
        flex-wrap: wrap;
    }
    .mobile-topbar .company-name { font-weight: bold; }
    .mobile-topbar .tagline { display: block; font-size: 12px; color: #d0e4ff; }

    /* ===== Navbar ===== */
    .mobile-navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #fff;
        padding: 12px;
        border-bottom: 1px solid #ccc;
    }
    .mobile-logo img { width: 80px; height: auto; }

    /* Menu toggle icon */
    .mobile-menu-toggle { font-size: 28px; cursor: pointer; color: #0b497f; transition: transform 0.3s ease; }
    .mobile-menu-toggle.active { transform: rotate(90deg); }

    /* ===== Mobile menu ===== */
    .mobile-menu {
        display: none;
        flex-direction: column;
        background: #fff;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .mobile-menu a {
        padding: 14px 20px;
        border-bottom: 1px solid #eee;
        text-decoration: none;
        color: #333;
        transition: background 0.3s ease;
    }
    .mobile-menu a:hover { background: #f2f2f2; }

    /* Dropdown container */
    .mobile-menu .dropdown { position: relative; }
    .mobile-menu .drop-btn { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; cursor: pointer; border-bottom: 1px solid #eee; }
    .mobile-menu .drop-btn i { transition: transform 0.3s ease; }
    .mobile-menu .dropdown.open .drop-btn i { transform: rotate(180deg); }

    /* Dropdown menu */
    .mobile-menu .dropdown-menu {
        display: none;
        flex-direction: column;
        background: #f9f9f9;
        padding-left: 20px;
    }
    .mobile-menu .dropdown.open .dropdown-menu { display: flex; }
    .mobile-menu .dropdown-menu a { padding: 10px 20px; color: #555; border-bottom: 1px solid #eee; }
    .mobile-menu .dropdown-menu a:hover { background: #e6f0ff; }

    /* Contact Us button */
    .mobile-menu button {
        width: calc(100% - 40px);
        margin: 10px 20px;
        padding: 12px;
        background: #0b497f;
        color: #fff;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        cursor: pointer;
        transition: background 0.3s ease;
    }
    .mobile-menu button:hover { background: #09345a; }
}




/* Top bar new layout */
.top-bar {
    background: #0b497f;
    color: #fff;
    /*padding: 13px 6%;*/
    padding-top:6px;
    padding-left:6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

/* Company name & tagline */
.company-name {
    font-weight: bold;
    font-size: 18px;
    color: #ffd700; /* gold highlight */
    animation: blinkHighlight 1.2s infinite;
}

.company-name .tagline {
    display: block;
    font-size: 12px;
    font-weight: normal;
    color: #fff;
    animation: blinkHighlight 1.2s infinite;
}

/* Contact info styling */
.top-right span {
    margin-left: 20px;
    padding: 10px 25px;
    border-left: 3px solid #e5b93c;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
}

/* Blinking + highlight effect */
@keyframes blinkHighlight {
    0%, 50%, 100% { color: #ffd700; text-shadow: 0 0 5px #ffd700; }
    25%, 75% { color: #fff; text-shadow: 0 0 10px #ffd700; }
}

