/* UTILITIES */
.gold-text {
  color: var(--gold);
}

/* TOP HEADER */
.top-header {
 background: linear-gradient(to right, #d0a83d, #8b7521);
  color: var(--white);
  padding: 5px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-info {
  display: flex;
  align-items: center;
}
.header-info span a,
.header-info span {
  margin-right: 20px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: black;
  text-decoration: none;
  background-color: #dbc793;
  padding: 2px;
    border-radius: 5px;
}
.header-info span a:hover {
}
.header-info span svg {
  font-size: 20px;
  margin-right: -2px;
  height: 19px;
  width: 30px;
  text-shadow: 2px 2px #000000;
}

.btn-quote {
display: flex;
    align-items: center;
    background: #082033;
    color: white;
    border: none;
    padding: 9px 15px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}
.btn-quote svg {
  height: 18px;
  margin-right: 2px;
}
.btn-quote:hover {
  box-shadow: 0 0 15px rgba(205, 179, 71, 0.5);
  transform: translateY(-2px);
}

/* MARQUEE */
.marquee-container {
  background: var(--dark-navy);
  overflow: hidden;
  padding: 9px 0;
    border-bottom: 3px solid rgb(202 173 63);
    border-top: 3px solid #caad3f;
}
/* 1. Hide the menu by default and set up the animation starting point */
.mega-menu {
  position: absolute;
  top: 100%; /* Sits right below the nav link */
  left: 0;
  background: var(--white);
  min-width: 267px;
  padding: 15px 0;
  border-radius: 8px;
  border-top: 4px solid var(--gold); /* Premium accent border */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);

  /* Hiding logic */
  display: block; /* We use block but hide it visually for smoother transitions */
  opacity: 0;
  visibility: hidden;
  transform: translateY(
    10px
  ); /* Starts slightly lower for a "slide up" effect */
  transition: all 0.3s ease;
  z-index: 100;
}

/* 2. Show the menu when the parent <li> is hovered */
.dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); /* Slides up to its natural position */
}

/* 3. Style the links inside the mega-menu */
.mega-menu .mega-menu-link {
  color: #0a1f33 !important;
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 16px;
  border-bottom: none !important; /* Remove the nav hover underline */
  transition: var(--transition);
}

/* 4. Hover effect for individual links */
.mega-menu a:hover {
  background: var(--gray-bg);
  color: var(--gold) !important;
  padding-left: 25px; /* Subtle movement on hover */
}

/* Ensure the parent <li> is positioned relatively so the menu aligns to it */
.dropdown {
  position: relative;
  padding-bottom: 20px; /* Bridge the gap between nav and menu to prevent flicker */
  margin-bottom: -20px;
}
/* CATEGORY WRAPPER */

.mega-category-wrapper{
position:relative;
}

/* PRODUCT LIST RIGHT SIDE */

.mega-product-list{
position:absolute;
top:0;
left:100%;
background:#fff;
min-width:240px;
padding:10px 0;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
/* hidden */
opacity:0;
visibility:hidden;
transform:translateX(10px);
transition:0.3s;
}
.mega-product-list a{
    color: black !important;
}
/* SHOW ON HOVER */

.mega-category-wrapper:hover .mega-product-list{
opacity:1;
visibility:visible;
transform:translateX(0);
}

/* PRODUCT LINKS */



.mega-product-link:hover{
background:var(--gray-bg);
color:var(--gold);
padding-left:25px;
}
.marquee-content {
  white-space: nowrap;
  display: inline-block;
  color: var(--white);
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: marquee 30s linear infinite;
}
.marquee-content span{
    margin-right: 22px;
}
.marquee-content span i{
color: #cdac3e;
font-size:24px;
}
.mobile-toggle {
  display: none;
  color: white;
}
@keyframes marquee {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

/* NAV */
.main-nav {
 background: linear-gradient(to right, #183559, #061928);
  backdrop-filter: blur(10px);
  padding: 0px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  max-width: 246px;
}
.logo img {
  width: 100%;
}
.logo-icon {
  background: var(--gold);
  padding: 8px;
  border-radius: 50%;
  display: flex;
  color: var(--deep-blue);
}

.nav-links {
padding: 14px 38px;
    list-style: none;
    display: flex;
    gap: 30px;
    background-color: #223a58;
    border-radius: 50px;
}

.nav-links a {
  color: #ffffff !important;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 5px;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}
.mega-product-link{
display:block;
padding:8px 20px;
font-size:15px;
color:black !important;
text-decoration:none;
transition:.25s;
}
/* HERO */
.hero {
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 5%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&q=80")
    center/cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 60, 93, 0.95),
    rgba(11, 60, 93, 0.3)
  );
  z-index: -1;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--white);
  line-height: 1.1;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 25px 0 40px;
  font-size: 18px;
}

