/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ====== core & vars (kept from original) ====== */
:root{
  --primary-blue: #1e3a8a;
  --nav-bg: #ffffff;
  --nav-text: #000;
  --nav-text-hover: #1e3a8a;
  --nav-height: 80px;
  --nav-height-scrolled: 70px;
  --nav-transition: all 0.35s cubic-bezier(.16,1,.3,1);
}


.container {
    max-width: 1200px;
    text-align: justify;
    margin: 0 auto;
    padding: 0 20px;
}
.footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  max-height: 300px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 3rem;
}

.footer-brand img {
filter: brightness(0) invert(1);
height: clamp(3rem, 5vw, 4rem);
margin-bottom: 1rem;
width:auto;
}

.footer-brand p {
    color: #cbd5f5;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 360px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: #cbd5f5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #38bdf8;
}

.footer-contact span {
  color: #94a3b8;
  margin-right: 0.3rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: #94a3b8;
}



/* ===================================
   HEADINGS- COMMON 2025
   =================================== */

section {
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    background: var(--light-blue-soft);   
    padding: 0.5rem 4.25rem;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    
}



/* ===================================
   INDEX PAGE - REDESIGNED 2025
   =================================== */
/* ================= HERO BASE ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Background media */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-video video,
.hero-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

/* Overlay layers */
.hero-overlay {
  position: absolute;
  inset: 0;
 
  z-index: 3;
}

/* ================= CONTENT ================= */
.hero-content {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  width: 100%;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-text {
  max-width: 640px;
}

/* Titles */
.hero-title,
.hero-title-home {
  font-size: clamp(1.6rem, 5vw, 3.2rem);
  font-weight: 900;
  margin: 0;
  color: #facc15;
  line-height: 1.15;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 8px rgba(0,0,0,0.35);
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 1.5rem 0 2.5rem;
  color: #ffffff;
  line-height: 1.6;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

/* Tablet */
@media (max-width: 1024px) {
  .hero {
    min-height: 90vh;
    padding: 100px 0 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 90px 0 60px;
  }

  .hero-content {
    padding: 1.25rem;
  }

  .hero-title,
  .hero-title-home {
    font-size: clamp(1.4rem, 6vw, 2.1rem);
  }

  .hero-subtitle {
    margin-bottom: 2rem;
  }
}


.scroll-indicator {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    z-index: 5;
    animation: bounce 2s infinite;
}

.scroll-indicator .arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
    margin: 10px auto;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.button {
  --clr: #facc15;      
  --icon-clr: #000000;

  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--clr);
  color: #fff;
  border-radius: 10rem;
  font-weight: 600;
  padding: 1.30rem 2.8rem;
  padding-left: 16px;
  white-space: nowrap;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.button--white {
  --clr: #ffffff;
  --icon-clr: #000;
  color: #000;
}
.button--white:hover {
  background-color: #e5e5e5;
}

.button--yellow {
  --clr: #facc15;
  --icon-clr: #000;
  color: #000;
}
.button--yellow:hover {
  background-color: #eab308;
}

.button__icon-wrapper {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.button .button__icon-svg {
  width: 8px;
  height: 8px;
  fill: currentColor;
  color: var(--icon-clr);
}

.button:hover .button__icon-wrapper {
  color: #000;
}

.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}



/* ETRM Intro Section */

.etrm-intro {
    background: #f8fafd;
    padding: 4rem 0;
    position: relative;
    z-index: 2;
    min-height: 60vh;
}


.etrm-intro::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url("../assets/Img/wind.jpg");
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.etrm-intro .container {
    position: relative;
    z-index: 2;
}


@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.etrm-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}


.etrm-intro-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.etrm-intro-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.125rem;
}

.etrm-benefits {
    margin-top: 2rem;
}

.etrm-benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.etrm-benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-check {
    width: 30px;
    height: 30px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.etrm-intro-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.visual-card {
    background: #e0e0e0;
    padding: 2rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 15px 15px 30px #bebebe,
             -15px -15px 30px #ffffff;
    border-color: var(--primary-color);
}

.visual-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.visual-card h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
}

.floating {
    animation: float 3s ease-in-out infinite;
}

.floating.delay-1 {
    animation-delay: 0.5s;
}

.floating.delay-2 {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}


/* ETRM Capabilities Section */

.etrm-capabilities {
    background: #f8fafd;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.etrm-capabilities::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: url("../assets/Img/trading.jpg");
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.etrm-details {
    margin-left: 55%;
    position: relative;
}

.etrm-capabilities .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 2rem;
    align-items: stretch;
}

