/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  background-color: #ffffff;
  color: #000000;
  min-height: auto;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* --- NAVBAR STYLES --- */
.navbar {

  width: 100%;
}


.ora-logo {
  text-decoration: none;
  color: #000000;
  
}


.ora-nav a {
  text-decoration: none;
  color: #000000;
  
}



/* --- HERO SECTION STYLES --- */
.hero-container {
  padding: 0 16px 16px 16px;
  flex: 1;
  display: flex;
  
}

.hero-card {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 80px);
}

/* Background Image & Dark Overlay */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.45) 100%),
              url('./images/about-1.png') center/cover no-repeat;
  
  transform: scale(1.05); /* Slight initial scale for GSAP zoom-in effect */
}

/* Hero Text Content */
.hero-content {
  position: relative;
  
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
  max-width: 800px;
}

.subtitle {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.title {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 36px;
}

.explore-btn {
  display: inline-block;
  text-decoration: none;
  color: #000000;
  background-color: #ffffff;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.explore-btn:hover {
  transform: scale(1.03);
  background-color: #f4f4f5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.btn-primary {
  background-color: #2c2b28;
  color: #ffffff;
  padding: 6px 6px 6px 18px;
  gap: 12px;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #c5e8d2;
  color: #111111;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #1a1917;
  color: #ff6a00;
}




/* --- MEDIA QUERIES --- */
@media (max-width: 768px) {
  .navbar {
    padding: 16px 20px;
  }

  .hero-container {
    padding: 0 10px 10px 10px;
  }

  .hero-card {
    border-radius: 16px;
    min-height: calc(100vh - 70px);
  }

  .title {
    font-size: 2.5rem;
    letter-spacing: -0.8px;
    margin-bottom: 28px;
  }

  .subtitle {
    font-size: 0.8rem;
    margin-bottom: 16px;
  }

  .explore-btn {
    padding: 10px 26px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 2rem;
  }
}







/************                                *************/





.about-sec{
  display: none;
  grid-template-rows :2fr 2fr;
  gap: 1rem;
  padding :2rem;

   background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url("./images/about-1.png" )no-repeat 50% 50%;
  background-size: cover;
  color: #f4f4f5;

}




.top-about{
  display : grid;
  grid-template-columns :1.2fr 1fr;
  gap: 1rem;
}

.top-right-about{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

#card-desc {
  display :flex;
  flex-direction: column;
  gap: 4rem;
  justify-content: space-between;
  border :1px solid red;
  padding: 1rem;
  border-radius: 10px;
}

#card-desc h1{
  text-transform: capitalize;
}



.bottom-about{
  display: grid;
  grid-template-columns: 3.5fr 1fr;
  gap: 1rem;
}

.white-about{
  background-color: #f4f4f5;
  color: #000000;
}


.bottom-left-about{
  
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url("./images/about-1.png" )no-repeat 50% 50%;
  background-size: cover;
  color: #f4f4f5;

}
.bottom-right-about{
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url("./images/about-1.png" )no-repeat 50% 50%;
  background-size: cover;
  color: #f4f4f5;
}


.top-left-about h1{
  font-size: 4rem;
  text-transform: capitalize;
  font-weight: 500;
}




















/* Base Styles & CSS Variables */
:root {
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --bg-primary: #ffffff;
  --bg-secondary: #f7f7f8;
  --text-dark: #111111;
  --text-muted: #666666;
  --border-color: #e5e5e7;
  --container-max-width: 1200px;
}


/* Base Container & Section Heights */
.section {
  width: 100%;
  height: auto;
  /* Scalable natural height */
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
 
  padding: 2rem 2rem;
}

.bio-section .container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

/* ==========================================================
   Section 1: Hero / Bio Section
   ========================================================== */
.bio-section {
  background-color: var(--bg-primary);
}

.bio-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 950px;
  margin-bottom: 32px;
}

.about-text{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.bio-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 800px;
  line-height: 1.7;
}

/* ==========================================================
   Section 2: Vision Section (Grid Layout)
   ========================================================== */
.vision-section {
  background-color: var(--bg-primary);

}

.vision-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 3rem;
}

.vision-title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.vision-intro p {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
 
}

.vision-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.vision-image-card img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 8px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.feature-item {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--text-dark);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
}

/* ==========================================================
   Section 3: Metrics / Stats Section
   ========================================================== */
.metrics-section {
  background-color: var(--bg-secondary);
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: #ffffff;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 32px;
  border: 1px solid var(--border-color);
}

.metrics-statement {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-dark);
  max-width: 900px;
  margin-bottom: 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.stat-card {
  padding-left: 0;
  border-left: none;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 220px;
}

/* ==========================================================
   Media Queries for Tablet & Desktop Layouts
   ========================================================== */

/* Tablet & Up (768px+) */
@media (min-width: 768px) {
  .vision-header {
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  
  .stat-card {
    border-top: none;
    border-left: 1px solid var(--border-color);
    padding-left: 24px;
    padding-top: 0;
  }
}

/* Desktop & Up (1024px+) */
@media (min-width: 1024px) {
  .section {
   /* padding: 100px 40px;   */
  }
  
  .vision-content-grid {
    grid-template-columns: 380px 1fr;
    gap: 48px;
  }
}






/* ==========================================
   why choose us css 
   ========================================== */



  .why-choose-us {
  display: grid;
  gap: 12px;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 1.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Desktop Layout (3 Columns, 2 Rows) */
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-areas:
    "main customer integrity"
    "main innovation sustainability";
}

/* Map cards to named grid areas */
.main-card           { grid-area: main; }
.card-customer       { grid-area: customer; }
.card-integrity      { grid-area: integrity; }
.card-innovation     { grid-area: innovation; }
.card-sustainability { grid-area: sustainability; }

/* --- CARD BASE STYLES --- */
.card {
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
}

.card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #ffffff;
  margin: 1.5rem 0 0.75rem 0;
  line-height: 1.25;
  margin-bottom: 3rem;
}