.hero-btns {
  display: flex;
  gap: 15px;
}

.btn-gold {
  background: var(--gold);
  color: var(--deep-blue);
  border: none;
  padding: 15px 35px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 6px;
  transition: var(--transition);
}

.btn-outline {
    display: block;
    background: linear-gradient(to right, #0c1e33, #3b5d85);
    color: white;
    border: 2px solid var(--gold);
    padding: 10px 35px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
        text-align: center;
}

.btn-gold:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(205, 179, 71, 0.3);
}

/* PRODUCTS SECTION */
.products-section {
  padding: 64px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--deep-blue);
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: 15px auto;
}

/* Products Section */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 18px;
}

.product-card {
  background: #e4edfb;
  border-radius: 12px 12px 0px 0px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  cursor: pointer;
    border: 1px solid #afafaf;
}
.product-image {
  overflow: hidden;
  position: relative;
}

.image-slider {
  display: flex;
  width: 200%; /* because 2 images */
  animation: slideLeft 6s linear infinite;
}

.image-slider img {
  width: 50%;  /* each image takes half */
  flex-shrink: 0;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.product-image img {
  width: 100%;
}
.product-content {
  padding: 15px;
}

.product-content h3 {
    color: var(--deep-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-align: center;
    display: flex;
    min-height: 47px;
    align-items: center;
    justify-content: center;
}

.product-content p {
  color: #666;
  margin-bottom: 25px;
}

/* FOOTER */
footer {
background: linear-gradient(to right, #183559, #061928);
  color: var(--white);
  padding: 80px 5% 20px;
  border-top: 5px solid var(--gold);
}

.footer-container {
  display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.8fr 1.3fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.footer-brand .logo-text {
  font-size: 24px;
  font-weight: 900;
}

.footer-brand p {
color: #f3f3f3;
    font-size: 15px;
    margin-top: 15px;
    text-align: start;
}

.footer-links h4,
.footer-newsletter h4 {
margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
}

.footer-links a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 15px;
  text-align: start;
}

.news-input {
  display: flex;
}

.news-input input {
  background: var(--dark-navy);
  border: none;
  padding: 12px;
  color: var(--white);
  width: 100%;
  border-radius: 4px 0 0 4px;
}

.news-input button {
  background: var(--gold);
  border: none;
  padding: 0 15px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgb(159 159 159);
  padding-top: 30px;
font-size: 16px;
    color: #f5f5f5;
}
.footer-bottom a{
color: #cbb54c;
    text-decoration: none;
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .header-info span a{
        font-size:14px;
    }
    .btn-quote{
       font-size:14px; 
           padding: 5px 15px;
    }
  .about-section{
    padding: 17px 0;
  }
  footer{
    padding-bottom: 95px;
  }
  .btn-outline{
    padding: 10px 20px;
    font-size: 14px;
  }
  .btn-gold{
    padding: 15px 17px;
    font-size: 14px;
  }
  .hero-content h1{
    font-size: 2rem;
  }
  .mobile-toggle {
  display: block;
}
  .nav-links {
    display: none;
  }

  .top-header {
    gap: 10px;
    padding: 10px 10px;
    
  }
  .header-info span{
margin-right: 7px;
  }
}
/* SEARCH CONTAINER */
.search-container {
  display: flex;
  align-items: center;
  background: rgb(255, 255, 255);
  border: 1px solid rgba(205, 179, 71, 0.3);
  border-radius: 50px;
  padding: 4px 6px 4px 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 291px;
  margin-left: 20px;
  border: 1px solid #8f8f8f;
}

/* SEARCH INPUT FIELD */
.search-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 13px;
  width: 100%;
  padding: 8px 0;
}

.search-input::placeholder {
  color: rgb(63, 63, 63);
  font-size: 15px;
}

/* SEARCH BUTTON/ICON */
.search-btn {
  background: #103a5c;
  border: none;
  color: white;
  width: 36px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.search-btn i {
  width: 14px;
  height: 16px;
}

/* INTERACTIVE STATES */
.search-container:focus-within {
  background: rgb(246 246 246);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(205, 179, 71, 0.4);
  max-width: 320px; /* Expands slightly when clicking to type */
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 1024px) {
  .search-container {
    display: none; /* Hide on small tablets/mobile to keep nav clean */
  }
}
/* ABOUT SECTION STYLES */
.about-section {
  padding: 62px 0;
  background-color: #e3e3e3;
  overflow: hidden;
}

.about-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: center;
}

/* VISUAL SIDE (LEFT) */
.about-visual {
  position: relative;
  padding: 20px;
}

.image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.8s ease;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

/* EXPERIENCE BADGE */
.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -9px;
  background: var(--deep-blue);
  color: var(--white);
  padding: 30px;
  border-radius: 8px;
  border-left: 5px solid var(--gold);
  z-index: 3;
  box-shadow: 10px 10px 30px rgba(11, 60, 93, 0.2);
}

.experience-badge .years {
  display: block;
  font-size: 38px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.experience-badge .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

/* DECORATIVE BACKGROUND BOX */
.decorative-rect {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 85%;
  height: 88%;
  border: 2px solid var(--gold);
  opacity: 0.3;
  z-index: 1;
  border-radius: 12px;
  background-color: #cbb54c;
}

/* CONTENT SIDE (RIGHT) */
.sub-headline {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
  text-align: start;
}

.main-title {
  font-size: 42px;
  color: #071928;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 900;
  text-align: start;
}

.divider-left {
  width: 50px;
  height: 4px;
  background: var(--gold);
  margin-bottom: 30px;
}

.description {
  color: var(--text-gray);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

/* CHECKLIST */
.feature-list {
  list-style: none;
  margin: 30px 0;
  padding-left: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--deep-blue);
  font-size: 14px;
}

.feature-list i {
  color: var(--gold);
  width: 18px;
  height: 18px;
}

/* UNIQUE READ MORE BUTTON */
.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, var(--gold) 0%, #b59b35 100%);
  color: var(--white);
  border: none;
  padding: 18px 35px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(205, 179, 71, 0.3);
}

.btn-read-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(205, 179, 71, 0.5);
  padding-right: 45px; /* Subtle expansion */
}

