@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
.navbar-brand img {
  width: 260px;
}

body{
    font-family: 'Inter', sans-serif;
    background:#0b0b0b;
    color:#fff;
  }
  html {
    scroll-behavior: smooth;
}
  /* Navbar */
  .navbar{
  }
  .nav-link{
    color:#ddd !important;
    margin: 0 7px;
    font-size:14px;
  }
.nav-item a:hover {
  
background: black;
}
  .nav-link:hover{color:#e2b55e !important;}
.btn-gold:hover {
   background:#e2b55e;
}
  .btn-gold{
    background:#e2b55e;
    color:#000;
    font-weight: 600;
    border-radius:8px;
    padding: 10px 24px;
  }

  /* Hero */
  .hero{
    width: 100%;
    height: 750PX;          /* Full screen height */
    background-image: url("./images/herobanner.png");
    background-repeat: no-repeat;   /* Repeat band */
    background-size: cover;          /* Full cover */
    background-position: center;     /* Center se align */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .gold-lines{
    position:absolute;
    inset:0;
    background:url('https://svgshare.com/i/15Y_.svg') no-repeat right center;
    opacity:.4;
    pointer-events:none;
  }

  h1{
    font-size:52px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    line-height:1.2;
  }
  .gold-text{
    font-family:'Playfair Display', serif;
    color:#e2b55e;
    font-style:italic;
  }
  .hero p{
    color:#cfcfcf;
    max-width: 660px;
    margin:20px auto;
    font-size:16px;
    FONT-WEIGHT: 300;
  }

  .btn-outline-gold{
    border:1px solid #e2b55e;
    color:#e2b55e;
    padding:10px 18px;
    border-radius:8px;
    margin-left:12px;
  }
  .btn-outline-gold:hover{
    background:#e2b55e;
    color:#000;
  }

  @media(max-width:768px){
    h1{font-size:34px;}
  }
  .expertise-section{
    padding:90px 0;
    background: radial-gradient(circle at top, #1a1a1a, #0b0b0b);
    color:#fff;
  }
  
  .expertise-head{
    display:flex;
    justify-content:space-between;
    /* align-items:flex-end; */
    margin-bottom:50px;
    flex-wrap:wrap;
    gap:20px;
  }
  
  .expertise-head h2{
    font-family:'Playfair Display', serif;
    font-size:42px;
    color:#e2b55e;
  }
  
  .expertise-head p{
    color:#bdbdbd;
  }
  
  .btn-outline-gold{
    border:1px solid #e2b55e;
    color:#e2b55e;
    padding:10px 18px;
    border-radius:8px;
    text-decoration:none;
  }
  
  /* 🔥 GRID MAGIC */
  .expertise-grid{
    display:grid;
    grid-template-columns: repeat(5, 1fr); /* 👈 exactly 5 */
    gap:24px;
  }
  
  /* CARD */
  .expert-card{
    background:linear-gradient(180deg,#1a1a1f,#0f0f12);
    border-radius:14px;
    padding:32px 22px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.08);
    transition:.4s;
  }
  
  .expert-card .icon{
    font-size:36px;
    color:#e2b55e;
    margin-bottom:18px;
  }
  
  .expert-card h5{
    font-family:'Playfair Display', serif;
    margin-bottom:12px;
  }
  
  .expert-card p{
    font-size:14px;
    line-height:1.6;
    color:#cfcfcf;
  }
  
  .expert-card:hover,
  .expert-card.active{
    border-color:#e2b55e;
    box-shadow:0 0 0 1px #e2b55e, 0 18px 45px rgba(212,175,55,.18);
    transform:translateY(-6px);
  }
  @media(max-width:1200px){
    .expertise-grid{grid-template-columns:repeat(3,1fr);}
  }
  @media(max-width:768px){
    .expertise-grid{grid-template-columns:repeat(2,1fr);}
  }
  @media(max-width:480px){
    .expertise-grid{grid-template-columns:1fr;}
  }

  .stats-section{
    background:#e2b55e; /* beige */
    padding:80px 0;
  }
  
  .stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
  }
  
  .stat-card{
    background:#e2b55e;
    border:1.5px solid #111;
    border-left:6px solid #111; /* left bold line */
    border-radius:10px;
    padding:34px 30px;
    text-align:center;
  }
  
  .stat-card h3{
    font-family:'Playfair Display', serif;
    font-size:36px;
    font-weight: 800;
    margin-bottom:8px;
    color:#111;
  }
  
  .stat-card p{
    font-size:12px;
    letter-spacing:1.4px;
    text-transform:uppercase;
    color:#222;
  }
  
  /* middle emphasis */
  .stat-card.highlight{
    border-left-width:8px;
  }
  
  /* RESPONSIVE */
  @media(max-width:768px){
    .stats-grid{
      grid-template-columns:1fr;
    }
    .stat-card{
      text-align:left;
    }
  }
  

  .pillars-section{
    padding:100px 0;
    background: radial-gradient(circle at top left, #1a1a1a, #0b0b0b);
    color:#fff;
  }
  
  .pillars-head{
    max-width:520px;
    margin-bottom:70px;
  }
  
  .pillars-head h2{
    font-family:'Playfair Display', serif;
    font-size:44px;
    line-height:1.2;
    margin-bottom:14px;
  }
  
  .pillars-head h2 span{
    color:#e2b55e;
    font-style:italic;
  }
  
  .pillars-head p{
    color:#bdbdbd;
    font-size:15px;
  }
  
  /* GRID */
  .pillars-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:32px;
    align-items:start;
  }
  
  /* CARD */
  .pillar-card{
    background:linear-gradient(180deg,#1b1b20,#0f0f12);
    border:1px solid rgba(212,175,55,0.55);
    border-radius:14px;
    padding:34px 26px;
    text-align:center;
    min-height:260px;
    transition:.4s;
  }
  
  .pillar-card .icon{
    font-size:32px;
    color:#e2b55e;
    margin-bottom:18px;
  }
  
  .pillar-card h5{
    font-family:'Playfair Display', serif;
    margin-bottom:14px;
  }
  
  .pillar-card p{
    font-size:14px;
    line-height:1.6;
    color:#cfcfcf;
  }
  
  /* STAGGER EFFECT */
  .pillar-card.offset{
    margin-top:60px;
  }
  
  /* HOVER */
  .pillar-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(212,175,55,.18);
  }
  
  /* RESPONSIVE */
  @media(max-width:1200px){
    .pillars-grid{
      grid-template-columns:repeat(2,1fr);
    }
    .pillar-card.offset{
      margin-top:0;
    }
  }
  
  @media(max-width:576px){
    .pillars-grid{
      grid-template-columns:1fr;
    }
  }
  .process-section{
    padding:110px 0;
    background: radial-gradient(circle at top, #1a1a1a, #0b0b0b);
    color:#fff;
  }
  
  .process-title{
    text-align:center;
    font-family:'Playfair Display', serif;
    font-size:42px;
    margin-bottom:80px;
  }
  .process-title span{
    color:#e2b55e;
    font-style:italic;
  }
  
  /* GRID */
  .process-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 60px 40px;
    margin:0 auto;
  }
  
  /* CARD */
  .process-card{
    background:linear-gradient(180deg,#1b1b20,#0f0f12);
    border:1px solid rgba(212,175,55,.6);
    border-radius:14px;
    padding:34px 28px;
    max-width: 560px;
  }
  
  .process-card.right{
    margin-top:70px;   /* zig-zag effect */
  }
  
  .process-card .icon{
    font-size:20px;
    margin-bottom:18px;
  }
  
  .process-card h5{
    font-family:'Playfair Display', serif;
    margin-bottom:12px;
  }
  
  .process-card p{
    font-size:14px;
    line-height:1.7;
    color:#cfcfcf;
  }
  
  /* HOVER */
  .process-card:hover{
    transform:translateY(-6px);
    transition:.3s;
    box-shadow:0 20px 45px rgba(212,175,55,.18);
  }
  
  /* RESPONSIVE */
  @media(max-width:992px){
    .process-grid{
      grid-template-columns:1fr;
    }
    .process-card.right{
      margin-top:0;
    }
    .process-card{
      max-width:100%;
    }
  }
  .testimonial-section{
    padding:120px 0;
    background: radial-gradient(circle at top, #1a1a1a, #0b0b0b);
    color:#fff;
  }
  
  /* IMAGE + RING */
  .video-wrap{
    display:flex;
    justify-content:center;
    margin-bottom:40px;
  }
  
  .video-ring{
    position:relative;
    
    
    
     /* dotted gold ring */
    padding:10px;
  }
  
  .video-ring img{
    width: 70%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
  }
  
  /* PLAY BUTTON */
  .play-btn{
    position:absolute;
    inset:0;
    margin:auto;
    width:54px;
    height:54px;
    border-radius:50%;
    background:rgba(0,0,0,.6);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    cursor:pointer;
  }
  
  /* TEXT */
  .testimonial-section h3{
    font-family:'Playfair Display', serif;
    font-size:32px;
    color:#e2b55e;
    margin-bottom:6px;
  }
  
  .designation{
    display:block;
    font-size:13px;
    color:#aaa;
    margin-bottom:30px;
  }
  .navbar-collapse {
    background: #2B2B2D;
    margin-left: 60px;
    flex-grow: unset;
    padding: 8px;
    border-radius: 10px;
  }
  .quote{
    max-width:720px;
    margin:0 auto;
    font-size:16px;
    line-height:1.7;
    color:#e0e0e0;
  }
  /* ABOUT SECTION */
.about-section {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.55),
        rgba(10, 15, 30, 0.95)
      ),
      url("./images/homewabout.png"); /* building image */
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #ffffff;
    position: relative;
  }
  
  /* LEFT IMAGE COLUMN */
  .about-img {
    min-height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 60px;
  }
  
  .about-img h2 {
    font-size: 48px;
    font-weight: 600;
    color: #d4af37; /* GOLD */
    font-family: "Playfair Display", serif;
  }
  
  .about-img h2 span {
    color: #ffffff;
  }
  .vision-history-section {
    background: #000;
    color: #fff;
  }
  
  .section-title {
    font-size: 28px;
    font-weight: 600;
    color: #c6a14a;
    margin-bottom: 10px;
  }
  
  .gold-line {
    width: 60px;
    height: 3px;
    background: #c6a14a;
    margin-bottom: 20px;
  }
  
  .content-box {
    padding: 30px;
    background: #111;
    border: 1px solid rgba(198,161,74,0.3);
    border-radius: 10px;
    transition: 0.4s ease;
  }
  
  .content-box:hover {
    transform: translateY(-8px);
    border-color: #c6a14a;
  }
  /* RIGHT CONTENT */
  .about-content {
    padding: 0 80px;
  }
  .servicewaves {
    
margin-top: 90px;
    
margin-bottom: 20px;
  }
  .content-wrap {
    max-width: 520px;
  }
  
  /* TEXT BLOCK WITH LINE */
  .text-block {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
  }
  
  .text-block .line {
    width: 2px;
    background-color: #d4af37;
    flex-shrink: 0;
  }
  
  .text-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #cfcfcf;
  }
  
  /* READ MORE LINK */
  .read-more {
    color: #d4af37;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
  }
  
  .read-more span {
    font-size: 20px;
    transition: transform 0.3s ease;
  }
  
  .read-more:hover span {
    transform: translateX(6px);
  }
  
  /* RESPONSIVE */
  @media(max-width:576px){
    .video-ring{
      width:180px;
      height:180px;
    }
    .quote{
      font-size:15px;
    }
  }
  
  .hero-section {
    background: #e2b55e; /* beige background */
    padding: 80px 20px;
    border-bottom: 3px solid #1c1c1c;
  }
  
  .hero-content {
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 12px;
    font-family: "Playfair Display", serif;
  }
  
  .hero-content p {
    font-size: 18px;
    color: #4a4a4a;
    letter-spacing: 0.5px;
    font-family: "Inter", sans-serif;
  }
  
  /* 📱 Responsive */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 36px;
    }
  
    .hero-content p {
      font-size: 16px;
    }
  }

  
  .main-footer {
    background: #1A191E;
    color: #1A191E;
    padding: 70px 0;
  }
  
  .footer-logo h4 {
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 1px;
  }
  
  .footer-logo small {
    font-size: 12px;
    color: #aaa;
  }
  
  .logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(145deg, #d4af37, #b8902c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
  }
  
  .footer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #9ca3af;
  }
  
  .main-footer h5 {
    color: #e2b55e;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    text-decoration: none;
    color: #9ca3af;
    transition: 0.3s;
  }
  
  .footer-links a:hover {
    color: #d4af37;
    padding-left: 5px;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #9ca3af;
  }
  
  .contact-item i {
    color: #e2b55e;
    margin-right: 10px;
    font-size: 18px;
  }
  
  .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #333;
    border-radius: 50%;
    margin-right: 10px;
    color: #9ca3af;
    transition: 0.3s;
  }
  
  .social-icons a:hover {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
  }
  .blaclsectionwrap {
    background:black !important;
  }
  .blaclsectionwrap .stat-card {
    background: #1d1d1d !important;
    border-left: 7px solid #e2b55e;
    color: white;
  }