.capability-card {
    background: #ffffff;
    padding: 1.8rem 1.8rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 1.3rem;
    align-items: flex-start;
    cursor: pointer;
    height: 100%;
}

.capability-card:hover {
    background: #3E54FF;
    box-shadow: 0 20px 45px rgba(0, 70, 140, 0.18);
    border-left-color: #ffffff;
    border-left-width: 5px;
    transform: translateY(-6px);
}

.capability-card:hover::after {
    transform: scale(1.3) translate(10px, -10px);
}

.capability-content h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    color: var(--primary-blue);
    font-weight: 700;
    letter-spacing: -0.3px;
    transition: all 0.3s ease;
}

.capability-card:hover h3 {
    color: #ffffff;
}

.capability-content p {
    color: var(--text-light);
    line-height: 1.55;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.capability-card:hover p {
    color: #ffffff; 
}


/* Responsive adjustments */
@media (max-width: 1024px) {
    .etrm-capabilities {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .etrm-capabilities::before {
        width: 40%;
    }
    
    .etrm-details {
        margin-left: 45%;
        padding-left: 3rem;
    }
}

@media (max-width: 768px) {
    .etrm-capabilities::before {
        width: 100%;
        height: 300px;
        position: relative;
        margin-bottom: 2rem;
    }
    
    .etrm-details {
        margin-left: 0;
        padding: 2rem 1rem;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr !important;
    }
}


/* Modern Full-Width Logo Marquee */

.logo-marquee-section {
    width: 100vw;
    margin-left: calc(50% - 50vw); 
    background: #f8fafd;
    padding: 4rem 0;
    position: relative;
}

.logo-marquee-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.logo-marquee-section h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #1e3a8a;
    letter-spacing: -0.5px;
}

.logo-marquee-section p {
    color: #4a5568;
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.15rem;
    margin-top: 0.6rem;
}

.logo-marquee {
    width: 100%;
    position: relative;
    overflow: hidden;
}

@keyframes marqueeFlow {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-marquee__track {
    display: flex;
    width: max-content;
    animation: marqueeFlow 20s linear infinite;
    gap: 3rem;
    padding: 1.5rem 0;
}

.logo-marquee__group {
    display: flex;
    gap: 3rem;
}

.logo-item {
    flex-shrink: 0;
    width: 220px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
    border: 1px solid rgba(255,255,255,0.4);
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-8px) scale(1.08) rotate(-2deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    background: white;
    border-color: rgba(200,200,255,0.9);
}

.logo-item:hover img {
    opacity: 1;
}

.logo-marquee::before,
.logo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
    display: none;
}

.logo-marquee::before {
    background: linear-gradient(90deg, rgba(255,255,255,0.7) 0%, transparent 100%);
    width: 40px;
}

.logo-marquee::after {
    background: linear-gradient(270deg, rgba(255,255,255,0.7) 0%, transparent 100%);
    width: 40px;
}

@media (max-width: 1200px) {
    .logo-item {
        width: 140px;
        height: 110px;
        padding: 1rem;
    }
}

@media (max-width: 1024px) {
    .logo-marquee-section {
        padding: 3.5rem 0;
    }
    
    .logo-item {
        width: 130px;
        height: 100px;
        padding: 0.9rem;
    }
    
    .logo-marquee__group {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .logo-marquee-section {
        padding: 3rem 0;
        margin: 1.5rem 0;
    }
    
    .logo-marquee-container {
        padding: 1.5rem 0;
    }
    
    .logo-item {
        width: 110px;
        height: 90px;
        padding: 0.75rem;
    }
    
    .logo-marquee::before,
    .logo-marquee::after {
        width: 60px;
    }
    
    .logo-marquee-section .section-header h2 {
        font-size: 2rem;
    }
    
    .logo-marquee-section .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .logo-item {
        width: 100px;
        height: 80px;
        padding: 0.6rem;
    }
    
    .logo-marquee__track {
        animation-duration: 30s;
    }
}


/* Technologies Preview Section */

.tech-stack {
    width: 80%;
    margin: 0 auto;
    padding: 40px 0;
    background: white;
    text-align: center;
}

.tech-stack h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e293b;
}

.tech-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.tech-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    padding: 20px 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    text-align: center;
    height: 100%;
    justify-content: center;
}

.tech-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #dbeafe;
}

.tech-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    padding: 10px;
    background: white;
    border-radius: 8px;
}

.tech-logo span {
    font-weight: 600;
    color: #1e293b;
    font-size: 15px;
    margin-top: 5px;
}