.btn-read-more i {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-read-more:hover i {
  transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-container{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-container .footer-brand{
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .footer-container .footer-links{
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .divider-left {
    margin: 0 auto 30px;
  }
  .feature-list li {
    justify-content: center;
  }
  .experience-badge {
    right: 10px;
    bottom: 10px;
  }
}
.video-section video {
  height: 60vh;
  width: 100%;
  object-fit: cover;
}
/* ===== Unique Animated Section ===== */
.unique-hero-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

/* Background Image */
.unique-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://blog.authenticjourneys.info/wp-content/uploads/2016/10/gd-group-discussion-tips.jpg")
                no-repeat center center/cover;
    animation: uniqueZoomEffect 18s ease-in-out infinite alternate;
    z-index: -2;
}

/* Dark Overlay */
.unique-hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
       background: rgb(0 0 0 / 75%);
    z-index: -1;
}

/* Content Wrapper */
.unique-hero-content {
    max-width: 750px;
    padding: 20px;
    opacity: 0;
    transform: translateY(40px);
    animation: uniqueFadeUp 1.2s ease forwards;
}

.unique-hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.unique-hero-description {
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Button Group */
.unique-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.unique-btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Primary Button */
.unique-btn-primary {
    background: #0e273f;
    color: #fff;
}

.unique-btn-primary:hover {
    background: transparent;
    border: 2px solid #ffffff;
}

/* Secondary Button */
.unique-btn-secondary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.unique-btn-secondary:hover {
    background: #ffffff;
    color: #000;
}

/* Animations */
@keyframes uniqueFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes uniqueZoomEffect {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .unique-hero-title {
        font-size: 2.2rem;
    }

    .unique-hero-description {
        font-size: 1rem;
    }
}
.wk-social-wrapper {
    text-align: center;
        margin-right: 29px;
}

.wk-social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.wk-social-item {
    display: inline-block;
}

.wk-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
       width: 31px;
    height: 31px;
    border-radius: 50%;
    background: #f1f1f1;
    color: #333;
    font-size: 18px;
    transition: 0.3s ease;
    text-decoration: none;
}

/* Unique hover colors */
.wk-facebook {
    background: #1877f2;
    color: #fff;
}

.wk-instagram {
    background: #e4405f;
    color: #fff;
}

.wk-twitter {
    background: #000;
    color: #fff;
}

.wk-linkedin {
    background: #0a66c2;
    color: #fff;
}

.wk-youtube {
    background: #ff0000;
    color: #fff;
}
.certifcate-section img{
    height: 133px;
}
.certificate-section{
    display:flex;
    align-items:center;
    justify-content: space-between;
}
.certificate-section .inner-box{
    display:flex; align-items:center; gap:35px;
}
@media (max-width: 768px) {
 .certificate-section{
     flex-direction:column;
 }  
 .certificate-section .inner-box{
      flex-direction:column;
 }
}
.founder-section{
    padding:70px 20px;
    background:linear-gradient(135deg,#f8fbff,#eef5ff);
}

.founder-container{
    max-width:1256px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 10px 25px rgb(0 0 0 / 39%);
    border-left:6px solid #0a1f33;
}

.founder-heading{
    font-size:30px;
    margin-bottom:30px;
    color:#222;
}

/* Row 1 */
.founder-top{
    display:flex;
    align-items:center;
    gap:30px;
    margin-bottom:25px;
}

.founder-image img{
    width:288px;
    border-radius:10px;
}

/* Quote */
.quote{
    font-size:18px;
    font-style:italic;
    color:#a78d32;
    font-weight:500;
    line-height:1.6;
}

/* Paragraph */
.founder-text p{
    margin-bottom:15px;
    line-height:1.7;
    color:#333;
}

/* Signature */
.founder-sign{
    margin-top:20px;
}

.founder-name{
    font-weight:bold;
    font-size:18px;
}

.founder-title{
    color:#666;
}

/* Responsive */
@media(max-width:768px){
.founder-container{
    padding: 13px;
}
    .founder-top{
        flex-direction:column;
        text-align:center;
    }

    .founder-image img{
        width:100%;
    }

    .quote{
        font-size:16px;
                text-align: start;
    }
    .founder-heading{
        text-align: start;
    }

}
.ppt-content-wrap {
    width: 100%;
    padding: 1px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.ppt-content-box {
    max-width: 1140px;
    text-align: center;
    padding: 40px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0%);
    transition: all 0.3s ease;
}

.ppt-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.ppt-description {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.ppt-highlight {
    color: #132845;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .ppt-content-wrap {
        padding: 60px 15px;
    }

    .ppt-title {
        font-size: 24px;
    }

    .ppt-description {
        font-size: 15px;
    }

    .ppt-content-box {
        padding: 30px 20px;
    }
}
.page-title{
    font-size: 30px;
    text-align: center;
    margin-bottom: 81px;
    font-family: sans-serif;
    font-weight: 600;
    color: #484848;
}

/* SECTION */
.ux-blog-section {
  background: #f8f9fc;
}

/* TITLE */
.ux-blog-title {
  font-weight: 700;
  font-size: 2.2rem;
}

.ux-blog-subtitle {
  color: #6c757d;
  font-size: 1rem;
}

/* CARD */
.ux-blog-card {
background: #fff;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgb(0 0 0 / 13%);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ux-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* IMAGE */
.ux-blog-img-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.ux-blog-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.ux-blog-content p{
      display: -webkit-box;
  -webkit-line-clamp: 2;       /* limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ux-blog-tag {
  font-size: 0.75rem;
  color: #007bff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ux-blog-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.ux-blog-text {
  font-size: 0.9rem;
  color: #6c757d;
  flex-grow: 1;
}

/* BUTTON */
.ux-blog-btn {
  text-decoration: none;
  font-weight: 600;
  color: #000;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.ux-blog-btn:hover {
  color: #007bff;
}

/* SECTION */
.uxd-blog-detail-section {
  background: #f9fafc;
}

/* TITLE */
.uxd-blog-title {
  font-size: 2.3rem;
  font-weight: 700;
}

.uxd-blog-meta {
  color: #6c757d;
  font-size: 0.9rem;
}

/* IMAGES */
.uxd-blog-main-img,
.uxd-blog-sub-img {
    border-radius: 12px;
    aspect-ratio: 1.4 / 1;
    object-fit: cover;
}

/* TEXT */
.uxd-blog-text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* SUBTITLE */
.uxd-blog-subtitle {
  font-weight: 600;
  margin-top: 20px;
}

/* QUOTE */
.uxd-blog-quote {
  background: #eef4ff;
  padding: 15px 20px;
  border-left: 4px solid #007bff;
  font-style: italic;
  border-radius: 8px;
}

/* SIDEBAR */
.uxd-related-box,
.uxd-contact-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  border: 1px solid #d1d1d1;
}

.uxd-sidebar-title {
  font-weight: 600;
  margin-bottom: 15px;
}

/* RELATED BLOGS */
.uxd-related-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  align-items: center;
  cursor: pointer;
}

.uxd-related-item img {
     border-radius: 6px;
    width: 98px;
    aspect-ratio: 1.4 / 1;
    object-fit: cover;
}

.uxd-related-item h6 {
  font-size: 0.9rem;
  margin: 0;
}

.uxd-related-item span {
  font-size: 0.75rem;
  color: #6c757d;
}

/* FORM */
.uxd-input {
  margin-bottom: 12px;
  border-radius: 8px;
  padding: 10px;
}

.uxd-submit-btn {
  background: #007bff;
  border: none;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.uxd-submit-btn:hover {
  background: #0056b3;
}
/* STICKY CONTACT FORM */
.uxd-contact-sticky {
  position: sticky;
  top: 100px; /* space from top */
  z-index: 10;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .uxd-blog-title {
    font-size: 1.8rem;
  }
}
/* FORM WRAPPER */
.uxd-form-wrapper {
  display: flex;
  flex-direction: column;
}

/* GROUP */
.uxd-form-group {
  margin-bottom: 15px;
}
.uxd-form-group .input-group-text{
    height:46px;
}
.uxd-form-group input{
    margin:0;
}
/* LABEL */
.uxd-label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

.uxd-label span {
  color: red;
}

/* INPUT */
.uxd-input {
  border-radius: 8px;
  padding: 10px;
  font-size: 0.9rem;
}

/* ERROR */
.uxd-error {
  color: red;
  font-size: 0.75rem;
  margin-top: 3px;
}

/* COUNTRY SELECT */
.uxd-country-select {
  border: 1px solid #ced4da;
  border-radius: 8px 0 0 8px;
  padding: 5px;
}

/* CAPTCHA */
.uxd-captcha-box {
  display: flex;
  gap: 10px;
  align-items: center;
}

.uxd-captcha-img {
  width: 100%;
  max-width: 120px;
  border-radius: 6px;
}

/* BUTTON */
.uxd-submit-btn {
  background: #0c1e33;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  transition: 0.3s;
}

/* STICKY */
.uxd-contact-sticky {
    position: sticky;
    top: 100px;
    border: 1px solid #cfcfcf;
}

/* MOBILE */
@media (max-width: 991px) {
  .uxd-contact-sticky {
    position: static;
  }
}