.blaclsectionwrap .stat-card h3 {
  color: white;
}
.blaclsectionwrap .stat-card p {
  color: white;
}
.about {
  width: 100%;
  height: 500PX;          /* Full screen height */
  background-image: url("./images/abt.png");
  background-repeat: no-repeat;   /* Repeat band */
  background-size: cover;          /* Full cover */
  background-position: center;     /* Center se align */
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission-section {
  background: #e2b55e;
  padding: 80px 0px;
  margin-top: -1px;
}

.mission-text h2 {
  font-size: 48px;
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
  color: #1c1c1c;
}

.mission-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #333;
  font-family: "Inter", sans-serif;
}

.mission-text ul {
  padding-left: 18px;
}

.mission-text ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #1c1c1c;
}


.mission-image img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

/* 📱 Responsive */
@media (max-width: 900px) {
  .mission-container {
    grid-template-columns: 1fr;
  }

  .mission-text h2 {
    font-size: 36px;
  }
}


.form-control,
.form-select {
  border-radius: 8px;
  padding: 12px;
}

.btn-dark {
  border-radius: 30px;
}
.contact-section {
    padding: 80px 0 !important;
    background: #e2b55e;
    margin-top: -2px;
}
.contact-section button {
    padding: 14px 30px !important;
}
.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #000000;
}
.contact-section p {
    color: #ffffff !important;
    margin: 0 0 30px 0 !important;
}
.contactleft .Mail {
    margin: 0 0 11px 0px;
}
.contactleft h6 {
    font-size: 20px;
}
/* Heading */
.services-title {
  font-size: 48px;
  font-weight: 700;
  color: #111;
  font-size: 48px;
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
  color: #1c1c1c;
  text-align: center;
}

