/* ============ HEADER & NAVIGATION ============ */

/* ===== HEADER ===== */
.main-header {
    min-width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    z-index: 999;
}

.navbar-brand .logo {
    height: 45px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #020842;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #f1663e;
}

/* Right Side Icons */
.header-icons .icon-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #020842;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-icons .icon-btn:hover {
    color: #f1663e;
}

/* ============ FINAL HAMBURGER FIX ============ */



/* Ensure offcanvas works properly */
.offcanvas {
    visibility: visible !important;
}

/* Fix for any Bootstrap conflicts */
.navbar-toggler {
    display: none !important;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #000000;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1002;
    margin-left: 15px;
    padding: 0;
}

.menu-toggle:hover {
    color: #f1663e;
    transform: scale(1.1);
}

/* Desktop: Hide hamburger */
@media (min-width: 993px) {
    .menu-toggle {
        /* display: none !important;   */
    }
    
    .desktop-nav {
        display: block !important;
    }
}

/* Mobile: Show hamburger */
@media (max-width: 992px) {
    .menu-toggle {
        display: inline-flex !important;  /* Keep !important here to ensure showing */
    }
    
    .desktop-nav {
        display: none !important;
    }
    
    .search-btn {
        display: inline-flex;
    }
}

.menu-toggle[aria-expanded="true"] {
    color: #ffffff !important;
}

/* Hide default navbar toggler */
.navbar-toggler {
    display: none !important;
}

/* Desktop Navigation */
@media (min-width: 993px) {
    .desktop-nav {
        display: block !important;
    }
}

/* ============ FINAL RESPONSIVE HEADER FIX ============ */

/* Desktop styles (above 992px) */
@media (min-width: 993px) {
    .desktop-nav {
        display: block !important;
    }
    
    .search-btn {
        display: inline-flex !important;
    }
}

/* Mobile styles (below 992px) */
@media (max-width: 992px) {
    .main-header {
        padding: 12px 0;
    }
    
    .desktop-nav {
        display: none !important;
    }
    
    /* CHOOSE ONE: Either show or hide search on mobile */
    .search-btn {
        display: inline-flex !important;  /* Change to 'none' if you want to hide search */
    }
    
    /* Fix header icons spacing */
    .header-icons {
        gap: 5px;
    }
}

/* ============ MOBILE MENU - BOOTSTRAP OFFCANVAS ============ */

/* Offcanvas Container */
.offcanvas {
    background-color: #0B1423;
    width: 320px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    display: flex !important;
    flex-direction: column !important;
    height: 100vh;
    max-height: 100vh;
    border: none;
}

/* Offcanvas Header */
.offcanvas-header {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    min-height: 80px;
}

.offcanvas-header .navbar-brand {
    padding: 0;
    margin: 0;
}

.offcanvas-header .navbar-brand img {
    height: 35px;
    width: auto;
    display: block;
}

/* Close Button */
.offcanvas .btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    opacity: 0.8;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 50%;
    border: none;
    box-shadow: none;
}

.offcanvas .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Offcanvas Body - SCROLLABLE */
.offcanvas-body {
    flex: 1 1 auto !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 30px 20px;
    scrollbar-width: thin;
    scrollbar-color: #f1663e rgba(255, 255, 255, 0.1);
}

/* Custom scrollbar for webkit browsers */
.offcanvas-body::-webkit-scrollbar {
    width: 5px;
}

.offcanvas-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.offcanvas-body::-webkit-scrollbar-thumb {
    background: #f1663e;
    border-radius: 10px;
}

.offcanvas-body::-webkit-scrollbar-thumb:hover {
    background: #d44b23;
}

/* Mobile Navigation */
.mobile-nav {
    margin-bottom: 30px;
}

.mobile-nav .navbar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav .nav-item {
    margin-bottom: 5px;
}

.mobile-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 17px;
    font-weight: 500;
    padding: 14px 20px;
    border-radius: 10px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
    position: relative;
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
    color: #ffffff !important;
    background: rgba(255, 90, 60, 0.15);
    padding-left: 25px;
}

.mobile-nav .nav-link.active {
    color: #f1663e !important;
    background: rgba(241, 102, 62, 0.1);
}

/* Mobile Contact Section */
.mobile-contact {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 25px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.5;
}

.contact-info i {
    color: #f1663e;
    width: 20px;
    font-size: 14px;
    text-align: center;
    flex-shrink: 0;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #f1663e;
}