.tech-logos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .tech-logos {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .tech-logo img {
        width: 60px;
        height: 60px;
    }
    
    .tech-logo span {
        font-size: 14px;
    }
}

.technologies-preview {
    background: #ffffff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.technologies-preview::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to left,
        rgba(219,234,254,0.3) 0%,
        rgba(219,234,254,0.1) 50%,
        transparent 100%
    );
    pointer-events: none;
}

.technologies-preview .container {
    position: relative;
    z-index: 1;
}

.tech-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.tech-logo {
    background: #ffffff;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    color: var(--primary-blue);
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 180px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.tech-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle,
        rgba(102,126,234,0.15) 0%,
        rgba(118,75,162,0.1) 50%,
        transparent 70%
    );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.tech-logo:hover::before {
    width: 300px;
    height: 300px;
}

.tech-logo:hover {
    background: #3E54FF !important;
    color: #ffffff !important;
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 70, 140, 0.18);
    border-color: #3E54FF;
}

.tech-logo-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    transition: all 0.4s ease;
}

.tech-logo:hover .tech-logo-icon {
    transform: scale(1.3) rotate(10deg);
    color: #ffffff;
}

.tech-logo span {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.tech-logo:hover span {
    color: #ffffff;
}

.tech-logo.featured-tech {
    background: #3E54FF;
    color: #ffffff;
    border: 1px solid #3E54FF;
    box-shadow: var(--shadow-md);
}

.tech-logo.featured-tech:hover {
    background: #2B3CCB;
    box-shadow: var(--shadow-lg);
}


/* AI  Section */

.ai-section {
    padding: 6rem 0;
    background: #1e3a8a;
    position: relative;
    overflow: hidden;
}

.ai-section .container {
    position: relative;
    z-index: 2;
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ai-text .section-tag {
    display: inline-block;
    background: rgba(30, 58, 138, 0.1);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ai-text p {
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.ai-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.ai-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ai-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.ai-icon svg {
    width: 24px;
    height: 24px;
    color: #3b82f6;
}

.ai-feature-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.ai-feature-text p {
    font-size: 0.9375rem;
    color: #fff;
    margin: 0;
}


.ai-visual {
    position: relative;
    padding: 2rem;
}

.ai-visual-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.ai-visual-main {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.ai-visual-screen {
    padding: 1.5rem;
    background: #f8fafd;
    border-radius: 12px;
    height: 100%;
}

.ai-visual-content {
    background: white;
    border-radius: 8px;
    height: 100%;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.ai-visual-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.ai-visual-dots {
    display: flex;
    gap: 6px;
    margin-right: 1rem;
}

.ai-visual-dots span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.ai-visual-dots span:nth-child(1) { background: #ef4444; }
.ai-visual-dots span:nth-child(2) { background: #fbbf24; }
.ai-visual-dots span:nth-child(3) { background: #22c55e; }

.ai-visual-search {
    flex: 1;
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #64748b;
}

.ai-visual-graph {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 180px;
    margin: 2rem 0;
    padding: 0 1rem;
    gap: 8px;
}

.graph-line {
    width: 24px;
    height: var(--height);
    background: #e0e7ff;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.graph-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, #3b82f6, #60a5fa);
    border-radius: 4px;
    opacity: 0.8;
}

.graph-line.active {
    transform: scaleY(1.1);
}

.graph-line.active::after {
    background: linear-gradient(to top, #2563eb, #3b82f6);
}

.ai-visual-results {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.ai-result {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.9375rem;
}

.ai-result-label {
    color: #64748b;
}

.ai-result-value {
    font-weight: 600;
    color: #1e40af;
}

.ai-visual-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0) 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
}

/* Responsive */
@media (max-width: 1024px) {
    .ai-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ai-visual {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .ai-section {
        padding: 4rem 0;
    }
    
    .ai-text h2 {
        font-size: 2rem;
    }
    
    .ai-visual-graph {
        height: 150px;
    }
    
    .graph-line {
        width: 18px;
    }
}


/* Horizontal Grid Process Section */

.process-section-horizontal {
    background: #f8fafd;
    padding: 3rem 0;
}

.process-section-horizontal .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-section-horizontal .section-header h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.process-section-horizontal .section-header p {
    color: #555;
    font-size: 1.125rem;
}

.process-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    justify-items: center;
    align-items: stretch;
}

.process-card {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 35px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(62,84,255,0.2);
}

.step-badge {
    width: 50px;
    height: 50px;
    background: #1e3a8a;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.process-card:hover .step-badge {
    transform: scale(1.2);
}

.process-card h3 {
    color: #1e3a8a;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.process-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Layout */
@media (max-width: 1200px) {
    .process-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .process-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .process-card {
        padding: 1.5rem;
    }
}


/* ===================================
   ABOUT PAGE - REDESIGNED 2025
   =================================== */

/* About Page Hero Section */
.about-page .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/Videos/bg-industry.mp4') center/cover no-repeat;
    color: white;
    overflow: hidden;
}

.about-page .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.about-page .hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 2rem;
}

.about-page .hero-title {
    font-size: 15rem;
    font-weight: 900;
    margin: 0;
    color: #FACC15;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    letter-spacing: -0.05em;
    animation: fadeInUp 1s ease-out;
}


.about-page .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.about-page .scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.about-page .scroll-indicator .arrow {
    display: block;
    width: 20px;
    height: 20px;
    margin: 10px auto 0;
    border-right: 2px solid #FACC15;
    border-bottom: 2px solid #FACC15;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .about-page .hero-title {
        font-size: 7rem;
    }
}

@media (max-width: 768px) {
    .about-page .hero-title {
        font-size: 6rem;
    }
}

@media (max-width: 480px) {
    .about-page .hero-title {
        font-size: 5rem;
    }
}

/* About Hero Section */

.about-hero {
    position: relative;
    padding: 2rem 0;
    background: #f8fafc;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url("../assets/Img/about-oil.jpg");
    background-size: cover;
    background-position: center;
    z-index: 1;
}

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

.about-hero-content {
    max-width: 50%;
    padding-right: 4rem;
}

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

.about-hero-text h1 {
    font-size: 3rem;
    color: #1e3a8a;
    margin: 1.5rem 0;
    line-height: 1.2;
}

.about-hero-text p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-hero-text .btn {
    margin-top: 1rem;
}

.about-hero-visual,
.hero-image {
    display: none;
}

@media (max-width: 1200px) {
    .about-hero-content {
        padding-right: 3rem;
    }
    
    .about-hero-text h1 {
        font-size: 2.75rem;
    }
}

@media (max-width: 1024px) {
    .about-hero {
        padding: 6rem 0;
    }
    
    .about-hero::after {
        width: 40%;
    }
    
    .about-hero-content {
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 5rem 0;
        min-height: auto;
    }
    
    .about-hero::after {
        width: 100%;
        opacity: 0.2;
    }
    
    .about-hero-content {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
    }
    
    .about-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-text .btn {
        margin: 1rem auto 0;
    }
}

.about-content {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to left, rgba(219, 234, 254, 0.3) 0%, rgba(219, 234, 254, 0.1) 50%, transparent 100%);
    pointer-events: none;
}

.about-content .container {
    position: relative;
    z-index: 1;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.125rem;
}

.about-image {
    position: relative;
}

.image-placeholder {
    background: var(--gradient);
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}


/* Mission Vision Section */

.mission-vision {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to left, rgba(219, 234, 254, 0.3) 0%, rgba(219, 234, 254, 0.1) 50%, transparent 100%);
    pointer-events: none;
}

.mission-vision .container {
    position: relative;
    z-index: 1;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: #ffffff;
    padding: 2rem;
    box-shadow: 0px 5px 35px #0000000d;
    text-align: center;
    transition: all 0.4s ease !important;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.mv-card:hover {
    background: #3E54FF !important;
}

.mv-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #3E54FF;
    transition: all 0.4s ease !important;
}

.mv-card:hover .mv-icon {
    color: #fff !important;
}

.mv-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e3a8a;
    transition: all 0.4s ease !important;
}

.mv-card:hover h3 {
    color: #fff !important;
}

.mv-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.125rem;
    transition: all 0.4s ease !important;
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.125rem;
    transition: all 0.4s ease;
}

.mv-card:hover p {
    color: #fff;
}


/* Core Values Section */

.values {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.values::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to left, rgba(219, 234, 254, 0.3) 0%, rgba(219, 234, 254, 0.1) 50%, transparent 100%);
    pointer-events: none;
}

.values .container {
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #ffffff;
    padding: 2rem;
    box-shadow: 0px 5px 35px #0000000d;
    transition: all 0.4s ease;
    cursor: pointer;
}

.value-card:hover {
    background: #3E54FF;
}

.value-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
    transition: all 0.4s ease;
}

.value-card:hover h4 {
    color: #fff;
}

.value-card p {
    color: #555;
    line-height: 1.8;
    transition: all 0.4s ease;
}

.value-card:hover p {
    color: #fff;
}


/* Expertise Section */

.expertise {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.expertise::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to left,
        rgba(219, 234, 254, 0.3) 0%,
        rgba(219, 234, 254, 0.1) 50%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 0;
}

.expertise .container {
    position: relative;
    z-index: 2;
}

.expertise-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.expertise-item {
    background: #ffffff;
    padding: 2rem;
    box-shadow: 0px 5px 35px #0000000d;
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.expertise-item:hover {
    background: #3E54FF;
}

.expertise-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
    transition: all 0.4s ease;
}

.expertise-item:hover h3 {
    color: #fff;
}

.expertise-item p {
    color: #555;
    line-height: 1.8;
    transition: all 0.4s ease;
    margin-top: auto;
}

.expertise-item:hover p {
    color: #fff;
}



/* ===================================
   TECHNOLOGIES PAGE - REDESIGNED 2025
   =================================== */

.technologies-page .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/Videos/bg-industry.mp4') center/cover no-repeat;
    color: white;
    overflow: hidden;
}