.services-subtitle {
  max-width: 650px;
  margin: 15px auto 50px;
  color: #333;
  font-size: 16px;
  text-align: center;
}

/* Service Card */
.service-card {
  background: #11131a;
  border-radius: 20px;
  padding: 35px 30px;
  color: #fff;
  transition: 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
}

/* Icon Box */
.icon-box {
  width: 60px;
  height: 60px;
  background: #1d1f27;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-box i {
  font-size: 26px;
  color: #d4b782;
}

/* Card Title */
.service-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

/* Card Text */
.service-card p {
  font-size: 14px;
  color: #ccc;
}

/* Learn More */
.learn-more {
  color: #d4b782;
  text-decoration: none;
  font-weight: 500;
}

.learn-more:hover {
  color: #fff;
}

/* Filter Buttons */
.filter-btn{
  border:1px solid #111;
  padding:8px 20px;
  border-radius:25px;
  background:transparent;
  margin:5px;
  font-size:14px;
}

.filter-btn.active{
  background:#11131a;
  color:#fff;
  border:none;
}

/* Card */
.project-card{
  background:#11131a;
  border-radius:18px;
  overflow:hidden;
  color:#fff;
  box-shadow:0 10px 20px rgba(0,0,0,0.15);
  transition:.3s;
  height:100%;
}

