/* --- GLOBAL RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
body { background-color: #000; overflow-x: hidden; color: #fff; }
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&display=swap');
/* --- TOP NAVIGATION BAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 0 20px;
    height: 80px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.nav-links a:hover { color: #e67314; }
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-actions a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.85rem;
}
.enquire-btn { color: #e67314 !important; }
.logo-right { border-left: 1px solid #ccc; padding-left: 20px; }

/* --- STICKY RIGHT SIDEBAR --- */
.sticky-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    display: flex;
    flex-direction: column;
    z-index: 100;
}
.sticky-sidebar div {
    height: 40px;
    padding: 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.3s;
}
.sticky-sidebar img {
    display: block;
    width: 50px;
    height: 40px;
    object-fit: cover;
}
.sticky-sidebar div:hover { filter: brightness(1.08); }

/* --- HERO SLIDER SECTION --- */
#hero-slider {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px; /* Pushes slider down so navbar doesn't cover it */
}
.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}
.slide.active { opacity: 1; z-index: 2; }

/* Vertical Tabs (Left Side) */
.vertical-tabs {
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    width: 250px;
}
.tab {
    position: relative;
    padding: 12px 0 8px 0;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}
.tab-img-wrap {
    display: flex;
    align-items: center;
}

.tab-img-wrap img {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: filter 0.3s ease, transform 0.3s ease;
}
.tab-number {
    position: absolute;
    right: -28px;
    bottom: -9px;
    font-size: 0.85rem;
    font-weight: 700;
    color: transparent;
    transition: color 0.3s ease;
    pointer-events: none;
}
.tab:hover, .tab.active { opacity: 1; }
.tab.active {border-bottom: 2px solid #e5ac00; /* Yellow line */}
.tab.active .tab-img-wrap img {filter: invert(72%) sepia(85%) saturate(1450%) hue-rotate(355deg) brightness(98%) contrast(102%);}
.tab-number { font-size: 0.8rem; font-weight: bold; width: 20px; color: transparent; }
.tab.active .tab-number { color: #e5ac00; }
.tab-icon { font-size: 1.5rem; }
.tab-text { font-size: 1.1rem; font-weight: 600; text-shadow: 1px 1px 4px rgba(0,0,0,0.8); }
.tab.active .tab-text { color: #facc15; border-bottom: 2px solid #facc15; padding-bottom: 2px; }
.tab:hover:not(.active) .tab-img-wrap img {
    transform: translateX(4px);
    opacity: 0.95;
}
/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    right: 80px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #facc15;
    font-weight: bold;
    font-size: 0.9rem;
    animation: bounce 1.5s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* --- DUAL SPLIT SECTION --- */
#split-section {
    display: flex;
    width: 100vw;
    height: 100vh;
}
.split-half {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10%;
}
.split-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease-in-out;
    z-index: 1;
}
.split-half:hover .split-bg { transform: scale(1.05); }
.split-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2;
}
.split-content { position: relative; z-index: 3; }
.split-content img {
    width: 200px; height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: transform 0.4s ease;
}
.split-half:hover .split-content img { transform: translateY(-10px); }
.split-content h2 { font-size: 2.5rem; margin-bottom: 15px; letter-spacing: 2px; }
.split-content p { font-size: 1.1rem; line-height: 1.6; margin-bottom: 25px; }
.know-more-btn {
    color: #facc15;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}
.know-more-btn:hover { transform: translateX(8px); }

/* --- SECTION 3: 50/50 ACHIEVEMENT SLIDER --- */
#achievement-slider {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #005bb6; /* Tata Blue */
}

.split-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    z-index: 1;
}

.split-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Left Panel (Blue Background + Text) */
.slide-content-left {
    width: 50%;
    height: 100%;
    padding: 6% 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    color: #ffffff;
}

.slide-content-left h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.slide-content-left h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.3;
}

/* Achievement List with Icons */
.achievement-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.mt-4 {
    margin-top: 30px;
}