.card p {
  font-size: 0.9rem;
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
}

/* Card Variants */
.card-white {
  background-color: #727171;
  color: #ffffff;
}

.card-lime {
  background-color: #000000;
}

.card-lime p {
  color: #ffffff; /* Darker green text for contrast */
}

/* --- MAIN TALL CARD (LOGISTICS IMAGE) --- */
.main-card {
  background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&q=80&w=1000');
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 450px;
  overflow: hidden;
  color: #ffffff;
  padding: 0;
}

.card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.75) 100%);
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.badge {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.main-card-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.main-card-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

/* --- ICONS --- */
.icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-gray {
  background-color: #f1f3f5;
  color: #212529;
}

.icon-dark {
  background-color: #0d1b2a;
  color: #ffffff;
}

/* ==========================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================== */

/* Medium Screens (Tablets): 2 Columns */
@media (max-width: 992px) {
  .why-choose-us {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "main main"
      "customer integrity"
      "innovation sustainability";
  }

  .main-card {
    min-height: 380px;
  }
}

/* Small Screens (Mobile): 1 Column */
@media (max-width: 600px) {
  .why-choose-us {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "customer"
      "integrity"
      "innovation"
      "sustainability";
    padding: 1rem;
    gap: 1rem;
  }

  .main-card {
    min-height: 320px;
  }

  .main-card-content h2 {
    font-size: 1.5rem;
  }
}










/* FAQ Layout */
.faq-section {
  background-color: #050505;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
  padding: 40px 20px;


  width: 100%;
  max-width: 1400px;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

/* Left Section */
.faq-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 80px;
  height: 100%;
}

.badge {
  display: inline-block;
  background-color: #1a1a1a;
  color: #a1a1aa;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 1px solid #27272a;
}

.faq-header h2 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

/* Contact Card */
.contact-card {
  background-color: #121214;
  border: 1px solid #222225;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 340px;


/* From https://css.glass */
background: rgba(255, 255, 255, 0.2);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3);


}

.profile-img {
  width: 70px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.contact-info h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-info .role {
  display: block;
  font-size: 0.65rem;
  color: #71717a;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  gap: 8px;
  transition: opacity 0.2s ease;
}

.call-btn .arrow{
  margin-left: 8px;
}

.call-btn:hover {
  opacity: 0.9;
}

/* Right Section (Accordion) */
.faq-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: #121214;
  border: 1px solid #222225;
  border-radius: 12px;
  padding: 18px 22px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: #333338;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 500;
}

.faq-question .icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: #a1a1aa;
}

.faq-answer {
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.faq-answer p {
  color: #a1a1aa;
  font-size: 0.9rem;
  line-height: 1.5;
  padding-top: 14px;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-left {
    gap: 30px;
  }

  .faq-header h2 {
    font-size: 2rem;
  }

  .contact-card {
    max-width: 100%;
  }
}












@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Reset & Layout --- */
.footer-section {
  background-color: #000000;
  color: #ffffff;
  padding: 40px 40px 24px 40px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;

 
}

.footer-section * {
  box-sizing: border-box;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* --- Top Row Navigation --- */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.meta-icon {
  stroke: #ffffff;
}

.meta-time {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-pill {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
}

.nav-pill:hover,
.nav-pill.active {
  background-color: #ffffff;
  color: #0d0d0d;
  border-color: #ffffff;
}

/* --- Middle Info Section --- */
.footer-middle {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-left-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-headline {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -1px;
}

.text-bright {
  color: #ffffff;
}

.text-muted {
  color: #4a4a4a;
}

.copyright-text {
  font-size: 13px;
  color: #666666;
  margin: 40px 0 0 0;
}

.footer-right-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 80px;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-label {
  font-size: 11px;
  font-weight: 600;
  color: #555555;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.info-value {
  font-size: 14px;
  line-height: 1.5;
  color: #cccccc;
  font-style: normal;
  margin: 0;
}

.info-link {
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-link:hover {
  color: #ffffff;
}

/* --- Giant Brand Title --- */
.footer-branding {
  width: 100%;
  text-align: center;
  margin: 20px 0;
}

.brand-giant-text {
  font-size: 7rem;
  font-weight: 700;
  line-height: 0.8;
  margin: 0;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-transform: uppercase;
  user-select: none;
}

/* --- Bottom Bar --- */
.footer-bottom-bar {
  background-color: #141414;
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-to-top-text {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: #888888;
  line-height: 1.3;
}

.back-to-top-btn {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.back-to-top-btn:hover {
  background-color: #ffffff;
  color: #0d0d0d;
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* --- Media Queries --- */
@media (max-width: 1024px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-middle {
    flex-direction: column;
    gap: 40px;
  }

  .footer-headline {
    font-size: 38px;
  }

  .footer-right-grid {
    gap: 30px 40px;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 30px 20px 20px 20px;
  }

  .footer-headline {
    font-size: 30px;
  }

  .footer-right-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brand-giant-text {
    font-size: 18vw;
    margin: 10px 0;
  }
}