.project-card:hover{
  transform:translateY(-8px);
}

.project-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

/* Tag */
.tag{
  position:absolute;
  top:15px;
  left:15px;
  background:#e5c78e;
  color:#000;
  font-size:12px;
  padding:5px 12px;
  border-radius:20px;
}

/* Card Content */
.card-body{
  padding:25px;
}

.project-title{
  font-size:20px;
  font-weight: 300;
  margin-bottom:10px;
  font-family: 'Playfair Display', serif;
}

.project-desc{
  font-size:14px;
  color:#ccc;
  margin-bottom:20px;
}

/* Stats */
.stats{
  display:flex;
  gap:30px;
  margin-bottom:20px;
}

.stats div{
  font-size:14px;
}

.stats strong{
  display:block;
  font-size:18px;
  color:#e5c78e;
}

/* Case Study */
.case-link{
  color:#e5c78e;
  text-decoration:none;
  font-weight:500;
  font-size:14px;
}

/* Carousel Arrows */
.carousel-control-prev,
.carousel-control-next{
  width:50px;
  height:50px;
  background:#11131a;
  border-radius:50%;
  top:45%;
  opacity:1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
  filter:invert(1);
  color: white;
  fill: white;
  filter: brightness(0) invert(1);
  width: 18px;
}

/* Bottom Button */
.partner-btn{
  background:#11131a;
  color:#fff;
  padding:12px 40px;
  border-radius:10px;
  border:none;
  margin-top:50px;
}