.achievement-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.5;
}

.achievement-list .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight {
    color: #ffcc00; /* Yellow highlight */
    font-weight: bold;
}

/* Links & Controls */
.know-more-link {
    color: #ffcc00;
    text-decoration: none;
    font-style: italic;
    font-weight: 600;
    font-size: 1.1rem;
    width: fit-content;
}

.slide-controls {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    gap: 20px;
}

.slide-controls button {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.slide-controls button:hover {
    transform: scale(1.2);
    color: #ffcc00;
}

/* Right Panel (Image) */
.slide-image-right {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* --- SECTION 4: FEATURED PROJECTS --- */
#featured-projects-section {
    width: 100vw;
    height: 100vh;
    background-color: #0b132b;
    position: relative;
    overflow: hidden;
}
.fp-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.fp-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out;
}
.fp-slide.active {
    opacity: 1;
    visibility: visible;
}
.fp-image-half {
    flex: 0 0 50%;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;}
    .fp-content-half {
        flex: 0 0 50%;
        width: 50%;
        height: 100%;
        background-color: #122240;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 8%;
        position: relative;
    }
.fp-tag {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #facc15;
    font-weight: 700;
    margin-bottom: 15px;
}
.fp-content-half h2 {
    font-size: 2.3rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}
.fp-content-half p {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 30px;
}
.fp-spec-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    width: fit-content;
    margin-bottom: 30px;
}
.sun-icon { font-size: 1.8rem; }
.spec-label { display: block; font-size: 0.75rem; color: #94a3b8; text-transform: uppercase; }
.spec-value { font-size: 1.1rem; font-weight: bold; color: #fff; }
.fp-know-more {
    color: #facc15;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05rem;
    font-style: italic;
    transition: transform 0.3s;
    width: fit-content;
}
.fp-know-more:hover { transform: translateX(5px); }

.fp-nav-arrows {
    position: absolute;
    bottom: 40px;
    right: 60px;
    display: flex;
    gap: 10px;
    z-index: 10;
}
.fp-prev, .fp-next {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 45px; height: 45px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s;
}
.fp-prev:hover, .fp-next:hover {
    background: #facc15;
    color: #000;
}


/* --- SECTION 5: OUR ACHIEVEMENTS --- */
#section-5-achievements {
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates a nice parallax feel on scroll */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.achievements-container {
    width: 100%;
    max-width: 1300px; /* Anchors the layout similarly to the X coordinates */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    box-sizing: border-box;
}

/* Left Side Styles */
.achievements-left {
    flex: 1;
    padding-right: 50px;
    color: #fff;
}
.achievements-heading {
    font-family: 'Ubuntu', sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-align: left;
    height: 51px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.achievements-underline {
    width: 45px;
    height: 1px;
    background-color: #fff;
    margin-bottom: 25px;
}
.achievements-subtext {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 400px;
    color: #e2e8f0;
}

/* Right Side Styles (Your Exact Dimensions) */
.achievements-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.achievements-card {
    width: 616.34px;
    height: 390px;
    padding: 45px 45px 90px 45px;
    background-color: #ffffff;
    box-sizing: border-box;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Slides Content */
.achievements-slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
.achieve-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out;
}
.achieve-slide.active {
    opacity: 1;
    visibility: visible;
}

.achieve-year {
    color: #0b3d82; /* Tata Blue */
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-left: 3px solid #0b3d82;
    padding-left: 15px;
    line-height: 1;
}
.achieve-title {
    font-size: 1.05rem;
    color: #111;
    font-weight: 700;
    margin-bottom: 15px;
}
.achieve-subtitle {
    font-size: 0.9rem;
    color: #444;
    font-weight: 600;
    margin-bottom: 10px;
}
.achieve-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Bottom Controls */
.achieve-bottom-bar {
    position: absolute;
    bottom: 40px;
    left: 45px;
    right: 45px;
    display: flex;
    justify-content: space-between; /* This forces the button left and arrows right */
    align-items: center;
    z-index: 10;
}

.achieve-btn {
    background-color: #e55a15;
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background 0.3s;
}

.achieve-btn:hover {
    background-color: #c94c0f;
}

.achieve-arrows {
    display: flex;
    gap: 15px;
}

.achieve-prev, .achieve-next {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achieve-prev:hover, .achieve-next:hover {
    color: #e55a15;
    transform: scale(1.1);
}

/* --- SECTION 6: MEDIA --- */
#section-6-media {
    width: 100vw;
    min-height: 100vh;
    background-image: url('parallax-6.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Keeps the parallax scrolling effect consistent */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    box-sizing: border-box;
}

/* Header Styles */
.media-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.media-heading {
    font-family: 'Ubuntu', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.media-underline {
    width: 60px;
    height: 2px;
    background-color: #111;
    margin: 0 auto 15px auto;
}

.media-subtext {
    font-size: 1rem;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
}

/* Image Grid Container (Your Exact Dimensions) */
.media-grid-container {
    width: 857.5px;
    height: 530.488px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Spreads the cards evenly */
    align-content: space-between;  /* Spreads the top and bottom rows evenly */
}

/* Individual Image Cards (Your Exact Dimensions) */
.media-card-img {
    width: 417px;
    height: 199px;
    padding: 3px;
    box-sizing: border-box;
    background-color: #fff; /* Gives the padding a white border effect, matching the cards */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Optional: adds a slight shadow so they pop off the background */
    object-fit: cover;
}
/* --- SECTION 7: CTA CARDS (PC VERSION) --- */
#section-7-pc {
    width: 100vw;
    /* Uses the exact padding you provided: Top: 155px, Left/Right: 15px, Bottom: 0px */
    padding: 155px 15px 0px; 
    box-sizing: border-box;
    
    /* Background setup */
    background-image: url('parallax-7.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Keeps the smooth parallax effect */
    
    /* Give the section enough bottom padding so the cards aren't cut off */
    padding-bottom: 150px; 
}

.cta-cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Adjust this to match the exact spacing between the cards */
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Image Cards with your exact dimensions */
.cta-card {
    width: 269.344px;
    height: 309.984px;
    object-fit: cover;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15); /* Optional: adds a slight shadow to lift them off the background */
    cursor: pointer;
    transition: transform 0.3s ease; /* Optional hover effect */
}

/* Optional: Slight lift effect when hovering over the cards like a real button */
.cta-card:hover {
    transform: translateY(-5px);
}

/* --- SECTION 8: TATA POWER SOLAR ON SOCIAL --- */
#section-8-pc {
    width: 100vw;
    padding: 70px 0;
    background-color: #f5f6f8;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.social-pc-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Styling */
.social-pc-header h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #111111;
    letter-spacing: 1px;
    text-align: center;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
}

.social-pc-header h2 span {
    font-weight: 700;
}

.social-header-line {
    width: 60px;
    height: 2px;
    background-color: #111111;
    margin: 10px auto 35px auto;
}

/* Slider Navigation & Track */
.social-pc-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Set exact 336px width constraint */
.social-pc-viewport {
    width: 336px; 
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.social-pc-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.social-pc-card {
    min-width: 336px;
    width: 336px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.social-card-img {
    width: 336px;
    height: auto;
    display: block;
    object-fit: cover;
}

.social-card-body {
    padding: 20px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 110px;
    box-sizing: border-box;
}

.social-card-body p {
    font-size: 0.88rem;
    color: #444444;
    line-height: 1.4;
    margin: 0 0 12px 0;
    font-family: 'Ubuntu', sans-serif;
}

.share-btn {
    cursor: pointer;
    color: #222222;
    transition: color 0.2s ease;
}

.share-btn:hover {
    color: #e67314;
}

/* Nav Arrows */
.social-pc-arrow {
    background: none;
    border: none;
    font-size: 2rem;
    color: #222222;
    cursor: pointer;
    padding: 0 40px;
    transition: transform 0.2s ease, color 0.2s ease;
    user-select: none;
}

.social-pc-arrow:hover {
    transform: scale(1.2);
    color: #e67314;
}

/* Desktop sitemap footer */
#footer-pc {
  position: relative;
  min-height: 410px;
  color: #fff;
  background:
    linear-gradient(rgba(0, 28, 24, 0.62), rgba(0, 28, 24, 0.72)),
    url("footer-solar-background.png") center / cover no-repeat;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-pc-overlay {
  min-height: 410px;
  background: rgba(0, 16, 14, 0.12);
}

.footer-pc-container {
  box-sizing: border-box;
  width: min(100% - 80px, 860px);
  min-height: 410px;
  margin: 0 auto;
  padding: 67px 0 19px;
  display: flex;
  flex-direction: column;
}

.footer-pc-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 28px;
  align-items: start;
}

.footer-col h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.1;
}

.footer-col h4.sub-heading {
  margin-top: 16px;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin: 0 0 6px;
  font-size: 10px;
  line-height: 1.05;
}

.footer-col a,
.footer-legal,
.footer-legal a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.footer-col a:hover,
.footer-legal a:hover {
  text-decoration: underline;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-social-icons a {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.footer-pc-bottom {
  margin-top: auto;
  padding-top: 24px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  line-height: 1;
}

@media (max-width: 900px) {
  .footer-pc-container {
    width: min(100% - 48px, 860px);
  }

  .footer-pc-grid {
    column-gap: 16px;
  }
}

/* Hero slideshow navigation — desktop reference treatment */
#hero-slider .vertical-tabs {
  left: 14px;
  width: 123px;
}

#hero-slider .tab {
  min-height: 62px;
  padding: 11px 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}

#hero-slider .tab-img-wrap img {
  height: 34px;
  max-width: 116px;
}

#hero-slider .tab-number {
  right: -15px;
  bottom: -7px;
  color: transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

#hero-slider .tab.active {
  border-bottom: 2px solid #ffd400;
}

#hero-slider .tab.active .tab-img-wrap img {
  filter: invert(81%) sepia(89%) saturate(834%) hue-rotate(356deg) brightness(104%) contrast(102%);
}