.technologies-page .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.technologies-page .hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.technologies-page .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 2rem;
}

.technologies-page .hero-title {
    font-size: 10rem;
    font-weight: 900;
    margin: 0;
    color: #FACC15;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    letter-spacing: -0.05em;
    animation: fadeInUp 1s ease-out;
}


.technologies-page .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.technologies-page .scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.technologies-page .scroll-indicator .arrow {
    display: block;
    width: 20px;
    height: 20px;
    margin: 10px auto 0;
    border-right: 2px solid #FACC15;
    border-bottom: 2px solid #FACC15;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .technologies-page .hero-title {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    .technologies-page .hero-title {
        font-size: 5rem;
    }
}

@media (max-width: 480px) {
    .technologies-page .hero-title {
        font-size: 3rem;
    }
}

.technologies-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.technologies-section::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to left, rgba(219, 234, 254, 0.3) 0%, rgba(219, 234, 254, 0.1) 50%, transparent 100%);
    pointer-events: none;
}

.technologies-section .container {
    position: relative;
    z-index: 1;
}

.tech-category {
    margin-bottom: 4rem;
}

.tech-category-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tech-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 35px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tech-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(62, 84, 255, 0.2);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(62,84,255,0.05) 0%, rgba(62,84,255,0.1) 100%);
}