/* Mobile Social Icons */
.mobile-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.mobile-social .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.mobile-social .social-icon:hover {
    background: #f1663e;
    transform: translateY(-3px);
    color: #ffffff;
}

/* Border Top Utility */
.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Responsive adjustments for mobile menu */
@media screen and (max-width: 576px) {
    .offcanvas {
        width: 280px;
    }
    
    .offcanvas-body {
        padding: 20px 15px;
    }
    
    .mobile-nav .nav-link {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .mobile-social .social-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .contact-info p {
        font-size: 13px;
        gap: 10px;
    }
}

/* ============ SEARCH MODAL ============ */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 20, 35, 0.95);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.search-modal.active .search-modal-content {
    transform: translateY(0);
}

.search-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #020842;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.search-close:hover {
    color: #f1663e;
    background: rgba(241, 102, 62, 0.1);
}

.search-modal-content h3 {
    font-size: 24px;
    color: #020842;
    margin-bottom: 20px;
    font-weight: 600;
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #eef2f6;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-form input:focus {
    border-color: #f1663e;
}

.search-form button {
    width: 60px;
    height: 60px;
    background: #f1663e;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-form button:hover {
    background: #d44b23;
    transform: scale(1.05);
}

/* Responsive Search Modal */
@media screen and (max-width: 576px) {
    .search-modal-content {
        padding: 30px 20px;
    }
    
    .search-modal-content h3 {
        font-size: 20px;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-form button {
        width: 100%;
        border-radius: 30px;
        height: 50px;
    }
}

/* Utility class for responsive visibility */
.d-lg-none {
    display: none !important;
}

@media (max-width: 992px) {
    .d-lg-none {
        display: inline-flex !important;
    }
}

/* HERO SECTION STARTS HERE  */
.hero-section {
  padding: 120px 0 100px;
  background-color: #f4f7fe;
}

.hero-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #020842;
  margin-top: 50px;
}

.hero-title span {
  color: #f1663e;
}

.hero-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  max-width: 500px;
}

.btn-hero {
  background-color: #f1663e;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.btn-hero:hover {
  background-color: #d44b23;
  color: #fff;
}

.hero-image img {
  max-width: 100%;
  animation: floatUpDown 4s ease-in-out infinite;
}

/* Subtle float animation */
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 991px) {
  .hero-section {
    text-align: center;
    padding: 80px 0;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-image {
    margin-top: 40px;
  }
}

/* HERO SECTION START  */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  overflow: hidden; /* Only added this to prevent horizontal scroll from shapes */
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-image {
  position: relative;
  z-index: 2;
}

/* Responsive Typography - Only changing font sizes for smaller screens */
.hero-title {
  color: black;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle {
  color: black;
  font-size: 18px;
  margin-top: 20px;
  max-width: 500px;
}

/* Original shape positions - UNCHANGED */
.hero-shape {
  position: absolute;
  z-index: 0;
  top: 20%;
  left: 5%;
}

.hero-shape-2 {
  position: absolute;
  z-index: 0;
  bottom: 15%;
  right: 5%;
}

.box-shape-1 {
  position: absolute;
  z-index: 0;
  bottom: 10%;
  left: 0%;
}

.box-shape-2 {
  position: absolute;
  z-index: 0;
  top: 10%;
  right: 5%;
}

/* Make shape images responsive */
.hero-shape img,
.hero-shape-2 img,
.box-shape-1 img,
.box-shape-2 img {
  max-width: 100%;
  height: auto;
}

/* Animation */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.float-bob-y {
  animation: floatY 6s ease-in-out infinite;
}

/* Tablet Responsive */
@media screen and (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 80px 0;
  }

  .hero-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  /* Keep original positions but scale down shapes slightly */
  .hero-shape {
    width: 120px;
  }
  .hero-shape-2 {
    width: 100px;
  }
  .box-shape-1 {
    width: 80px;
  }
  .box-shape-2 {
    width: 60px;
  }
}

/* Mobile Responsive */
@media screen and (max-width: 767px) {
  .hero-section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 36px; /* Smaller but still bold */
  }

  .hero-subtitle {
    font-size: 16px;
    max-width: 100%;
  }

  /* Keep original positions but scale down shapes for mobile */
  .hero-shape {
    width: 100px;
  }
  .hero-shape-2 {
    width: 80px;
  }
  .box-shape-1 {
    width: 60px;
  }
  .box-shape-2 {
    width: 50px;
  }
}

/* Small Mobile Responsive */
@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  /* Even smaller shapes */
  .hero-shape {
    width: 70px;
  }
  .hero-shape-2 {
    width: 60px;
  }
  .box-shape-1 {
    width: 40px;
  }
  .box-shape-2 {
    width: 30px;
  }
}