#hero-slider .tab.active .tab-number {
  color: #ffd400;
}

/* Compact desktop masthead */
.navbar {
  height: 52px;
  padding: 0 25px;
  box-shadow: none;
  border-top: 1px solid #d5d5d5;
  border-bottom: 1px solid #dadada;
}

.logo-left {
  display: flex;
  align-items: center;
}

.logo-left img {
  display: block;
  width: 117px;
  height: auto;
}

.nav-links {
  margin-left: auto;
  gap: 21px;
}

.nav-links a,
.nav-actions a {
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-actions {
  align-self: stretch;
  margin-left: 7px;
  gap: 0;
}

.nav-actions > a,
.logo-right {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-left: 1px solid #dedede;
}

.enquire-btn {
  color: #f47920 !important;
  gap: 6px;
}

.enquire-btn img {
  display: block;
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.menu-btn {
  gap: 7px;
}

.menu-lines {
  display: block;
  width: 19px;
  height: 9px;
  border-top: 2px solid #111;
  border-bottom: 2px solid #111;
  position: relative;
}

.menu-lines::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  border-top: 1px solid #111;
}

.search-btn {
  gap: 8px;
}

.search-lens {
  width: 17px;
  height: 17px;
  border: 1.5px solid #1671c9;
  border-radius: 50%;
  position: relative;
}

.search-lens::after {
  content: "";
  position: absolute;
  width: 7px;
  border-top: 1.5px solid #1671c9;
  right: -5px;
  bottom: -3px;
  transform: rotate(48deg);
}

.logo-right {
  min-width: 70px;
}

.logo-right img {
  display: block;
  width: 31px;
  height: auto;
}

#hero-slider {
  margin-top: 52px;
}