.tech-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(62,84,255,0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: all 0.5s ease;
    border-radius: 50%;
    z-index: 0;
}

.tech-card:hover::before {
    transform: scale(1);
}

.tech-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.tech-icon {
    font-size: 2.5rem;
}

.tech-header h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.tech-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.tech-features {
    list-style: none;
    position: relative;
    z-index: 1;
}

.tech-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--text-light);
    position: relative;
}

.tech-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.tech-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 168, 232, 0.05) 100%);
}

.tech-card.featured:hover {
    background: linear-gradient(135deg, rgba(62,84,255,0.1) 0%, rgba(62,84,255,0.2) 100%);
}


/* Tech Benefits Section */

.tech-benefits {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.tech-benefits::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to left,
        rgba(219, 234, 254, 0.3) 0%,
        rgba(219, 234, 254, 0.1) 50%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 0;
}

.tech-benefits .container {
    position: relative;
    z-index: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.benefit-card {
    background: #ffffff;
    padding: 2rem;
    box-shadow: 0px 5px 35px #0000000d;
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;           
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    background: #3E54FF;
}

.benefit-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
    transition: all 0.4s ease;
}

.benefit-card:hover h4 {
    color: #fff;
}

.benefit-card p {
    color: #555;
    line-height: 1.8;
    transition: all 0.4s ease;
    margin-top: auto;    
}

.benefit-card:hover p {
    color: #fff;
}


/* ===================================
   CONTACT SECTION - REDESIGNED 2025
   =================================== */

/* Contact Hero Section */

.contact-page .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/Videos/bg-industry.mp4') center/cover no-repeat;
    color: white;
    overflow: hidden;
}

.contact-page .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.contact-page .hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;  
}

.contact-page .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 2rem;
}

.contact-page .hero-title {
    font-size: 10rem;
    font-weight: 900;
    margin: 0;
    color: #FACC15; /* Yellow color */
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    letter-spacing: -0.05em;
    animation: fadeInUp 1s ease-out;
}