/* HERO SECTION ENDS  HERE  */
/* ============ ABOUT SECTION ============ */
.about-section {
    position: relative;
    padding: 120px 0;
    background: var(--white);
    overflow: hidden;
}

/* Images Wrapper */
.about-images-wrapper {
    position: relative;
    display: flex;
    gap: 30px;
    margin-right: 30px;
}

/* Main Image */
.about-image-main {
    position: relative;
    flex: 0 0 40%;
}

.about-image-main img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(11, 20, 35, 0.1);
}

/* Counter Box - EXACT POSITION PRESERVED */
.counter-box {
    position: absolute;
    top: 400px;
    left: 10px;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(11, 20, 35, 0.15);
    text-align: center;
    min-width: 180px;
    z-index: 2;
    animation: floatUpDown 4s ease-in-out infinite;
}

.counter-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 90, 60, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.counter-icon i {
    color: var(--primary);
    font-size: 24px;
}

.counter-number {
    font-size: 48px;
    font-weight: 700;
    color: #f1663e;
    line-height: 1;
    margin-bottom: 5px;
}

.counter-label {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* About Shape */
.about-shape.shape-1 {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 1;
    animation: rotateShape 20s linear infinite;
}

.about-shape img {
    width: 80px;
    height: auto;
}

@keyframes rotateShape {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Secondary Image */
.about-image-secondary {
    position: relative;
    flex: 0 0 50%;
    margin-top: 60px;
}

.about-image-secondary img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(11, 20, 35, 0.1);
}

.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    min-width: 100px;
    box-shadow: 0 10px 20px rgba(255, 90, 60, 0.3);
}

.experience-badge span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.experience-badge p {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    opacity: 0.9;
}

/* About Content */
.about-content {
    padding-left: 40px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 90, 60, 0.1);
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.section-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
}

/* Feature Boxes */
.feature-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(11, 20, 35, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon img {
    width: 28px;
    height: 28px;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    margin: 0;
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
    margin: 30px 0;
}

/* Description */
.about-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 35px;
    max-width: 500px;
}

/* ============ RESPONSIVE STYLES (ADDED - ONLY CHANGES FOR MOBILE/TABLET) ============ */

/* Large Desktop (1200px and below) */
@media screen and (max-width: 1200px) {
    .section-title {
        font-size: 42px;
    }
    
    .about-content {
        padding-left: 20px;
    }
    
    .counter-box {
        padding: 30px;
        min-width: 160px;
        color: #f1663e;
    }
    
    .counter-number {
        font-size: 42px;
        
    }
}