.carousel-item {
  transition: transform 0.8s ease-in-out;
}

.carousel-control-prev,
.carousel-control-next{
  width:50px;
  height:50px;
  background:#111;
  border-radius:50%;
  top:50%;
  transform:translateY(-50%);
  color: white;
}
.carousel-control-prev, .carousel-control-next span {
  
}

/*  */


/* ===== TABS ===== */

.tabs-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}

.tabs{
  display:flex;
  gap:15px;
}

.tab{
  padding:10px 20px;
  border-radius:8px;
  border:1px solid #c9a74d;
  background:transparent;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.tab.active{
  background:#000;
  color:#fff;
  border:none;
}

.story-count{
  font-size:14px;
  color: black;
}

/* ===== CAROUSEL ===== */

.carousel-wrapper{
  overflow:hidden;
}

.carousel{
  display:flex;
  gap:30px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding-bottom:10px;
}

.carousel::-webkit-scrollbar{
  display:none;
}

.card{
  min-width: 350px;
  max-width: 410px;
  background:#111;
  color:#fff;
  padding:30px;
  border-radius:18px;
  flex-shrink:0;
  text-align:left;
}

.stars{
  color:#f5c518;
  margin-bottom:15px;
}

.card p{
  font-size:15px;
  line-height:1.6;
}

.user{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:20px;
}

.user img{
  width:45px;
  height:45px;
  border-radius:50%;
}

/* ===== ARROWS ===== */

.arrow{
  position:absolute;
  top:45%;
  transform:translateY(-50%);
  width:45px;
  height:45px;
  border-radius:50%;
  background:#000;
  color:#fff;
  border:none;
  cursor:pointer;
  z-index:10;
}

.arrow.left{ left:-20px; }
.arrow.right{right: -2px;}

/* ===== LOAD BUTTON ===== */

.load-more{
  padding:12px 30px;
  border-radius:12px;
  background:#c9a74d;
  border:none;
  font-weight:600;
}
.section-sub{
  color:#333;
  margin-bottom:50px;
}

/* Feature Cards */
.feature-card{
  background:#11131a;
  color:#fff;
  border-radius:18px;
  padding:30px;
  transition:.3s;
  height:100%;
}

.feature-card:hover{
  transform:translateY(-6px);
}
.blacktext {
  color: black;
}
.icon-box{
  width:50px;
  height:50px;
  background: #e2b55e26;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
}

.icon-box i{
  font-size:20px;
  color:#e5c78e;
}

/* Open Positions */
.open-title{
  font-size:36px;
  font-weight:700;
  color: black;
  font-size: 48px;
  font-family: "Playfair Display", serif;
}

/* Filter Buttons */
.filter-btn{
  border:1px solid #111;
  padding:6px 18px;
  border-radius:20px;
  background:transparent;
  font-size:14px;
  margin-left:10px;
}

.filter-btn.active{
  background:#11131a;
  color:#fff;
  border:none;
}

/* Search */
.search-box{
  background:#d4b782;
  border:1px solid #c3a66f;
  border-radius:10px;
  padding:12px 20px;
  width:100%;
}
.filter-btn{
  border:1px solid #111;
  padding:6px 18px;
  border-radius:20px;
  background:transparent;
  font-size:14px;
  margin-right:8px;
}

.filter-btn.active{
  background:#11131a;
  color:#fff;
  border:none;
}

.search-box{
  border:1px solid #bca06a;
  border-radius:10px;
  padding:10px 15px;
  margin-top: 20px;
}

/* BLOG CARD */
.blog-card{
  background:#11131a;
  color:#fff;
  border-radius:18px;
  overflow:hidden;
  transition:.3s;
  height:100%;
}

.blog-card:hover{
  transform:translateY(-6px);
}

.blog-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.blog-body{
  padding:20px;
}

.blog-body h5{
  font-weight:600;
}

.blog-body p{
  font-size:14px;
  color:#ccc;
}

.blog-meta{
  font-size:12px;
  color:#aaa;
}

.read-more{
  color:#e5c78e;
  text-decoration:none;
  font-size:14px;
}

/* FEATURED */
.featured{
  background:#11131a;
  border-radius:20px;
  overflow:hidden;
  color:#fff;
  margin-bottom:60px;
}

.featured img{
  height:350px;
  object-fit:cover;
  width:100%;
}

.featured-content{
  padding:30px;
}

/* PAGINATION */
.pagination .page-link{
  background:#11131a;
  color:#fff;
  border:none;
}

.pagination .active .page-link{
  background:#e5c78e;
  color:#000;
}

/* Job Card */
.job-card{
  background:#11131a;
  color:#fff;
  border-radius:14px;
  padding:20px 25px;
  margin-bottom:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}

.job-info small{
  color:#bbb;
}

.tag{
  background:#e5c78e;
  color:#000;
  font-size:11px;
  padding:3px 10px;
  border-radius:15px;
  margin-left:10px;
}

.apply-btn{
  background:#e5c78e;
  border:none;
  padding:8px 20px;
  border-radius:8px;
  font-weight:500;
}
.section-title {
  font-size: 48px;
  font-family: "Playfair Display", serif;
  color: #000000;
}
/* Responsive */
@media(max-width:768px){
  .job-card{
      flex-direction:column;
      align-items:flex-start;
      gap:15px;
  }
}




/* Respionsixe */
@media (max-width: 575.98px) {
  .hero-section {
    background: #e2b55e;
    padding: 50px 20px;
    border-bottom: 3px solid #1c1c1c;
}
  .video-ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
  .testimonial-section {
    padding: 40px 0;
    background: radial-gradient(circle at top, #1a1a1a, #0b0b0b);
    color: #fff;
}
  .process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
    margin: 0 auto;
}
  .process-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 40px;
}
  .process-section {
    padding: 40px 0;
  
}
  .pillar-card {
    min-height: 200px;
  }
  .pillars-head {
    max-width: 520px;
    margin-bottom: 40px;
}
  .pillars-section {
    padding: 50px 0; }
  .stats-section {
    background: #e2b55e;
    padding: 40px 0;
}
  .expert-card .icon img {
    width: 42px;
  }
  .expert-card p {
    font-size: 12px;
    line-height: 1.6;
    color: #cfcfcf;
}
  .expert-card h5 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
    font-size: 18px;
}
  .hero {
    height: 510px;
  }
  .about-img {
    min-height: 90px; }
    .about-section {
      padding: 30px 0;
  }
  .about-content {
    padding: 0 40px;
}
.about-img h2 {
  font-size: 32px;
  font-weight: 600;
  color: #d4af37;
  font-family: "Playfair Display", serif;
}
.pillars-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px; }
.servicewaves {
  margin-top: -10px;
  margin-bottom: -10px;
  margin-left: 0;
}
.expertise-section {
  padding: 50px 0; }
  .expertise-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #e2b55e;
}
.mission-section {
    padding: 30px 0px;
}
.mission-image {
  margin-top: 15px;
}
.section-title {
  font-size: 32px;
}
.open-title {
  font-size: 32px; }
  .filter-btn {
    margin: 0;
    margin-bottom: 11px;
}
.tabs {
  flex-wrap: wrap;
}
.story-count {
  margin-top: 20px;
}
.contact-section h2 {
  font-size: 32px;
}
.contact-section {
  padding: 10px 0 !important;
  background: #e2b55e;
  margin-top: -2px;
}
.services-title {
  font-size: 48px;
  font-weight: 700;
  color: #111;
  font-size: 32px;
}
.team-container {
  display: block !important;
}
  .team-grid {
    margin-top: 30px;
}
.team-grid {
    grid-template-columns: repeat(1, 1fr) !important;
}
.btn-outline-gold {
  padding: 7px 9px;
}
.btn-gold {
  padding: 13px 18px;
}

}
@media (max-width: 767.98px) { }