.contact-page .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.contact-page .scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.contact-page .scroll-indicator .arrow {
    display: block;
    width: 20px;
    height: 20px;
    margin: 10px auto 0;
    border-right: 2px solid #FACC15;
    border-bottom: 2px solid #FACC15;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .contact-page .hero-title {
        font-size: 7rem;
    }
}

@media (max-width: 768px) {
    .contact-page .hero-title {
        font-size: 6rem;
    }
}

@media (max-width: 480px) {
    .contact-page .hero-title {
        font-size: 5rem;
    }
}

.contact-section {
    padding: 6rem 2rem;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    z-index: 1;
    border-bottom-left-radius: 50% 10%;
    border-bottom-right-radius: 50% 10%;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-info {
    padding: 3.5rem;
    background: #1e3a8a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.contact-info h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
    line-height: 1.7;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: #3b82f6;
    transform: translateY(-3px);
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #fff;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3b82f6;
    transform: translateY(-3px);
}

.contact-form {
    padding: 3.5rem;
    background: #fff;
}

.contact-form h3 {
    font-size: 1.75rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-col {
    display: flex;
    flex-direction: column;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
    font-size: 0.9rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #f9fafb;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    background-color: #fff;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 16px;
    padding-right: 2.5rem;
}

.form-submit {
    margin-top: 2rem;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .contact-info {
        border-radius: 16px 16px 0 0;
    }
    
    .contact-form {
        border-radius: 0 0 16px 16px;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-section {
        padding: 4rem 1rem;
    }
    
    .contact-info h2 {
        font-size: 1.75rem;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }
.contact-item:nth-child(4) { animation-delay: 0.4s; }

.contact-form {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}



/* ----------------------------------------------------
   POWER & TRADING PAGE
---------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #f8fafd;
  color: #1b1f24;
  line-height: 1.55;
}

h1, h2, h3 {
  font-weight: 700;
  color: #1e3a8a;
}

p {
  color: #4b5563;
}

section {
  padding: 60px 20px;
  background: #f8fafd;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

.container {
  max-width: 1300px;
  margin: auto;
}


/* HERO SECTION */

.hero {
  background: linear-gradient(135deg, #f3f6ff, #ffffff);
  padding: 100px 0;
  
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 350px;
}

.hero h1 {
  
  margin: 20px 0;
  line-height: 1.2;
}

.hero h1 span {
  color: #0a74ff;
}

.hero p {
  font-size: 19px;
  max-width: 90%;
}

.hero-badge {
  background: #0a74ff;
  color: #fff;
  padding: 7px 18px;
  font-size: 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
}

.hero-buttons {
  margin-top: 25px;
}

.btn-main {
  background: #0a74ff;
  color: #fff;
  padding: 14px 34px;
  border-radius: 10px;
  font-size: 17px;
  text-decoration: none;
  margin-right: 12px;
  display: inline-block;
  transition: 0.25s ease-in-out;
}

.btn-main:hover {
  background: #005bd1;
  transform: translateY(-2px);
}

.btn-outline {
  padding: 14px 34px;
  border-radius: 10px;
  font-size: 17px;
  text-decoration: none;
  border: 2px solid #0a74ff;
  color: #0a74ff;
  transition: 0.25s ease-in-out;
}

.btn-outline:hover {
  background: #0a74ff;
  color: #fff;
  transform: translateY(-2px);
}

.hero-img {
  flex: 1;
  min-width: 350px;
}


/* CARD SECTION (VALUE PROP) */

.card-section-container {
  text-align: center;
  background-color: e5e7eb;
}

.card-main-heading {
  font-size: 38px;
  margin-bottom: 12px;
}

.card-sub-text {
  margin-bottom: 50px;
  color: #6b7280;
  font-size: 17px;
}

.card-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  max-width: 1150px;
  margin: auto;
}

.pro-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  text-align: left;
  border: 1px solid #e5e7eb;
}

.pro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.pro-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}


/*  KPI SECTION (TRADING PAGE)  */

.value-section {
  text-align: center;
}

.metrics-heading {
  font-size: 38px;
  margin-bottom: 40px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  max-width: 1150px;
  margin: auto;
}

.value-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  border: 1px solid #e5e7eb;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
  
}

.value-card h3 {
  margin-bottom: 13px;
  font-size: 21px;
}


/*  DONUT CHARTS */

.chart-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1200px;
  margin: auto;
}