/* Tablet Landscape (992px and below) */
@media screen and (max-width: 991px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-images-wrapper {
        margin-right: 0;
        margin-bottom: 50px;
    }
    
    .about-content {
        padding-left: 0;
        text-align: center;
    }
    
    .section-tag {
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 38px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-description {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-boxes {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .clients-section {
        justify-content: center;
    }
    
    /* Adjust counter position for tablet */
    .counter-box {
        top: 70%; /* Relative positioning instead of fixed 400px */
        left: 5%;
        padding: 25px;
    }
}

/* Tablet Portrait (768px and below) */
@media screen and (max-width: 767px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-images-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-image-main {
        flex: 0 0 100%;
    }
    
    .about-image-secondary {
        flex: 0 0 100%;
        margin-top: 0;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .feature-boxes {
        grid-template-columns: 1fr; /* Stack feature boxes */
        gap: 15px;
    }
    
    .feature-box {
        padding: 15px;
    }
    
    .counter-box {
        top: 65%;
        left: 3%;
        padding: 20px;
        min-width: 140px;
    }
    
    .counter-number {
        font-size: 36px;
    }
    
    .counter-label {
        font-size: 13px;
    }
    
    .about-shape.shape-1 {
        width: 60px;
        right: -10px;
    }
}

/* Mobile (576px and below) */
@media screen and (max-width: 576px) {
    .about-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-description {
        font-size: 16px;
    }
    
    .feature-boxes {
        grid-template-columns: 1fr;
    }
    
    .feature-box {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .feature-icon {
        margin-bottom: 5px;
    }
    
    .counter-box {
        top: 60%;
        left: 2%;
        padding: 15px;
        min-width: 120px;
    }
    
    .counter-number {
        font-size: 30px;
    }
    
    .counter-label {
        font-size: 12px;
    }
    
    .about-image-secondary {
        max-width: 90%;
    }
    
    .experience-badge {
        min-width: 80px;
        padding: 10px;
    }
    
    .experience-badge span {
        font-size: 16px;
    }
    
    .experience-badge p {
        font-size: 11px;
    }
}

/* Small Mobile (400px and below) */
@media screen and (max-width: 400px) {
    .section-title {
        font-size: 24px;
    }
    
    .counter-box {
        display: none; /* Hide counter box on very small screens to prevent overlap */
    }
    
    .about-shape.shape-1 {
        display: none; /* Hide decorative shape on very small screens */
    }
    
    .feature-text h4 {
        font-size: 16px;
    }
}
/* Clients Section */
.clients-section {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.avatar-group img:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-left: -12px;
    border: 3px solid var(--white);
}

.clients-text p {
    font-size: 16px;
    color: var(--text);
    margin: 0;
}

.highlight-text {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

/* Background Shape */
.about-bg-shape {
    position: absolute;
    bottom: -100px;
    right: -100px;
    opacity: 0.05;
    z-index: 0;
}

.about-bg-shape img {
    width: 400px;
    height: auto;
}

/* ============ RESPONSIVE ABOUT ============ */
@media (max-width: 1200px) {
    .about-images-wrapper {
        margin-right: 0;
    }
    
    .about-content {
        padding-left: 30px;
    }
    
    .section-title {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-images-wrapper {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .about-image-main,
    .about-image-secondary {
        flex: 1 1 100%;
        margin-top: 0;
    }
    
    .counter-box {
        left: 20px;
        bottom: 20px;
    }
    
    .about-image-secondary {
        margin-top: 0;
    }
    
    .about-content {
        padding-left: 0;
        text-align: center;
    }
    
    .feature-boxes {
        justify-content: center;
    }
    
    .about-description {
        margin: 0 auto 30px;
    }
    
    .clients-section {
        justify-content: center;
    }
    
    .about-bg-shape {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }
    
    .feature-boxes {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 30px;
    }
    
    .counter-box {
        position: relative;
        left: 0;
        bottom: -20px;
        margin: 0 auto;
        max-width: 160px;
    }
    
    .about-shape.shape-1 {
        display: none;
    }
    
    .experience-badge {
        top: -15px;
        right: -15px;
        min-width: 90px;
        padding: 12px;
    }
    
    .experience-badge span {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 32px;
    }
    
    .counter-number {
        font-size: 42px;
    }
    
    .clients-section {
        flex-direction: column;
        /* gap: 20px; */
    }
    
    .avatar-group img {
        width: 40px;
        height: 40px;
    }
    
    .avatar-more {
        width: 40px;
        height: 40px;
    }
}

/* ============ PARTNERS SECTION ============ */
.partners-section {
    position: relative;
    padding: 100px 0;
    background: #fef1ee;
    overflow: hidden;
}

/* Intro */
.partners-intro {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partners-tagline {
    font-size: 20px;
    line-height: 1.6;
    color: var(--dark-blue);
    font-weight: 500;
}

/* Logo Marquee */
.partners-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    margin: 40px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-group {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
}

/* .logo-item {
    background: var(--white);
    padding: 25px 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(11, 20, 35, 0.08);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 100px;
} */

/* .logo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 20, 35, 0.15);
} */

.logo-item img {
    max-width: 120px;
    max-height: 50px;
    width: auto;
    height: auto;
    /* filter: grayscale(100%); */
    opacity: 0.7;
    transition: all 0.4s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Marquee Animation */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.partners-marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* Stats Section */
.partners-stats {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 90, 60, 0.2);
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Background Shapes */
.partners-bg-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.1;
}

.shape-1 {
    top: 50px;
    left: 50px;
    animation: rotateShape 25s linear infinite;
}

.shape-2 {
    bottom: 50px;
    right: 50px;
    animation: rotateShape 30s linear infinite reverse;
}

.partners-bg-shape img {
    width: 150px;
    height: auto;
}

/* ============ RESPONSIVE PARTNERS ============ */
@media (max-width: 1200px) {
    .marquee-group {
        gap: 40px;
    }
    
    .logo-item {
        min-width: 160px;
        height: 90px;
        padding: 20px 30px;
    }
    
    .logo-item img {
        max-width: 100px;
    }
}

@media (max-width: 992px) {
    .partners-section {
        padding: 80px 0;
    }
    
    .partners-tagline {
        font-size: 18px;
    }
    
    .marquee-group {
        gap: 30px;
    }
    
    .logo-item {
        min-width: 140px;
        height: 80px;
        padding: 15px 25px;
    }
    
    .logo-item img {
        max-width: 90px;
    }
    
    .stat-number {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .partners-tagline {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .partners-marquee {
        padding: 20px 0;
        margin: 20px 0;
    }
    
    .marquee-group {
        gap: 20px;
    }
    
    .logo-item {
        min-width: 120px;
        height: 70px;
        padding: 10px 20px;
    }
    
    .logo-item img {
        max-width: 70px;
    }
    
    .partners-stats {
        margin-top: 50px;
        padding-top: 40px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .partners-bg-shape {
        display: none;
    }
}

@media (max-width: 576px) {
    .partners-tagline br {
        display: none;
    }
    
    .marquee-group {
        gap: 15px;
    }
    
    .logo-item {
        min-width: 100px;
        height: 60px;
        padding: 8px 15px;
    }
    
    .logo-item img {
        max-width: 60px;
    }
    
    .stat-box {
        padding: 20px 10px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

/* ============ SERVICES SECTION START ============ */

.services-section {
  width: 100%;
  padding: 80px 20px;
  background: #FFFFFF;
}

.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color:black;
  margin-bottom: 50px;
}

#section-tag {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: transparent !important;
}

#section-tag span {
    display: inline-flex !important;
    align-items: center !important;
    color: #fff;
    background: #ff5a3c;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
}

/* GRID SYSTEM */
#service-head {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* SERVICE CARD */
.main-box {
  background-color: white;
  padding: 30px 20px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: 0.4s ease;
}

.main-box:hover {
  transform: translateY(-8px);
  background-image: url(../assets/images/hover-bg.jpg.jpeg);
  background-size: cover;
  background-position: center;
  color: white;
}

/* ICON */
.icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.icon:hover{
  color: black;
   background: rgba(255, 0, 0, 0.4);

}
.icon:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(11, 20, 35, 0.1);
}
.icon img {
  width: 100%;
  color: black;
}

/* HEADING */
.main-box h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

/* LIST */
.main-box ul {
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
}

/* BUTTON */
.about-btn {
  background-color:#d44b23;
  color: white;
  width: 140px;
  height: 40px;
  border-radius: 50px;
  border: none;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.about-btn:hover {
  background-color:rgba(0, 0, 0, 0.644);
  color: white;
}

/* ============ RESPONSIVE BREAKPOINTS ============ */

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}

/* ============ WHY CHOOSE US SECTION ============ */
.why-choose-section {
    position: relative;
    padding: 120px 0;
    background: #f0fcfa;
    overflow: hidden;
}

/* Content Section */
.why-choose-content {
    padding-right: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #ff5a3c;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.tag-dot {
    width: 6px;
    height: 6px;
    background: #ff5a3c;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.section-title {
    font-size: 48px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-title .highlight {
    color: #ff5a3c;
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 90, 60, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.description {
    font-size: 17px;
    color: #687799;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Stats Section */
.stats-container {
    display: flex;
    gap: 60px;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: #ff5a3c;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 15px;
    color: #687799;
    line-height: 1.6;
    max-width: 200px;
    margin: 0;
}

/* Features Section */
.features-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(11, 20, 35, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #ff5a3c;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(11, 20, 35, 0.1);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #f0fcfa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: #ff5a3c;
    transform: rotate(5deg);
}

.feature-icon img {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon img {
    filter: brightness(0) invert(1);
}

.feature-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #020842;
    margin-bottom: 10px;
    line-height: 1.3;
}

.feature-content p {
    font-size: 15px;
    color: #687799;
    line-height: 1.6;
    margin: 0;
}

/* Background Shapes */
.why-choose-bg-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.05;
}

.shape-1 {
    top: 100px;
    left: 50px;
    animation: floatUpDown 8s ease-in-out infinite;
}

.shape-2 {
    bottom: 100px;
    right: 50px;
    animation: floatUpDown 10s ease-in-out infinite reverse;
}

.why-choose-bg-shape img {
    width: 150px;
    height: auto;
}

/* ============ RESPONSIVE WHY CHOOSE US ============ */
@media (max-width: 1200px) {
    .why-choose-content {
        padding-right: 40px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .stat-number {
        font-size: 46px;
    }
}

@media (max-width: 992px) {
    .why-choose-section {
        padding: 100px 0;
    }
    
    .why-choose-content {
        padding-right: 0;
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .stats-container {
        gap: 40px;
    }
    
    .feature-box {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 34px;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-text {
        max-width: 100%;
    }
    
    .feature-box {
        padding: 20px;
    }
    
    .feature-content h3 {
        font-size: 20px;
    }
    
    .why-choose-bg-shape {
        display: none;
    }
}

@media (max-width: 576px) {
    .why-choose-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .description {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .feature-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
}

/* ============ TEAM SECTION (Complete Interactive) ============ */
.team-section {
    padding: 100px 0;
    background: #fff;
}

/* Section Header */
.section-header {
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 90, 60, 0.1);
    color: #ff5a3c;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #020842;
    line-height: 1.3;
}

/* Team List - Interactive */
.team-list-interactive {
    margin-top: 30px;
}

.team-member-item {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #e8ecf2;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.team-member-item:last-child {
    border-bottom: none;
}

/* Hover Effects */
.team-member-item:hover {
    background-color: #f8fafd;
    padding-left: 30px;
}

.team-member-item.active {
    background-color: #f8fafd;
    padding-left: 30px;
    border-radius: 8px;
    border-color: transparent;
}

.member-number {
    font-size: 18px;
    font-weight: 700;
    color: #687799;
    width: 50px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.team-member-item:hover .member-number,
.team-member-item.active .member-number {
    color: #ff5a3c;
}

.member-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: #020842;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.team-member-item:hover .member-info h4,
.team-member-item.active .member-info h4 {
    color: #ff5a3c;
}

.member-info p {
    color: #687799;
    font-size: 15px;
    font-style: italic;
    margin: 0;
    transition: all 0.3s ease;
}

.team-member-item:hover .member-info p,
.team-member-item.active .member-info p {
    color: #020842;
}

/* Right Arrow Indicator */
.team-member-item::after {
    content: '→';
    position: absolute;
    right: 20px;
    color: #ff5a3c;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: bold;
}

.team-member-item:hover::after,
.team-member-item.active::after {
    opacity: 1;
    transform: translateX(0);
}

/* Team Images Container */
.team-images-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(11, 20, 35, 0.1);
    height: 400px;
    margin-top: 170px;
}

.team-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.team-image-wrapper.active {
    opacity: 1;
    visibility: visible;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Experience Badge */
.team-experience {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.exp-content {
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(11, 20, 35, 0.1);
    min-width: 120px;
}

.exp-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ff5a3c;
    line-height: 1;
    margin-bottom: 5px;
}

.exp-content p {
    color: #020842;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
    .section-title {
        font-size: 38px;
    }
    
    .team-images-container {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .team-section {
        padding: 80px 0;
    }
    
    .team-content {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .team-images-container {
        max-width: 600px;
        margin: 50 auto;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }
    
    .member-info h4 {
        font-size: 18px;
    }
    
    .member-info p {
        font-size: 14px;
    }
    
    .exp-content {
        padding: 12px 16px;
        min-width: 100px;
    }
    
    .exp-content h3 {
        font-size: 24px;
    }
    
    .exp-content p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .team-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .team-member-item {
        padding: 15px;
    }
    
    .team-member-item:hover,
    .team-member-item.active {
        padding-left: 20px;
    }
    
    .member-number {
        font-size: 16px;
        width: 40px;
    }
    
    .team-images-container {
        height: 250px;
    }
}

/* ============ VIDEO BANNER SECTION (Simple like Binuza) ============ */
.video-banner-section {
    position: relative;
    padding: 120px 0;

    text-align: center;
    overflow: hidden;
        background-image: url('../assets/images/videoTourThumb1_1.jpg.jpeg');
}

/* Background */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 20, 35, 0.9), rgba(11, 20, 35, 0.55));
    z-index: 1;
}

/* Content */
.video-banner-section .container {
    position: relative;
    z-index: 2;
}

/* Simple Tag */
.video-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
}

/* Main Title */
.video-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 40px;
}

/* Video Button Wrapper */
.video-btn-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Simple Play Button */
.video-play-btn {
    width: 70px;
    height: 70px;
    background: #fff;
    color: #ff5a3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.video-play-btn:hover {
    background: #ff5a3c;
    color: #fff;
    transform: scale(1.05);
}

.video-play-btn i {
    font-size: 20px;
    margin-left: 3px;
}

/* Simple label */
.video-label {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
    .video-title {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .video-banner-section {
        padding: 100px 0;
    }
    
    .video-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .video-title {
        font-size: 30px;
    }
    
    .video-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .video-play-btn i {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .video-banner-section {
        padding: 80px 0;
    }
    
    .video-title {
        font-size: 26px;
    }
    
    .video-tag {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .video-label {
        font-size: 14px;
    }
}

/* ============ PORTFOLIO SECTION ============ */
.portfolio-section {
    padding: 80px 0;
    background: white;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main wrapper */
.portfolio-wrapper {
    display: flex;
    gap: 50px;
}

/* Left content */
.portfolio-left {
    width: 35%;
    padding-top: 20px;
}

.portfolio-label {
    display: inline-block;
    color: #ff5a3c;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.portfolio-heading {
    font-size: 36px;
    font-weight: 700;
    color: #020842;
    line-height: 1.2;
    margin-bottom: 20px;
}

.portfolio-text {
    color: #687799;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Right cards - FIXED GRID LAYOUT */
.portfolio-right {
    width: 65%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.portfolio-card {
    border-radius: 10px;
    overflow: hidden;
    height: 280px;
    position: relative;
    transition: transform 0.3s ease;
}

/* FIXED: Wide card spanning both columns */
.portfolio-card.wide {
    grid-column: 1 / -1; /* Spans from first to last column */
    width: 100%;
    max-width: 100%;
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* FIXED: Card overlay styling */
.card-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: auto; /* Changed from fixed width */
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.95); /* Semi-transparent white */
    border-radius: 12px;
    backdrop-filter: blur(5px); /* Modern blur effect */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FIXED: Card tag colors - they were all the same */
.card-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px; /* More modern rounded style */
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-tag.orange {
    background: #FFE6E0; /* Light orange background */
    color: #ff5a3c;
}

.card-tag.blue {
    background: #E0F0FF; /* Light blue background */
    color: #0066CC;
}

.card-tag.green {
    background: #E0F5E0; /* Light green background */
    color: #00A86B;
}

.card-overlay h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #020842; /* Added text color */
    line-height: 1.3;
    padding-right: 30px; /* Space for arrow */
}

.card-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #ff5a3c; /* Added color */
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1); /* Added shadow on hover */
}

.portfolio-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(5px); /* Arrow moves right on hover */
}

.portfolio-card:hover .card-overlay {
    background-color: #ffffff; /* Solid white on hover */
}

/* FIXED: Complete responsive breakpoints */
@media screen and (max-width: 1024px) {
    .portfolio-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .portfolio-left,
    .portfolio-right {
        width: 100%;
    }
    
    .portfolio-left {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .portfolio-heading {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-right {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 15px;
    }
    
    .portfolio-card {
        height: 250px; /* Slightly smaller on mobile */
    }
    
    .portfolio-card.wide {
        grid-column: 1;
    }
    
    .portfolio-heading {
        font-size: 28px;
    }
    
    .card-overlay {
        padding: 15px;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    
    .card-overlay h3 {
        font-size: 16px;
        padding-right: 25px;
    }
}

@media screen and (max-width: 480px) {
    .portfolio-section {
        padding: 40px 0;
    }
    
    .portfolio-card {
        height: 220px;
    }
    
    .portfolio-heading {
        font-size: 24px;
    }
    
    .portfolio-text {
        font-size: 14px;
    }
    
    .card-overlay {
        padding: 12px;
    }
    
    .card-tag {
        font-size: 10px;
        padding: 4px 10px;
    }
    
    .card-overlay h3 {
        font-size: 14px;
    }
    
    .card-arrow {
        font-size: 20px;
        top: 15px;
        right: 15px;
    }
}

/* ===== Testimonial Section Background and Spacing ===== */
.testimonial-section-2 {
    background-color: #0b0f1c; /* dark navy bg */
    padding: 100px 0;
}

/* ===== Section Title ===== */
.testimonial-section-2 .section-title .sub-title {
    font-size: 18px;
    color: #ff5e14; /* orange accent */
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.testimonial-section-2 .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 45px;
}

/* ===== Testimonial Card ===== */
.testimonial-card-items-two {
    background-color: #111830; /* card dark */
    padding: 40px 30px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.35);
    transition: transform 0.3s;
}

.testimonial-card-items-two:hover {
    transform: translateY(-8px);
}

/* ===== Star Rating ===== */
.testimonial-card-items-two .star i {
    color: #ffb400;
    font-size: 14px;
    margin-right: 3px;
}

/* ===== Testimonial Text ===== */
.testimonial-card-items-two .content p {
    font-size: 16px;
    color: #c6c9d8;
    line-height: 1.7em;
    margin-top: 15px;
    margin-bottom: 30px;
}

/* ===== Client Name & Role ===== */
.testimonial-card-items-two .client-info ul li {
    list-style: none;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.testimonial-card-items-two .client-info ul li span {
    color: #8a8fa3;
    font-weight: 400;
    margin-left: 4px;
}

/* ===== Client Image ===== */
.testimonial-card-items-two .client-info-thumb {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    bottom: -34px;
    right: 25px;
    border: 3px solid #0b0f1c;
}

.testimonial-card-items-two .client-info-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body {
      font-family: 'Poppins', sans-serif;
      background-color: #fdeeea;
    }
    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }
    .section-title span {
      color: #ff5a3c;
      font-weight: 500;
      font-size: 14px;
      text-transform: uppercase;
      display: block;
    }
    .section-title h2 {
      font-size: 28px;
      font-weight: 700;
      margin-top: 10px;
      color: #0b0c10;
    }
    /* Testimonials */
    .testimonial-card {
      background: #fff;
      border-radius: 15px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.3s;
    }
    .testimonial-card:hover {
      transform: translateY(-5px);
    }
    .testimonial-card img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 50%;
      margin: 15px auto;
    }
    .testimonial-stars {
      color: #ffb400;
      margin-bottom: 10px;
    }

     /* FAQ */
    .faq-section {
      background-color: #fff;
      padding: 60px 0;
    }
    .faq-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-right: 40px;
    }
    .faq-left .btn-custom {
      background-color: #ff5a3c;
      color: #fff;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      display: inline-block;
      margin-top: 20px;
    }
    .accordion-button:focus {
      box-shadow: none;
    }
    /* BLOSGS SECTION START HERE  */
    /* blogs css start her  */
.blog-section {
  background: #fef3f2; /* light pink like in screenshot */
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-tag {
  display: inline-block;
  color: #ff4b2b;
  background: #ffe7e3;
  padding: 5px 15px;
  font-size: 0.9rem;
  border-radius: 20px;
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #0d1b2a;
}
.section-header p {
  color: #555;
  max-width: 600px;
  margin: auto;
  font-size: 0.95rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-img {
  position: relative;
}
.blog-img img {
  width: 100%;
  display: block;
  height: 220px;
  object-fit: cover;
}
.blog-date {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #ff4b2b;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.8rem;
}
.blog-date span {
  display: block;
  font-size: 1rem;
  font-weight: bold;
}
.blog-content {
  padding: 20px;
}
.blog-meta {
  font-size: 0.8rem;
  color: #888;
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.blog-content h3 {
  font-size: 1rem;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-content p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
}
.read-more {
  text-decoration: none;
  color: #ff4b2b;
  font-weight: 500;
  font-size: 0.9rem;
}

.read-more:hover {
  text-decoration: underline;
}
    /* BLOSGS SECTION ENDS  HERE  */

 /* ============ FOOTER STYLES (Based on Image) ============ */
.footer-section {
    background: #0f172a;
    color: #cbd5e1;
    padding: 80px 0 30px;
    font-family: 'DM Sans', sans-serif;
}

.footer-top {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

/* Logo */
.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Footer Text */
.footer-text {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 25px;
}

/* CTA Section */
.footer-cta {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 20px;
    margin-top: 25px;
}

.cta-text {
    color: #e2e8f0;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
}

.btn-consultation {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b3d 0%, #ff8c5a 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 61, 0.2);
    color: white;
    text-decoration: none;
}

/* Widget Titles */
.widget-title {
    color: #f8fafc;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ff6b3d;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #ff6b3d;
    transform: translateX(5px);
}

/* News Items */
.news-item {
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.news-time {
    color: #ff6b3d;
    font-size: 12px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.news-title {
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Contact Info */
.contact-info {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.company-name {
    color: #f8fafc;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-detail {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-detail i {
    color: #ff6b3d;
    width: 20px;
}

.contact-detail a {
    color: #94a3b8;
    text-decoration: none;
}

.contact-detail a:hover {
    color: #ff6b3d;
}

/* Copyright */
.copyright-text {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-section {
        padding: 60px 0 25px;
    }
    
    .footer-widget {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding-bottom: 30px;
    }
    
    .footer-cta {
        text-align: center;
    }
    
    .btn-consultation {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 50px 0 20px;
    }
    
    .widget-title {
        font-size: 16px;
    }
    
    .footer-links li a {
        font-size: 13px;
    }
}













/* ============ BACK TO TOP BUTTON ============ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #f1663e;  /* Your accent color */
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(241, 102, 62, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #d44b23;  /* Darker shade on hover */
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(241, 102, 62, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}