@media (max-width: 991.98px) {  }

@media (max-width: 1199.98px) {  }

@media (max-width: 1399.98px) {  }




.team-container {
    display: flex;
    padding: 40px;
    gap: 40px;
}

/* Sidebar */
.team-sidebar {
    /* width: 390px; */
}

.team-sidebar h3 {
    margin-bottom: 10px;
    color: black;
    font-size: 19px;
}

.team-sidebar input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: none;
    margin-bottom: 20px;
    background-color: #f8d38b;
}

.filter-list {
    list-style: none;
    padding: 0;
}

.filter-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    color: black;
    cursor: pointer;
    background: transparent;
    border: 1px solid #00000020;
}

.filter-list li.active,
.filter-list li:hover {
    background: #111;
    color: #fff;
}

.join-box {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #00000030;
    border-radius: 10px;
}
.join-box h4 {
    color: black;
}
.join-box p {
    color: black;
}
.join-box a {
    text-decoration: none;
    font-weight: 600;
    color: #000;
}

/* Grid */
.team-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.team-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    color: #fff;
    transition: 0.3s;
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content span {
    color: #d6b77d;
    font-size: 14px;
}

.team-card:hover {
    transform: translateY(-6px);
}
.navbar-nav .dropdown-menu a:hover {
  
}
.navbar-nav .dropdown-menu a {
  color: white;
}
.navbar-nav .dropdown-menu {
    background: black;
    color: white;
}
.blackcolour {
  color: #ffffff;
}
.content-box h2 {
  color: white !important;
}