.chart-card {
  background: #fff;
  padding: 36px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.chart-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

.donut-small {
  width: 130px;
  height: 130px;
  margin: auto;
  border-radius: 50%;
  background:
    radial-gradient(#fff 62%, transparent 63%),
    conic-gradient(var(--c) calc(var(--p)*1%), #d1d5db 0);
  position: relative;
}

.donut-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 22px;
  color: #1e3a8a;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 14px;
  color: #1e3a8a;
}

.section-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 50px;
  font-size: 17px;
}

@media (max-width: 992px) {

  .hero-inner {
    text-align: center;
  }

  .hero-img {
    order: -1;
  }

  .hero-text p {
    max-width: 100%;
  }
}

@media (max-width: 600px) {

  .hero h1 {
    font-size: 34px;
  }

  .donut, .donut-small {
    width: 110px;
    height: 110px;
  }

  section {
    padding: 60px 16px;
  }
}
 /* =========================
   REPORT SECTION (TOP BLOCK)
   ========================= */
.report-section {
    padding: 6rem 0;
    color: #000;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 50%, #f9fafb 100%);
}

.report-section .container {
    position: relative;
    z-index: 2;
}

.report-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

/* Tag */
.report-text .section-tag {
    display: inline-block;
    background: rgba(30, 58, 138, 0.08);
    color: #1e3a8a;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Heading & Body */
.report-text h2 {
    font-size: clamp(2.1rem, 2.5vw, 2.7rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.report-text p {
    font-size: 1.05rem;
    color: #111827;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Accent line under heading */
.gradient-line {
    width: 80px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6, #22c55e);
    margin-bottom: 1.75rem;
}

/* Features list */
.report-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.report-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.report-icon {
    width: 48px;
    height: 48px;
    background: #0f172a;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.25),
        0 4px 8px rgba(15, 23, 42, 0.18);
    flex-shrink: 0;
}

.report-icon svg {
    width: 24px;
    height: 24px;
    color: #60a5fa;
}

.report-feature-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.3rem;
}

.report-feature-text p {
    font-size: 0.98rem;
    color: #374151;
    margin-bottom: 0;
    line-height: 1.6;
}

/* =========================
   REPORT VISUAL (RIGHT SIDE)
   ========================= */
.report-visual {
    position: relative;
}

.report-visual-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: radial-gradient(circle at top left, #1e3a8a 0%, #020617 45%, #000 100%);
    box-shadow:
        0 30px 70px rgba(15, 23, 42, 0.55),
        0 10px 25px rgba(15, 23, 42, 0.35);
    padding: 0.75rem;
}

.report-visual img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
}

/* Soft glow behind visual */
.report-visual-glow {
    position: absolute;
    inset: auto auto -25px 50%;
    width: 220px;
    height: 220px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35), transparent 60%);
    filter: blur(6px);
    pointer-events: none;
    z-index: -1;
}

/* =========================
   PREMIUM REPORTS GRID
   ========================= */
.premium-reports {
    padding: 5rem 0 4rem;
    background: #ffffff;
}

.premium-reports .section-header {
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
}

.premium-reports .section-header p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
}

/* Grid for 10 report cards */
.report-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

/* Card */
.report-card {
    background: #f9fafb;
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow:
        0 16px 30px rgba(15, 23, 42, 0.08),
        0 2px 4px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.report-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: #3b82f6;
    box-shadow:
        0 20px 40px rgba(15, 23, 42, 0.15),
        0 3px 6px rgba(15, 23, 42, 0.18);
}

/* Small icon at top */
.report-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
}

.report-card-icon svg {
    width: 20px;
    height: 20px;
    color: #1d4ed8;
}

.report-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.15rem;
}

.report-card-desc {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.6;
}

/* Bullet list in card */
.report-card-list {
    margin: 0.35rem 0 0.5rem;
    padding-left: 1.1rem;
    list-style: disc;
}

.report-card-list li {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 0.25rem;
}

/* Trader example text */
.report-card-example {
    font-size: 0.9rem;
    color: #111827;
    padding-top: 0.35rem;
    border-top: 1px dashed rgba(148, 163, 184, 0.7);
}

/* Footer note below grid */
.reports-footer-note {
    margin-top: 3rem;
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.reports-footer-note p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
}

/* =========================
   CTA SECTION
   ========================= */
.cta-section {
    padding: 4rem 0 5rem;
    background: radial-gradient(circle at top, #1e3a8a 0%, #020617 55%, #000 100%);
    color: #e5e7eb;
}

.cta-card {
    max-width: 980px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 2.25rem 2.5rem;
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.32), transparent 55%),
                rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.7),
        0 0 0 1px rgba(15, 23, 42, 0.9);
}

.cta-text h2 {
    font-size: clamp(1.7rem, 2vw, 2.1rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #f9fafb;
}

.cta-text p {
    font-size: 0.98rem;
    color: #e5e7eb;
    max-width: 520px;
    line-height: 1.7;
}

.cta-actions .button.button--yellow {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Ensure button text is darker on yellow bg */
.cta-actions .button.button--yellow span {
    color: #111827;
}

/* =========================
   RESPONSIVE LAYOUT
   ========================= */
@media (max-width: 992px) {
    .report-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .report-visual {
        order: -1;
    }

    .report-section {
        padding: 4rem 0;
    }

    .report-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-actions {
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .report-section {
        padding: 3.5rem 0;
    }

    .report-text h2 {
        font-size: 2rem;
    }

    .report-text p {
        font-size: 0.98rem;
    }

    .report-grid {
        grid-template-columns: 1fr;
    }

    .report-card {
        padding: 1.5rem 1.25rem;
    }

    .cta-card {
        padding: 1.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .report-section {
        padding: 3rem 0;
    }

    .gradient-line {
        width: 60px;
    }

    .report-content {
        gap: 2rem;
    }

    .cta-text h2 {
        font-size: 1.5rem;
    }
}
.cta-tagline {
    margin-top: 1rem;
    font-size: 1rem;
    color: #f1f5f9;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: wrap;
}

.cta-tag-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #f8fafc;
    letter-spacing: 0.3px;
}

.cta-tag-item svg {
    stroke: #facc15; /* yellow highlight */
}
.etrm-text {
    color: #facc15;
    text-transform: capitalize;
    text-align: justify;
}

.h-10 {
    height: 5.5rem !important;
}

@media (max-width: 768px) {
    .h-10 {
        height: 4rem !important;
    }   
}
@media (max-width: 640px) {

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    margin-bottom: 0;
    text-align: center;
    padding: 1.5rem;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.4rem;
    line-height: 1.15;
  }

  .hero-title-home {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .scroll-indicator {
    display: none;
  }
}
@media (min-width: 641px) and (max-width: 768px) {

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    margin-bottom: 0;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-title-home {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-buttons {
    justify-content: center;
  }
}
@media (min-width: 1025px) and (max-width: 1440px) {

  .hero-title {
    font-size: 5rem;
  }

  .hero-title-home {
    font-size: 2.8rem;
  }
}

@media (min-width: 1441px) {

  .hero-title {
    font-size: 6rem;
  }

  .hero-title-home {
    font-size: 3rem;
  }
}
/* Hide ETRM Capabilities on small mobile devices */
@media (max-width: 640px) {
  .etrm-intro  {
    display: none !important;
  }
}
/* Tablets */
@media (max-width: 1024px) {
.footer-brand p {
    margin: 0 auto;
    max-height: 100px;
  }
  .footer-grid {
    max-height: 300px;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 1000px){
.footer-brand  {
    margin: 0 auto;
    max-height: 100px;
  }
   .footer-grid{
    min-height: 400px;

   } 

}
@media (max-width: 800px){
    .footer-brand  {
    margin: 0 auto;
    max-height: 100px;
  }
   
   .footer-grid{
    min-height: 400px;

   } 

}
/* Mobile */
@media (max-width: 640px) {
  .footer {
    padding: 1rem 0 1.5rem;
  }
 
  .footer-grid {
    min-height: 500px;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
    max-height: 100px;
  }

  .footer-contact ul,
  .footer-links ul {
    align-items: center;
  }

  .footer-contact li,
  .footer-links li {
    justify-content: center;
  }
  .footer-brand {
    display: none;
  }
}
@media (max-width: 640px) {

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-content {
    margin-bottom: 0;
    text-align: center;
    padding: 1.25rem;
  }

  .hero-title-home {
    font-size: 1.6rem;
    line-height: 1.25;
  }

  .hero-title-home svg {
    display: none; /* hide arrow on mobile */
  }

  .typewriter-line {
    display: block;
    margin-top: 0.5rem;
  }

  .hero-buttons {
    justify-content: center;
    margin-top: 1.5rem;
  }

  .scroll-indicator {
    display: none;
  }
}
@media (min-width: 641px) and (max-width: 768px) {

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

  .hero-title-home {
    font-size: 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {

  .hero {
    min-height: 90vh;
  }

  .hero-title-home {
    font-size: 2.4rem;
  }

  .hero-content {
    margin-bottom: 15%;
  }
}
@media (min-width: 1025px) {

  .hero-title-home {
    font-size: 3rem;
  }
}