.blog-details {
  background: #0e0e0e;
  color: #e5e5e5;
}

.blog-main {
  background: #151515;
  border-radius: 12px;
}

.blog-title {
  color: #fff;
  font-weight: 700;
}

.blog-meta {
  color: #888;
  font-size: 14px;
}

.blog-main p {
  color: #cfcfcf;
  line-height: 1.8;
}

.blog-main h3 {
  margin-top: 30px;
  color: #fff;
}

blockquote {
  border-left: 4px solid #00d4a4;
  background: #1b1b1b;
  padding: 15px 20px;
  border-radius: 6px;
  margin: 25px 0;
  font-style: italic;
  color: #bbb;
}

.tag {
  display: inline-block;
  background: #e2b55e;
  padding: 6px 14px;
  margin: 5px 5px 0 0;
  border-radius: 30px;
  font-size: 13px;
  transition: 0.3s;
}

.tag:hover {
  background: #e2b55e;
  color: #000;
}

.sidebar-card {
  background: #252525;
  border-radius: 12px;
}

.sidebar-card h5 {
  color: #fff;
}

.sidebar-card p,
.sidebar-card li {
  color: #bbb;
  cursor: pointer;
  transition: 0.3s;
}

.sidebar-card p:hover,
.sidebar-card li:hover {
  color: #e2b55e;
}

.recent-post img {
  height: 120px;
  object-fit: cover;
  width: 100%;
}

.service-details {
  background: #0e0e0e;
  color: #e5e5e5;
}

.service-main {
  background: #151515;
  border-radius: 12px;
}

.service-title {
  color: #ffffff;
  font-weight: 700;
}

.service-main p {
  color: #cfcfcf;
  line-height: 1.8;
}

.service-main h4 {
  color: #ffffff;
}

.service-main ul {
  margin-top: 15px;
  margin-bottom: 20px;
}

.service-main ul li {
  margin-bottom: 8px;
  color: #bbbbbb;
}

blockquote {
  border-left: 4px solid #e2b55e;
  background: #1b1b1b;
  padding: 15px 20px;
  border-radius: 6px;
  margin: 25px 0;
  font-style: italic;
  color: #bbbbbb;
}

.sidebar-card {
  background: #252525;
  border-radius: 12px;
}

.sidebar-card h5 {
  color: #ffffff;
}

.sidebar-card ul li {
  padding: 8px 0;
  color: #bbbbbb;
  cursor: pointer;
  transition: 0.3s;
}

.sidebar-card ul li:hover {
  color: #e2b55e;
}

.btn-custom {
  background: #e2b55e;
  color: #000;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-custom:hover {
  background: #e2b55e;
  color: #000;
}

.carousel-indicators {
display: none !important;
}


body{
  margin:0;
  background:#0f0f17;
  font-family: 'Poppins', sans-serif;
  color:#fff;
}

.core-section{
  padding:100px 8%;
  text-align:center;
}

.core-section small{
  color:#c7a14a;
  letter-spacing:2px;
  font-weight:500;
}

.core-section h2{
  font-family:'Playfair Display', serif;
  font-size:48px;
  margin:10px 0;
}

.divider{
  width:60px;
  height:3px;
  background:#c7a14a;
  margin:15px auto 60px;
}

.core-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap:30px;
}

.core-card{
  border:1px solid rgba(199,161,74,0.6);
  padding:35px 25px;
  border-radius:12px;
  transition:0.3s ease;
  background:rgba(255,255,255,0.02);
  text-align: left;
}

.core-card:hover{
  transform:translateY(-8px);
  box-shadow:0 10px 25px rgba(199,161,74,0.2);
}

.icon-box{
  width:50px;
  height:50px;
  background:#c7a14a;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
}

.icon-box svg{
  width:22px;
  fill:#111;
}

.core-card h3{
  font-size:18px;
  margin-bottom:10px;
}

.core-card p{
  font-size:14px;
  color:#cfcfcf;
  line-height:1.6;
}

/* Responsive */
@media(max-width:768px){
  .core-section h2{
      font-size:36px;
  }
}


.team-section{
  padding:100px 0;
}

.team-card{
  background:#151a21;
  border-radius:20px;
  /* overflow:hidden; */
  position:relative;
  transition:0.4s ease;
}

.team-card img{
  width:100%;
  height: 500px;
  object-fit: none;
  transition:0.4s ease;
}

.team-card:hover img{
  transform:scale(1.05);
}

.overlay-social{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  padding:25px;
  background:linear-gradient(to top, rgba(255,85,50,0.9), transparent);
  opacity:0;
  transition:0.4s ease;
}

.team-card:hover .overlay-social{
  opacity:1;
}

.social-icons{
  display:flex;
  gap:15px;
  justify-content: center;
}

.social-icons a{
  width:40px;
  height:40px;
  background:#1e222a;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#fff;
  transition:0.3s;
}

.social-icons a:hover{
  background:#ff5532;
}

.team-info{
  text-align:center;
  margin-top:20px;
}

.team-info h5{
  font-weight:600;
  margin-bottom:5px;
}

.team-info p{
  font-size:14px;
  color:#aaa;
}