/*------------------------------------------------------------------
[Master Stylesheet]

Project:  Artelligence
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Header
3. Banner Section
4. About Us Section
5. Services Section
6. Choose us Section
7. Case study Section
8. Testimonials Section
9. Partner Section
10. FAQ's Section
11. Footer Section
*/

@import url('../../../css2');

:root {
    --primary: #1a237e;
    --primary-light: #534bae;
    --primary-dark: #000051;
    --secondary: #0d47a1;
    --accent: #2962ff;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --success: #2e7d32;
    --border: rgba(26, 35, 126, 0.1);
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-dark: rgba(0, 0, 0, 0.15);
    --e-global-color-primary: #8B6CAD;
    --e-global-color-secondary: #387e7a;
    --e-global-color-text: #000000;
    --e-global-color-accent: #2293aa;
    --e-global-color-white: #ffffff;
    --e-global-color-very-dark-grayish-blue:#3e454a;
    --e-global-color-very-dark-blue:#042237;
    --e-global-color-dark-blue:#052b45;
    --e-global-color-very-blue:#03263e;
    --e-global-color-very-dark-mostly-black-blue:#02162d;
    --e-global-color-dark-cyan:#2397ae;
    --e-global-color-light-black:#2e2e2e;
    --e-gradient-1:#6F4F91;
    --e-gradient-2:#36e0f7;
}

html, body{
    font-family: 'Ubuntu', sans-serif;
    margin:0;
    padding:0;
    width:100%;
    overflow-x:hidden;
    
}

.h1, h1 {
    font-size: 66px;
    font-weight: 700;
}
.h2, h2 {
    font-size: 42px;
    line-height: 40px;
    font-weight: 700;
    color: var(--e-global-color-primary);
}
.h3, h3{
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    color: var(--e-global-color-primary);
}
.h4, h4 {
    font-size: 22px;
    line-height: 20px;
    font-weight: 700;
    color: var(--e-global-color-primary);
}
.h5, h5 {
    font-size: 17px;
    line-height: 17px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--e-global-color-secondary);
}
.h6, h6 {
    font-size: 22px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-primary);
}
p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
    color: var(--e-global-color-text);
}
.text-size-18 {
    font-size: 18px;
    line-height: 30px;
}
.text-size-16 {
    font-size: 16px;
    line-height: 22px;
}

/* Home Page Style */

.banner-carousel {
  width: 100%;
  position: relative;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.carousel-wrapper {
  position: relative;
  height: 600px;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}

/* Content */
.carousel-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 500px;
}

.carousel-content h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.carousel-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-explore {
  display: inline-block;
  padding: 14px 32px;
  background: #ff7a18;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-explore:hover {
  background: #ff9a3c;
  transform: translateY(-2px);
}

/*Coding Section*/
.coding-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #6cc5bd, #eef3ff);
  font-family: 'Inter', sans-serif;
}
.section-header h2 {
  line-height:1.2;
  font-size: 40px;
  font-weight: 700;
  color: #1e293b;
}

.section-header p {
  font-size: 16px;
  color: #5b1767;
  font-weight: 600;
  margin: 10px auto 0;
}

.coding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.coding-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.coding-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12);
}

.card-image {
  position: relative;
  background: #f1f5ff;
  text-align: left;
}

.card-image img {
  max-width: 220px;
  z-index: 2;
  position: relative;
}

.floating-circle {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.floating-circle.blue {
  background: #3b82f6;
  top: 10%;
  left: 10%;
}

.floating-circle.purple {
  background: #8b5cf6;
  bottom: 0%;
  left: 5%;
}

.card-content {
  padding: 35px;
}

.card-content h3 {
  font-size: 26px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.card-content p {
  font-size: 15px;
  color: #475569;
  margin-bottom: 18px;
  line-height: 1.6;
}

.card-content ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.card-content ul li {
  font-size: 14px;
  color: #475569;
  margin-bottom: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 14px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
}

/* Floating Animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/*Robotics*/
.robotics-section {
  padding: 60px 0;
 
  color: #fff;
}

.section-header .section-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(59,130,246,0.15);
  color: #60a5fa;
  font-size: 14px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
}

.section-subtitle {
  max-width: 650px;
  margin: 10px auto 0;
  color: #cbd5f5;
}

.robotics-card {
  height: 100%;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  position: relative;
}

.robotics-card.active {
  background: linear-gradient(180deg, #2563eb, #1e40af);
}

.robotics-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.robot-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.robot-icon img {
  width: 50px;
  animation: floatIcon 3s ease-in-out infinite;
}

.robotics-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.robotics-card p {
  font-size: 15px;
  color: #ffffff;
}

.robotics-card ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.robotics-card ul li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #bfdbfe;
}

/* Floating Robots */
.floating-robot {
  position: absolute;
  width: 120px;
  height: 120px;
  background: url("https://cdn-icons-png.flaticon.com/512/4712/4712100.png") no-repeat center/contain;
  opacity: 0.08;
  animation: floatRobot 10s infinite ease-in-out;
}

.robot-1 {
  top: 15%;
  left: 5%;
}

.robot-2 {
  bottom: 10%;
  right: 6%;
  animation-delay: 4s;
}

/* Animations */
@keyframes floatIcon {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatRobot {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(8deg); }
}

/*Steam Labs*/
/* STEAM LAB SECTION */
.steam-lab-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f9ff, #e6f7f1);
  overflow: hidden;
}

.steam-content .section-tag {
  display: inline-block;
  background: #00a86b;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

.steam-content h2 {
    line-height:1.2;
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
}

.steam-content h2 span {
  color: #00a86b;
}

.steam-content p {
  margin: 20px 0;
  font-size: 17px;
  color: #475569;
  line-height: 1.7;
}

.steam-features {
  list-style: none;
  padding: 0;
}

.steam-features li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #334155;
}

.steam-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  background: #00a86b;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.steam-btn:hover {
  background: #008f5a;
  transform: translateY(-3px);
}

/* Visual & Animation */
.steam-visual {
  position: relative;
}

.main-img {
  max-width: 420px;
  animation: floatMain 4s ease-in-out infinite;
}

.float-icon {
  position: absolute;
  width: 60px;
  animation: floatIcons 5s infinite ease-in-out;
}

.icon-1 {
  top: 10%;
  left: 15%;
}

.icon-2 {
  bottom: 15%;
  right: 20%;
}

.icon-3 {
  top: 20%;
  right: 10%;
}

/* Animations */
@keyframes floatMain {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes floatIcons {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/*AI Language Lab*/
.language-lab {
  position: relative;
  padding: 50px 20px;
  background: radial-gradient(circle at top, #020617, #0f172a);
  color: #f8fafc;
  overflow: hidden;
}

.lab-container {
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* ===== TITLES ===== */
.lab-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(90deg, #6366f1, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lab-subtitle {
  text-align: center;
  max-width: 650px;
  margin: 16px auto 70px;
  font-size: 1.1rem;
  opacity: 0.85;
}

/* ===== GRID ===== */
.lab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* ===== CARD ===== */
.lab-card {
  padding: 42px 32px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform-style: preserve-3d;
  transition: box-shadow 0.4s ease;
}

.lab-card:hover {
  box-shadow: 0 45px 90px rgba(99, 102, 241, 0.35);
}

/* ===== ICON ===== */
.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #6366f1, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.4s ease;
}

.icon-box svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.lab-card:hover .icon-box {
  transform: rotate(8deg) scale(1.1);
}

/* ===== TEXT ===== */
.lab-card h3 {
  font-size: 1.7rem;
  margin-bottom: 14px;
}

.lab-card p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  color: white;
  line-height: 1.2;
}

/* ===== PARTICLES ===== */
.particles span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(45deg, #6366f1, #06b6d4);
  border-radius: 50%;
  animation: floatParticle 18s linear infinite;
  opacity: 0.4;
}

.particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.particles span:nth-child(2) { left: 30%; animation-delay: 3s; }
.particles span:nth-child(3) { left: 50%; animation-delay: 6s; }
.particles span:nth-child(4) { left: 70%; animation-delay: 9s; }
.particles span:nth-child(5) { left: 90%; animation-delay: 12s; }

@keyframes floatParticle {
  0% { bottom: -10%; transform: translateX(0); }
  100% { bottom: 110%; transform: translateX(-60px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .lab-title { font-size: 2.3rem; }
}

/*Interactive Flat Panel*/
/* SECTION BASE */
.ifp-aio-section {
    position: relative;
    padding: 90px 0;
    background: radial-gradient(circle at top, #0d6efd15, #ffffff);
    overflow: hidden;
}

/* FLOATING OBJECTS */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.35;
    animation: float 8s infinite ease-in-out;
}

.shape-1 {
    width: 180px;
    height: 180px;
    background: #0d6efd;
    top: 10%;
    left: -60px;
}

.shape-2 {
    width: 220px;
    height: 220px;
    background: #6610f2;
    bottom: 10%;
    right: -80px;
    animation-delay: 2s;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
    100% { transform: translateY(0); }
}

/* GLASS CARD */
.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.glass-card:hover {
    transform: translateY(-12px) scale(1.02);
}

/* ICON ANIMATION */
.animated-icon {
    font-size: 34px;
    color: #0d6efd;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* VERTICAL LINE */
.vertical-line {
    width: 3px;
    height: 80px;
    background: linear-gradient(to bottom, #0d6efd, transparent);
    margin: 20px auto;
    animation: growLine 2s infinite;
}

@keyframes growLine {
    0% { height: 40px; opacity: 0.5; }
    50% { height: 80px; opacity: 1; }
    100% { height: 40px; opacity: 0.5; }
}

/* SECTION */
.ebook-section {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(135deg, #ffffff, #f5f8ff);
    overflow: hidden;
}

/* FLOATING BOOK OBJECT */
.book-float {
    position: absolute;
    right: -80px;
    top: 20%;
    width: 260px;
    height: 340px;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    border-radius: 14px;
    transform: rotate(-6deg);
    opacity: 0.12;
    animation: bookFloat 6s infinite ease-in-out;
}

@keyframes bookFloat {
    0% { transform: translateY(0) rotate(-6deg); }
    50% { transform: translateY(-25px) rotate(-3deg); }
    100% { transform: translateY(0) rotate(-6deg); }
}

/* MAIN CARD */
.ebook-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 45px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.1);
    position: relative;
}

/* ICON BADGE */
.icon-badge {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* FEATURE LIST */
.ebook-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.ebook-feature i {
    color: #0d6efd;
    font-size: 22px;
}

/* MINI BOOKS */
.mini-book {
    background: #f1f5ff;
    border-radius: 16px;
    padding: 25px;
    height: 100%;
    transition: all 0.4s ease;
}

.mini-book:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* SECTION */
.brainhack-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8faff, #eef2ff);
}

/* HEADER */
.modern-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(13,110,253,0.1);
    color: #0d6efd;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* FEATURE CARD */
.modern-card {
    background: #d5def5;
    border-radius: 22px;
    padding: 28px;
    height: 100%;
    border: 1px solid #eef1f7;
    transition: all 0.35s ease;
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* ICON */
.modern-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
}

/* LARGE CARD */
.highlight-card {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
}

.highlight-card .modern-icon {
    background: rgba(255,255,255,0.2);
}

.lab-advanced {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.lab-advanced::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(79,140,255,.15), transparent 60%);
}

.lab-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 50px;
  box-shadow: 0 30px 80px rgba(0,0,0,.08);
  transition: transform .6s ease, box-shadow .6s ease;
}

.lab-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 50px 120px rgba(0,0,0,.15);
}

.lab-title {
  font-size: 2.3rem;
  font-weight: 800;
}

.lab-desc {
  color: #64748b;
  font-size: 1.05rem;
  margin: 20px 0;
}

.lab-points li {
  margin-bottom: 12px;
  font-weight: 500;
}

.glow-img {
  animation: floatGlow 5s ease-in-out infinite;
}

@keyframes floatGlow {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-25px); }
}

.banner-section-about{
    background-color:#2d0c32;
}

.hero-section{
  background-color:#2d0c32;  
}

.hero-section-coding{
    background-color: #1e2a78; /* fallback color (blue like your design) */
    background-image: url('assets/images/page-section/banner-book.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    height: 425px;
    padding: 80px 20px;

    display: flex;
    align-items: center;
}
@media (max-width: 768px) {
    .hero-section-coding {
        height: 125px;          /* reduce height */
        padding: 60px 15px 30px;
        
        background-position: center top; /* keep illustration visible */
        background-size: cover;        /* prevent image cutoff */
        margin-top:86px;
    }
}

.lab-cta-advanced {
  background: linear-gradient(135deg, #8a6bae, #7f63a6);
  color: #fff;
  padding: 30px 30px;
}

.lab-cta-advanced a {
  display: inline-block;
  padding: 14px 40px;
  background: #fff;
  color: var(--primary);
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .3s ease;
}

.lab-cta-advanced a:hover {
  transform: scale(1.08);
}

/* Tablet & Mobile */
@media (max-width: 768px) {
    body{
        margin:0 !important;
        padding:0 !important;
    }
    .lab-cta-advanced {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .lab-cta-advanced h3 {
        font-size: 20px;
    }

    .lab-cta-advanced p {
        font-size: 14px;
    }

    .lab-cta-advanced a {
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .page-divider {
        padding: 20px 15px;
    }

    .lab-cta-advanced h3 {
        font-size: 18px;
    }
}

/* Navigation */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 12px 18px;
  font-size: 28px;
  cursor: pointer;
  z-index: 5;
}

.nav.prev { left: 15px; }
.nav.next { right: 15px; }

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 5;
}

.carousel-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
}

.carousel-dots span.active {
  background: #ff7a18;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-wrapper {
    height: 520px;
  }

  .carousel-content h2 {
    font-size: 2rem;
  }

  .carousel-content p {
    font-size: 1rem;
  }

  .btn-explore {
    padding: 12px 26px;
  }
}

@media (max-width: 480px) {
  .carousel-content {
    left: 5%;
    right: 5%;
  }

  .carousel-content h2 {
    font-size: 1.6rem;
  }
}


/* Main navbar styles */
.navbar-collapse ul{
    align-items: center; 
    display: inherit; 
}

.navbar-nav .nav-item a{
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
    color: #ffffff !important;
    margin-top: -6px;
}

.header.scrolled .nav-link {
    color: #6c5897 !important;
}

.navbar-nav .nav-item.active .nav-link {
    color:#7f61a5 !important; 
    font-weight: bold;
    position: relative;
}

/* Dropdown active items */
.dropdown-item.active {
    background-color: #f8f9fa;
    color:#7f61a5 !important;
    font-weight: bold;
}

/* Hover effects */
.navbar-nav .nav-item a:hover{
    color: var(--e-global-color-secondary) !important;
    background-color: transparent;
}

.navbar-nav .active > a{
    color: var(--e-global-color-secondary) !important;
}

/* Let's Talk button styles */
.navbar-nav .nav-item .lets_talk{
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    padding: 4px 2px 4px 14px; 
    text-align: center;
    display: inline-block;
    border-radius: 30px 30px 30px 0;
    color: var(--e-global-color-white) !important;
    background-image: linear-gradient(to right, var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
}

/* Navbar structure */
.navbar-brand{
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar{
    position: relative;
    padding: 10px 0;
    z-index: 1;
}

.navbar-nav .nav-item .nav-link{
    font-weight:700;
}

.navbar-nav li{
    margin: 0 12px;
}

.navbar-nav li:first-child{
    margin-left: 0;
}

.navbar-nav li:last-child{
    margin-right: 0px;
    padding-right: 0;
    margin-left: 31px;
}

.navbar-nav .dropdown{
    margin: 0 15px 0 20px;
}

/* Dropdown item styles */
.navbar-nav .nav-item .dropdown-item{
    color: var(--e-global-color-black) !important;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-item .dropdown-item:hover{
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
    transition: all 0.3s ease-in-out;
    border-radius: 3px 3px 0 0;
}

/* Dropdown menu */
.navbar-nav .dropdown-menu {
    background-color: var(--e-global-color-white);
    position: absolute;
    left: -20px;
    top: 100%;
    padding: 0;
    border: none;
    box-shadow: 1px 1px 30px rgb(0 0 0 / 20%);
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
}

/* Pages dropdown */
.navbar-nav .drop-down-pages .active > a{
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
}

.navbar-collapse .drop-down-pages {
    text-align: left;
    margin-left: 0;
}

.navbar-nav .drop-down-pages li{
    margin: 0;
}

.navbar-nav .drop-down-pages .nav-item a {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
    padding: 12px 20px;
    margin-top: 0;
}

.navbar-expand-lg .drop-down-pages .nav-link {
    padding-left: 0;
}

.navbar-nav .drop-down-pages li:last-child{
    margin-left: 0;
}

/* ===================== */
/* DESKTOP HOVER EFFECTS */
/* ===================== */

@media (min-width: 992px) {
    /* Show dropdown on hover */
    .navbar-nav .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    /* Submenu positioning */
    .navbar-nav .dropdown-menu .dropdown-menu {
        left: 100%;
        top: 0;
        margin-top: -1px;
        margin-left: 0;
    }
    
    /* Show submenu on hover */
    .navbar-nav .dropdown-menu .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    
    /* Submenu indicator arrow */
    .navbar-nav .dropdown-toggle.dropdown-submenu::after {
        content: "\f105";
        font-family: 'FontAwesome';
        border: none;
        float: right;
        margin-left: 10px;
        margin-top: 5px;
    }
    
    /* Ensure proper z-index for dropdowns */
    .navbar-nav .dropdown {
        position: relative;
    }
    
    .navbar-nav .dropdown-menu {
        z-index: 1000;
    }
    
    .navbar-nav .dropdown-menu .dropdown-menu {
        z-index: 1001;
    }
    
    
}

/* ================= */
/* MOBILE STYLES */
/* ================= */

@media (max-width: 991px) {
    
    /* Ensure navbar collapse is properly styled */
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.95);
        padding: 15px;
    }
    
    /* All dropdown menus hidden by default */
    .navbar-nav .dropdown-menu {
        position: static !important;
        float: none !important;
        width: auto !important;
        margin-top: 0 !important;
        background-color: rgba(255, 255, 255, 0.1) !important;
        border: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none !important; /* Force hidden by default */
        padding-left: 15px;
    }
    
    /* Only show dropdown when it has the 'show' class */
    .navbar-nav .dropdown.show > .dropdown-menu {
        display: block !important;
    }
    
    /* Nested dropdown menus */
    .navbar-nav .dropdown-menu .dropdown-menu {
        left: 0 !important;
        top: auto !important;
        position: static !important;
        float: none !important;
        width: auto !important;
        margin-top: 0 !important;
        background-color: rgba(255, 255, 255, 0.05) !important;
        border: 0 !important;
        box-shadow: none !important;
        display: none !important; /* Force hidden by default */
        padding-left: 8px;
    }
    
    /* Show nested dropdown when parent has show class */
    .navbar-nav .dropdown-menu .dropdown.show > .dropdown-menu {
        display: block !important;
    }
    
    /* Dropdown toggle arrow for mobile */
    .navbar-nav .dropdown-toggle::after {
        content: "\f107";
        font-family: 'FontAwesome';
        border: none;
        float: right;
        margin-left: 10px;
        transition: transform 0.3s ease;
    }
    
    .navbar-nav .dropdown.show > .dropdown-toggle::after {
        transform: rotate(180deg);
    }
    
    .navbar-nav .dropdown-toggle.dropdown-submenu::after {
        content: "\f107";
        font-family: 'FontAwesome';
        border: none;
        float: right;
        margin-left: 10px;
    }
    
    /* Add padding for mobile dropdown items */
    .navbar-nav .dropdown-item {
        padding: 10px 20px;
        color: var(--e-global-color-white) !important;
    }
    
    .navbar-nav .dropdown-menu .dropdown-item {
        padding-left: 30px;
    }
    
    /* Mobile nav items spacing */
    .navbar-nav li {
        margin: 5px 0;
    }
}
/* Add to your existing CSS file */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
}

.header.scrolled {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

/* Adjust banner section to account for fixed header */
.banner-section {
    padding: 200px 266px 290px; /* Increased top padding */
}
.banner-section{
    position: relative;
    padding: 152px 266px 290px;
    overflow: hidden;
}
.banner-section .banner_content h1{
    margin-bottom: 13px;
    padding-right: 32px;
}
.banner-section .banner_content p{
    padding-right: 160px;
    margin-bottom: 27px;
}
.banner-section .banner_content .lets_talk{
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    padding: 4px 2px 4px 42px; 
    text-align: center;
    display: inline-block;
    border-radius: 30px 30px 30px 0;
    color: var(--e-global-color-white) !important;
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
}
.banner-section .banner_content .lets_talk:hover{
    color: var(--e-global-color-white);
    background-image: linear-gradient(to right, #052b45 0%, #052b45 51%, #052b45 100%);
}
.banner-section .banner_content .circle {
    background: var(--e-global-color-white);
    border-radius: 100px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0 3px 0 12px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.banner-section .banner_content .lets_talk:hover .circle{
    background-color: var(--e-global-color-very-dark-blue);
}
.banner-section .banner_content .lets_talk:hover .circle:before{
    color: var(--e-global-color-white);
}
.banner-section .banner_content .circle:before {
    font-size: 18px;
    padding-top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-dark-blue);
}
.banner-section .banner_content .button1{
    margin-right: 10px;
}
.banner-section .banner_content .banner-button{
    position: relative;
    z-index: 1;
}
.banner-section .banner-sideshape2{
    position: absolute;
    left: -2px;
    bottom: -20px;
    z-index: 0;
}
.banner-section .banner_wrapper{
    position: relative;
}
.banner-section .banner_wrapper .banner-image{
    position: absolute;
    top: -116px;
    left: -210px;
}

/* About us */

.about-section{
    padding: 160px 0 172px;
}
.about-section .about_wrapper{
    position: relative;
}
.about-section .about_wrapper .about-image1{
    position: absolute;
    left: -30px;
    top: -30px;
}
.about-section .about_wrapper .about-image2{
    position: absolute;
    right: -22px;
    top: 322px;
}
.about-section .about_content{
    padding-left: 55px;
}
.about-section .about_content h2{
    margin: 0 0px 10px 0;
}
.about-section .about_content p{
    margin: 0 -10px 16px 0;
}
.about-section .about_content .about-lowercontent .image{
    float: left;
    padding-top: 8px;
}
.about-section .about_content .about-lowercontent .content {
    padding-left: 83px;
}
.about-section .about_content .about-lowercontent h4{
    margin-bottom: 3px;
}
.about-section .about_content .about-lowercontent p{
    margin-bottom: 14px;
}
.about-section .about_content .about-lowercontent .text{
    margin-bottom: 35px;
}
.about-section .about_content .read_more{
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    padding: 4px 2px 4px 15px; 
    text-align: center;
    display: inline-block;
    border-radius: 30px 30px 30px 0;
    color: var(--e-global-color-white) !important;
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
}
.about-section .about_content .read_more:hover{
    color: var(--e-global-color-white);
    background-image: linear-gradient(to right, #052b45 0%, #052b45 51%, #052b45 100%);
}
.about-section .about_content .circle {
    background: var(--e-global-color-white);
    border-radius: 100px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    margin: 0 3px 0 12px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.about-section .about_content .circle:before {
    font-size: 18px;
    padding-top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-dark-blue);
}

/* Services */

.service-section{
    background-color: #eafcfe;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
}
.service-section .service-image{
    position: absolute;
    left: -106px;
    top: 26px;
}
.service-section .service_content{
    padding-top: 60px;
}
.service-section .service_content h2{
    padding-right: 86px;
    margin-bottom: 15px;
}
.service-section .service_content p{
    padding-right: 30px;
    margin-bottom: 35px;
}
.service-section .service_content .read_more{
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    padding: 4px 2px 4px 42px; 
    text-align: center;
    display: inline-block;
    border-radius: 30px 30px 30px 0;
    color: var(--e-global-color-white) !important;
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
}
.service-section .service_content .read_more:hover{
    color: var(--e-global-color-white);
    background-image: linear-gradient(to right, #052b45 0%, #052b45 51%, #052b45 100%);
}
.service-section .service_content .circle {
    background: var(--e-global-color-white);
    border-radius: 100px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0 3px 0 12px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.service-section .service_content .circle:before {
    font-size: 18px;
    padding-top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-dark-blue);
}
.service-section .service_contentbox .service-box{
    width:100%;
    background: var(--e-global-color-white);
    border-radius: 30px;
    padding: 35px 15px;
    text-align: center;
    margin-bottom: 10px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid #249cb3;
}
.service-section .service_contentbox .service-box:hover{
    background-image: linear-gradient(to right, #082e45 0%, #17677e 51%, #249cb3 100%);
    border-bottom: 2px solid #249cb3;
    transform: translateY(-5px);
}
.service-section .service_contentbox .service-box:hover h4{
    color: var(--e-global-color-white);
}
.service-section .service_contentbox .service-box:hover ul li{
    color: var(--e-global-color-white);
}
.service-section .service_contentbox .service-box:hover p{
    color: var(--e-global-color-white);
}
.service-section .service_contentbox .service-box figure{
    background: #eafcfe;
    border-radius: 100px;
    height: 120px;
    width: 120px;
    line-height: 120px;
    text-align: center;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.service-section .service_contentbox .service-box figure:hover{
    transform: translateY(-5px);
}
.service-section .service_contentbox .service-box .read_more{
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    font-family: 'Manrope', sans-serif;
    color: var(--e-global-color-secondary);
    text-transform: uppercase;
}
.service-section .service_contentbox .box-top{
    padding-top: 30px;
}

/*Feature*/
.feature-box {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 22px 26px;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 10;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(98, 195, 188, 0.15);
  color: var(--highlight-mint);
  border: 1px solid rgba(98, 195, 188, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 20px;
}

/* Center image block */
.center-image-block {
  width: 300px;
  height: 340px;
  position: relative;
  margin: auto;
}

.center-image-block img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(139, 109, 174, 0.5));
}

/* Arrow connectors */
.connector {
  position: absolute;
  width: 120px;
  height: 2px;
  background: var(--highlight-mint);
}

.arrow-head {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--highlight-mint);
  position: absolute;
  right: -10px;
  top: -4px;
}

/* Left arrow lines */
.line-left-1 {
  top: 50px;
  left: calc(50% - 250px);
}
.line-left-2 {
  top: 150px;
  left: calc(50% - 250px);
}
.line-left-3 {
  top: 250px;
  left: calc(50% - 250px);
}

/* Right arrow lines */
.line-right-1 {
  top: 50px;
  right: calc(50% - 250px);
}
.line-right-2 {
  top: 150px;
  right: calc(50% - 250px);
}
.line-right-3 {
  top: 250px;
  right: calc(50% - 250px);
}
.line-right-4 {
  top: 350px;
  right: calc(50% - 250px);
}

.line-right-1 .arrow-head {
  transform: rotate(180deg);
}
.line-right-2 .arrow-head {
  transform: rotate(180deg);
}
.line-right-3 .arrow-head {
  transform: rotate(180deg);
}
.line-right-4 .arrow-head {
  transform: rotate(180deg);
}

.logo-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}
        
.section-wrapper {
  position: relative;
  margin-top: 60px;
  margin-bottom: 60px;
}

.product-section {
  background : white;
  border-radius : 12px;
  padding : 30px;
  margin-bottom : 30px;
  box-shadow : 0 5px 15px var(--shadow);
  border : 1px solid var(--border);
}
.product-section .section-title {
  font-size : 24px;
  color : var(--primary);
  margin-bottom : 25px;
  padding-bottom : 15px;
  border-bottom : 2px solid var(--gray-light);
  display : flex;
  align-items : center;
  gap : 10px;
}
.section-title i {
  color : var(--accent);
}
.category-container {
  margin-bottom : 40px;
}
.category-title {
  display : flex;
  align-items : center;
  gap : 12px;
  margin-bottom : 20px;
  padding-bottom : 10px;
  border-bottom : 1px solid var(--gray-light);
}
.category-title .category-icon i {
  width : 50px;
  height : 50px;
  background : linear-gradient(135deg, var(--accent), var(--primary-light));
  border-radius : 10px;
  display : flex;
  align-items : center;
  justify-content : center;
  color : white;
  font-size : 22px;
}
.category-title  h3 {
  font-size : 22px;
  color : var(--primary);
  flex-grow : 1;
}
.category-subtitle {
  color : var(--gray);
  font-size : 15px;
}
.product-grid {
  display : grid;
  grid-template-columns : repeat(auto-fit, minmax(280px, 1fr));
  gap : 25px;
}
.product-card {
  border : 1px solid var(--border);
  border-radius : 10px;
  padding : 25px;
  transition : all 0.3s ease;
  position : relative;
  background : white;
}
  .product-grid :hover {
  transform : translateY(-5px);
  box-shadow : 0 10px 20px var(--shadow);
  border-color : var(--accent);
}
.product-card.featured {
  border-color : var(--accent);
  box-shadow : 0 5px 15px rgba(41, 98, 255, 0.1);
}
.popular-badge {
  position : absolute;
  top : -12px;
  right : 20px;
  background : linear-gradient(90deg, #ff6b6b, #ff8e53);
  color : white;
  padding : 6px 15px;
  border-radius : 20px;
  font-size : 12px;
  font-weight : 600;
  letter-spacing : 0.5px;
  box-shadow : 0 4px 8px rgba(255, 107, 107, 0.3);
}
.product-header {
  margin-bottom : 20px;
}
.product-model {
  font-size : 24px;
  font-weight : 700;
  color : var(--primary);
  margin-bottom : 5px;
}
.product-desc {
  color : var(--gray);
  font-size : 14px;
}
.product-specs {
  margin-bottom : 25px;
}
.spec-item {
  display : flex;
  justify-content : space-between;
  padding : 8px 0;
  border-bottom : 1px solid var(--gray-light);
}
.spec-label {
  color : var(--gray);
  font-weight : 500;
}
.spec-value {
  color : var(--dark);
  font-weight : 600;
}
.price-container {
  text-align : center;
  padding-top : 15px;
  border-top : 1px solid var(--gray-light);
}
.price {
  font-size : 32px;
  font-weight : 800;
  color : var(--primary);
  margin-bottom : 5px;
}
.price-note {
  color : var(--gray);
  font-size : 14px;
  margin-bottom : 15px;
}
.warranty-badge {
  display : inline-block;
  background : rgba(46, 125, 50, 0.1);
  color : var(--success);
  padding : 8px 16px;
  border-radius : 20px;
  font-size : 13px;
  font-weight : 600;
}
.terms-section {
  background : white;
  border-radius : 12px;
  padding : 30px;
  margin-bottom : 30px;
  box-shadow : 0 5px 15px var(--shadow);
  border : 1px solid var(--border);
}
.terms-grid {
  display : grid;
  grid-template-columns : repeat(auto-fit, minmax(300px, 1fr));
  gap : 20px;
  margin-top : 20px;
}
.term-card {
  border : 1px solid var(--border);
  border-radius : 8px;
  padding : 20px;
  background : white;
  transition : all 0.3s ease;
}
  .term-card : hover {
  border-color : var(--accent);
  background : rgba(41, 98, 255, 0.02);
}
.term-header {
  display : flex;
  align-items : center;
  gap : 12px;
  margin-bottom : 15px;
}
.term-icon {
  width : 40px;
  height : 40px;
  background : linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius : 8px;
  display : flex;
  align-items : center;
  justify-content : center;
  color : white;
  font-size : 18px;
}
.term-title {
  font-size : 16px;
  font-weight : 600;
  color : var(--primary);
}
.term-content p {
  color : var(--dark);
  font-size : 14px;
  line-height : 1.6;
}
.term-note {
  color : var(--gray);
  font-size : 13px;
  font-style : italic;
  margin-top : 10px;
}
.proposal-footer {
  text-align : center;
  padding : 25px;
  color : var(--gray);
  font-size : 14px;
  border-top : 1px solid var(--gray-light);
  margin-top : 20px;
}
.contact-info {
  display : flex;
  justify-content : center;
  gap : 30px;
  margin-top : 15px;
}
.contact-item {
  display : flex;
  align-items : center;
  gap : 8px;
  color : var(--primary);
}


@media (min-width: 1500px) {
    .hero-section-coding{
        background-repeat: no-repeat;
        background-position: top;
        background-size: cover;
        height:499px;
        padding:80px 10px 20px;
    }
    
}
@media (min-width: 1600px) {
    .hero-section-coding{
        background-repeat: no-repeat;
        background-position: top;
        background-size: cover;
        height:600px;
        padding:80px 10px 20px;
    }
    
}
  @media (max-width : 992px) {
  .product-grid{grid-template-columns : repeat(2, 1fr);
}
  }@media (max-width : 768px) {
  .company-brand{flex-direction : column;
  align-items : flex-start;
  gap : 20px;
}
.product-grid {
  grid-template-columns : 1fr;
}
.contact-info {
  flex-direction : column;
  align-items : center;
  gap : 15px;
}
.proposal-header {
  padding : 30px 20px;
}
.product-section, .terms-section {
  padding : 20px;
}
  }@media (max-width : 480px) {
  .container{padding : 10px;
}
.company-name h1 {
  font-size : 26px;
}
.proposal-title h2 {
  font-size : 22px;
}
.section-title {
  font-size : 20px;
}
.category-title h3 {
  font-size : 19px;
}
.price {
  font-size : 28px;
}
}


.branch-card {
  background : white;
  border-radius : 12px;
  overflow : hidden;
  box-shadow : 0 10px 30px rgba(0, 0, 0, 0.08);
  transition : all 0.3s ease;
  position : relative;
}
  .branch-card : hover {
  transform : translateY(-10px);
  box-shadow : 0 15px 35px rgba(0, 0, 0, 0.15);
}
.branch-header {
  background : linear-gradient(135deg, #2c3e50, #3498db);
  color : white;
  padding : 20px;
  display : flex;
  align-items : center;
  gap : 15px;
}
.branch-icon {
  width : 50px;
  height : 50px;
  background : rgba(255, 255, 255, 0.2);
  border-radius : 50%;
  display : flex;
  align-items : center;
  justify-content : center;
  font-size : 1.5rem;
}
.branch-title {
  font-size : 1.5rem;
  font-weight : 600;
}
.branch-content {
    height:255px;
  padding : 25px;
}
.branch-address {
  color : #555;
  margin-bottom : 20px;
  font-size : 1.05rem;
  line-height : 1.7;
}
.contact-info {
  display : flex;
  flex-direction : column;
  gap : 10px;
  padding-top : 15px;
  border-top : 1px dashed #eee;
}
.phone-number {
  display : flex;
  align-items : center;
  gap : 10px;
  color : #2c3e50;
  font-weight : 500;
}
.phone-icon {
  color : #2ecc71;
  font-size : 1.1rem;
}
.state-badge {
  position : absolute;
  top : 20px;
  right : 20px;
  background : #e74c3c;
  color : white;
  padding : 5px 15px;
  border-radius : 20px;
  font-size : 0.85rem;
  font-weight : 600;
}
.map-link {
  display : inline-block;
  margin-top : 15px;
  color : #3498db;
  text-decoration : none;
  font-weight : 500;
  transition : color 0.3s;
}
  .map-link : hover {
  color : #e74c3c;
  text-decoration : underline;
}
.map-link i {
  margin-right : 8px;
}
.branch-count {
  text-align : center;
  margin-top : 40px;
  padding : 15px;
  font-size : 1.1rem;
  color : #7f8c8d;
  background : white;
  border-radius : 10px;
  box-shadow : 0 5px 15px rgba(0, 0, 0, 0.05);
}
.highlight {
  color : #e74c3c;
  font-weight : 700;
}
  @media (max-width : 768px) {
      .branch-grid{grid-template-columns : 1fr;
      gap : 20px;
    }
    .section-header h1 {
      font-size : 2.2rem;
    }
    .branch-card {
      max-width : 100%;
    }
      }@media (max-width : 480px) {
      .branch-header{flex-direction : column;
      text-align : center;
      gap : 10px;
    }
    .section-header h1 {
      font-size : 1.8rem;
    }
}
/* Why choose us */
.choose-section{
    background: url("../images/choose-background.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 60px 0 60px
}
.choose-section .choose-sideshape{
    position: absolute;
    right: 0;
    top: 0;
}
.choose-section .choose_wrapper{
    position: relative;
}
.choose-section .choose_wrapper .choose-image{
    position: absolute;
    top: -222px;
    left: -230px;
}
.choose-section .choose_content{
    padding-left: 70px;
}
.choose-section .choose_content h5{
    margin-bottom: 6px;
}
.choose-section .choose_content h2{
    margin-bottom: 16px;
}
.choose-section .choose_content p{
    margin-bottom: 15px;
}
.choose-section .choose_content .text{
    font-weight: 500;
    margin-bottom: 13px;
}
.choose-section .choose_content .text1{
    margin-bottom: 33px;
}
.choose-section .choose_content ul li .circle {
    background-image: linear-gradient(to right, #082e45 0%, #17677e 51%, #249cb3 100%);
    border-radius: 100px;
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    margin-right: 12px;
    margin-left: 0;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.choose-section .choose_content ul li .circle:before {
    font-size: 14px;
    padding-top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-white);
}
.choose-section .choose_content .read_more{
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    padding: 4px 2px 4px 42px; 
    text-align: center;
    display: inline-block;
    border-radius: 30px 30px 30px 0;
    color: var(--e-global-color-white) !important;
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
    position: relative;
    z-index: 1;
}
.choose-section .choose_content .read_more:hover{
    color: var(--e-global-color-white);
    background-image: linear-gradient(to right, #052b45 0%, #052b45 51%, #052b45 100%);
}
.choose-section .choose_content .circle {
    background: var(--e-global-color-white);
    border-radius: 100px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0 3px 0 12px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.choose-section .choose_content .read_more:hover .circle{
    background-color: var(--e-global-color-very-dark-blue);
}
.choose-section .choose_content .read_more:hover .circle:before{
    color: var(--e-global-color-white);
}
.choose-section .choose_content .circle:before {
    font-size: 18px;
    padding-top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-dark-blue);
}
.choose-section .choose-sideshape2{
    position: absolute;
    right: 0;
    bottom: 0;
}

.ozobot-section{
    background: var(--e-global-color-secondary);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 17px 0 17px
}

.ozobot-section .ozobot-content .read_more {
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    padding: 8px 15px;
    text-align: center;
    display: inline-block;
    border-radius: 10px;
    color: var(--e-global-color-white) !important;
    transition: all 0.3s 
ease-in-out;
    background-image: linear-gradient(to right, var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
}

.ozo-section .icon-1 i{
    text-align:center;
    padding: 17px 17px;
    background: mediumpurple;
    color: white;
    border-radius: 28px;
    font-size: 20px;
    margin-bottom: 10px;
}

.ozo-section .icon-1 h5{
    text-align:center;
    font-size: 16px;
    color: #896bad;
}
/* Case Study */

.study-section {
    padding: 130px 0 140px;
}
.study-section .study_content{
    text-align: center;
}
.study-section .study_content h5{
    margin-bottom: 10px;
}
.study-section .study_content h2{
    margin-bottom: 34px;
}
.study-section .case-box {
    margin-bottom: 30px;
}
.study-section .overlay:hover figure {
    border-radius: 30px;
    opacity: 1;
    background-image: linear-gradient(to right, #06243b 0%, #36e0f7 100%);
}
.study-section .overlay:hover img{
    opacity: 0.4;
}
.study-section .case-box .image{
    position: relative;
}
.study-section .case-box .content{
    position: absolute;
    padding: 0 50px 0 30px;
    margin-top: -196px;
}
.study-section .case-box .content h4{
    margin-bottom: 18px;
}
.study-section .case-box .content span{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
    border-radius: 20px;
    background-color: #3a4853;
    padding: 5px 18px;
    text-align: center;
    display: inline-block;
    margin-bottom: 14px;
}
.study-section .case-box .circle {
    background-image: linear-gradient(to right, #0f4a61 0%, #1d7d94 51%, #28a8bf 100%);
    border-radius: 100px;
    height: 45px;
    width: 45px;
    line-height: 45px;
    margin-left: -2px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.study-section .case-box:hover .circle{
    background-image:  linear-gradient(to right, #ffffff 0%, #ffffff 51%, #ffffff 100%);
}
.study-section .case-box:hover .circle:before{
    color: var(--e-global-color-secondary);
}
.study-section .case-box .circle:before{
    font-size: 18px;
    padding-top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-white);
}
.study-section .lower-images{
    margin-bottom: 28px;
}
.study-section .button{
    text-align: center;
}
.study-section .view_all{
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    padding: 6px 2px 6px 52px;
    text-align: center;
    display: inline-block;
    border-radius: 30px 30px 30px 0;
    color: var(--e-global-color-white) !important;
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
}
.study-section .view_all:hover{
    color: var(--e-global-color-white);
    background-image: linear-gradient(to right, #052b45 0%, #052b45 51%, #052b45 100%);
}
.study-section .circle {
    background: var(--e-global-color-white);
    border-radius: 100px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0 3px 0 20px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.study-section .circle:before {
    font-size: 18px;
    padding-top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-dark-blue);
}

/* Testimonial */

.testimonial-section{
    background-color: #eafcfe;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 109px 0 112px;
    position: relative;
    overflow: hidden;
}
.testimonial-section .testimonial-sideimage {
    position: absolute;
    right: -106px;
    top: -32px;
}
.testimonial-section .heading{
    text-align: center;
}
.testimonial-section h2 {
    margin-bottom: 38px;
}
.testimonial-section p{
    font-size: 22px;
    line-height: 35px;
    font-weight: 400;
    margin-bottom: 14px;
    color: var(--e-global-color-light-black);
}
.testimonial-section .testimonial_content h5{
    margin-bottom: 4px;
}
.testimonial-section .testimonial_content .text-size-18{
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--e-global-color-secondary);
}
.testimonial-section .testimonial_content span{
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
    color: var(--e-global-color-text);
    display: block;
}
.testimonial-section .testimonial_content .content-box .testimonial-image{
    position: absolute;
    top: 50px;
    left: -150px;
}
.testimonial-section .testimonial_content .content-box .box {
    background-image: linear-gradient(to right, #082e45 0%, #17677e 51%, #249cb3 100%);
    border-radius: 100px;
    height: 64px;
    width: 64px;
    padding-top: 17px;
    text-align: center;
    display: inline-block;
    border: 1px solid transparent;
    position: relative;
    top: -136px;
    left: -330px;
}
.testimonial-section .testimonial_content .content-box{
    border: 1px solid var(--e-global-color-white);
    border-bottom: 2px solid #249cb3;
    background: var(--e-global-color-white);
    border-radius: 35px;
    padding: 62px 68px 5px 143px;
    width: 74%;
    position: relative;
    margin-left: 218px;
    text-align: left;
    margin-bottom: 68px;
}
.testimonial-section .testimonial_content .content-box .circle {
    border-radius: 100px;
    height: 97px;
    width: 97px;
    line-height: 97px;
    text-align: center;
    display: inline-block;
    background: var(--e-global-color-secondary);
    position: absolute;
    top: -45px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
#carouselExampleControls{
    text-align: center;
    display: inline-block;
    border-radius: 100px; 
    color: var(--e-global-color-white) !important;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}
#carouselExampleControls .carousel-control-prev{
    position: relative;
    left: -33px;
    top: 184px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
    color: var(--e-global-color-white);
    opacity: 1;
    border: 1px solid #404e60;
    background: var(--e-global-color-very-dark-mostly-black-blue);
    padding: 0 10px;
    font-weight: bold;
    border-radius: 100px;
    display: inline-block;
}
#carouselExampleControls .carousel-control-next{
    position: relative;
    right: -28px;
    top: 110px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
    color: var(--e-global-color-white);
    opacity: 1;
    border: 1px solid #404e60;
    background: var(--e-global-color-very-dark-mostly-black-blue);
    padding: 0 10px;
    font-weight: bold;
    border-radius: 100px;
    display: inline-block;
}
#carouselExampleControls .carousel-control-prev:hover,
#carouselExampleControls .carousel-control-next:hover {
    background-image: linear-gradient(to right,  #082e45 0%, #17677e 51%, #249cb3 100%);
    color: var(--e-global-color-white);
}
.testimonial-section .pagination-outer{
    position: absolute;
    right: 0;
    top: 0;
}
.testimonial-section .partner-section{
    text-align: center;
    position: relative;
}
.testimonial-section .partner-section .partner img{
    transition: all 0.3s ease-in-out;
}
.testimonial-section .partner-section .partner img:hover{
    filter: brightness(0.2);
    transform: translateY(-5px);
}
.testimonial-section .partner-section .partner li{
    display: inline-block;
    margin: 0 40px;
}
.testimonial-section .partner-section .partner li:first-child{
    margin-left: -4px;
}
.testimonial-section .partner-section .partner li:last-child{
    margin-right: 0;
}

/* FAQ / Need*/

.faq-section{
    padding: 20px 0 20px;
    position: relative;
}
.faq-section .accordion-card{
    box-shadow: 1px 1px 70px rgba(95 208 243 / 21%);
    background: var(--e-global-color-white);
    width: 100%;
    border-radius: 15px;
    margin-bottom: 16px;
    padding: 0 20px;
    margin-left: 10px;
}
.faq-section .accordian-inner p{
    font-weight: 400;
    border-left: 3px solid var(--e-global-color-secondary);
    padding-left: 12px;
}
.faq-section .accordian-inner .card-header {
    padding: 0;
    margin-bottom: 0;
    background: none;
    border: none;
}
.faq-section .accordian-inner .card-body {
    padding: 0px 18px 38px;
    margin: 0 -18px;
    border-bottom: 2px solid #249cb3;
    border-radius: 15px;
}
.faq-section .accordion-card a.btn.btn-link:focus {
    outline: none;
    box-shadow: none;
}
.faq-section .accordian-inner .accordion-card i{
    position: absolute;
    right: 20px;
    margin: -6px 0;
}
.faq-section .accordian-inner .accordion-card .btn {
    padding: 18px 0px 14px;
    text-decoration: none;
    text-align: left;
    display: block;
}
.faq-section .faq_content h5{
    margin-bottom: 10px;
}
.faq-section .faq_content h2{
    margin-bottom: 37px;
}
.faq-section .faq_content p{
    margin-bottom: 33px;
}
.faq-section .faq_content h4{
    font-weight: 500;
    /* margin-bottom: 16px; */
    display: inline-block;
}
.faq-section .faq_content .text-size-16{
    margin-bottom: 22px;
}
.faq-section .accordion-card a.btn.btn-link {
    position: relative;
}
.faq-section .accordion-card .btn-link:before {
    content: "\f068";
    position: absolute;
    text-align: center;
    right: 0px;
    top: 16%;
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-family: 'FontAwesome';
    display: inline-block;
    vertical-align: middle;
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
    color: var(--e-global-color-white);
    font-size: 18px;
    border-radius: 100px;
}
.faq-section .accordion-card .collapsed:before {
    content: "\2b";
    width: 48px;
    height: 48px;
    line-height: 48px;
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
    color: var(--e-global-color-white);
    border-radius: 100px;
    text-align: center;
    padding: 0px 4px 1px 4px;
}
.faq-section .faq_content a{
    font-size: 18px;
    line-height: 18px;
    color: var(--e-global-color-white);
}

.faq-section .need-section{
    padding-left: 45px;
    margin-top: -20px;
}
.faq-section .need_content .faq-image{
    position: absolute;
    right: -20px;
    top: -24px;
    z-index: -1;
}
.faq-section .need_content h2{
    text-align: center;
    margin-bottom: 26px;
}
.faq-section .need_content p{
    padding: 0 20px;
    margin-bottom: 30px;
}
.faq-section .need_content {
    box-shadow: 1px 1px 57px rgb(95 208 243 / 15%);
    border-radius: 25px 25px 35px 35px;
    width: 100%;
    padding: 53px 30px 60px;
    background-color: var(--e-global-color-white);
    border: 1px solid white;
    border-bottom: 2px solid #249cb3;
    transition: all 0.3s ease-in-out;
    text-align: center;
    position: relative;
}
.form_style::placeholder{
    color: var(--e-global-color-text);
}
.faq-section .need_content input {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    box-shadow: 1px 1px 57px rgba(95 208 243 / 7%);
    background-color: var(--e-global-color-white);
    color: var(--e-global-color-text);
    border: 1px solid #dae7fb;
    border-radius: 10px;
    padding: 14px 22px;
    margin-bottom: 17px;
    width: 100%;
    overflow: visible;
    outline: none;
}
.faq-section .need_content textarea {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    box-shadow: 1px 1px 57px rgba(95 208 243 / 7%);
    background-color: var(--e-global-color-white);
    color: var(--e-global-color-text);
    border: 1px solid #dae7fb;
    border-radius: 10px;
    padding: 14px 22px;
    width: 100%;
    height: 130px;
    margin-bottom: 34px;
    resize: none;
    outline: none;
    overflow: auto;
}
.faq-section .need_content .submit_now{
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    padding: 4px 4px 4px 36px;
    text-align: center;
    display: inline-block;
    border-radius: 30px 30px 30px 0;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
    border: 0px solid #082e45;
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
}
.faq-section .need_content .submit_now:hover{
    color: var(--e-global-color-white);
    background-image: linear-gradient(to right, #052b45 0%, #052b45 51%, #052b45 100%);
}
.faq-section .need_content .circle {
    background: var(--e-global-color-white);
    border-radius: 100px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0 3px 0 12px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.faq-section .need_content .circle:before {
    font-size: 18px;
    padding-top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-dark-blue);
}

/* Footer */

.footer-section{
    background: url(../images/footer.png);
    
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    /*position: relative;*/
    /* overflow: hidden; */
}
.footer-section .footer-logo{
    margin-bottom: 8px;
    position: relative;
    top: -14px;
}
.footer-section .footer-sideshape{
    position: absolute;
    left: -16px;
    top: -14px;
}
.footer-section .middle-portion{
    padding-bottom: 20px;
}
.footer-section .middle-portion .footer-text{
    margin-bottom: 16px;
    line-height: 30px;
}
.footer-section .middle-portion .heading{
   margin-bottom: 18px;
}
.footer-section .middle-portion .social-icons .circle{
    display: inline-block;
}
.footer-section .middle-portion .social-icons i{
    background: #02122a;
    border-radius: 100px;
    border: 1px solid #404e60;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    margin: 0 2px;
    transition: all 0.3s ease-in-out;
}
.footer-section .middle-portion .social-icons li:first-child{
    margin-left: 0;
}
.footer-section .middle-portion .social-icons li:last-child{
    margin-right: 0;
}
.footer-section .middle-portion .social-icons i:hover{
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
    border: 1px solid #17677e;
    transform: translateY(-5px);
    color: var(--e-global-color-white);
}
.footer-section .middle-portion .social-icons a{
    color: var(--e-global-color-white);
}
.footer-section .middle-portion .list-pd{
    padding-left: 14px;
}
.footer-section .middle-portion .links .text-size-16 {
    position: relative;
    margin-left: 15px;
    font-weight: 400;
    top: 2px;
    font-family: 'Manrope', sans-serif;
    color: var(--e-global-color-primary);
}
.footer-section .middle-portion .links li{
    margin-bottom: 8px;
}
.footer-section .middle-portion .icon .text-size-16 {
    color: var(--e-global-color-white);
}
.footer-section .middle-portion .icon {
    padding-right: 20px;
    margin-left: -30px;
}
.footer-section .middle-portion .icon li{
    margin-bottom: 10px;
}
.footer-section .middle-portion .links li i {
    font-size: 12px;
    transition: all 0.3s ease;
    color: var(--e-global-color-white);
}
.footer-section .middle-portion ul li:hover i, .footer-section .middle-portion ul li:hover  {
    color: var(--e-global-color-secondary);
}
.footer-section .middle-portion ul li:hover .text, .footer-section .middle-portion ul li:hover  {
    color: var(--e-global-color-secondary);
}
.footer-section .middle-portion .icon .footer-location{
    color: var(--e-global-color-secondary);
    position: absolute;
    line-height: 16px;
    font-size: 16px;
    left: -12px;
    margin-top: 3px;
    transition: all 0.3s ease-in-out;
}
.footer-section .middle-portion .icon .footer-location:hover{
    transform: translateY(-5px);
}
.footer-section .middle-portion .icon li {
    padding-left: 34px;
    margin-bottom: 14px;
}
.footer-section .copyright {
    text-align: center;
    padding: 20px 0px;
    color: var(--e-global-color-white);
    border-top: 1px solid #2b465e;
}
.footer-section .copyright p{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
}
.footer-section .footer-image{
    position: absolute;
    right: 90px;
    bottom: 64px;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}
.footer-section .footer-image:hover{
    transform: translateY(-5px);
}
#fixed-form-container{
    position: fixed;
    bottom: 6px;
    right: 0;
    width: 25%;
    text-align: center;
    margin: 0;
    z-index: 1;
}
#fixed-form-container .body{
    border: 1px solid var(--e-global-color-secondary);
    box-shadow: 1px 1px 57px rgb(95 208 243 / 30%);
    border-radius: 30px;
    width: 60%;
    padding: 20px 20px 30px;
    background-color: var(--e-global-color-white);
    text-align: center;
    position: relative;
    left: 110px;
    top: -215px;
    display: none;
}
#fixed-form-container .body input {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    box-shadow: 1px 1px 57px rgb(95 208 243 / 7%);
    background-color: var(--e-global-color-white);
    color: var(--e-global-color-text);
    border: 1px solid #dae7fb;
    border-radius: 10px;
    padding: 4px 14px;
    margin-bottom: 17px;
    width: 100%;
    overflow: visible;
    outline: none;
}
#fixed-form-container .body textarea {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    box-shadow: 1px 1px 57px rgb(95 208 243 / 7%);
    background-color: var(--e-global-color-white);
    color: var(--e-global-color-text);
    border: 1px solid #dae7fb;
    border-radius: 10px;
    padding: 4px 14px;
    width: 100%;
    height: 118px;
    margin-bottom: 8px;
    resize: none;
    outline: none;
    overflow: auto;
}
#fixed-form-container .body .submit_now {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    padding: 12px 25px;
    text-align: center;
    display: inline-block;
    border-radius: 30px 30px 30px 0;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
    border: 0px solid #082e45;
    background-image: linear-gradient(to right, var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
}
#fixed-form-container .body .submit_now:hover {
    color: var(--e-global-color-white);
    background-image: linear-gradient(to right, #052b45 0%, #052b45 51%, #052b45 100%);
}

/* Projects Page */

.sub-banner {
    background: url("../images/sub-bannerbackgroung.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.sub-banner .header{
    padding: 0 280px 0 265px;
}
.sub-banner .banner-section{
    padding: 95px 0 172px;
    overflow: hidden;
}
.sub-banner .sub-bannersideshape{
    position: absolute;
    left: -38px;
    top: -14px;
}
.sub-banner .banner-section .banner_content p {
    padding-right: 60px;
    margin-bottom: 27px;
}
.sub-banner .banner-section .banner_content .box{
    background-color: var(--e-global-color-very-blue);
    color: var(--e-global-color-white);
    padding: 12px 35px; 
    text-align: center;
    display: inline-block;
    border-radius: 30px 30px 30px 0;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    position: relative;
}
.sub-banner .banner-section .banner_content .box i:before {
    font-size: 14px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-white);
}
.sub-banner .banner-section .banner_content .box .first{
    margin-left: 16px;
}
.sub-banner .banner-section .banner_content .box .second{
    margin-right: 10px;
}
.sub-banner .banner-section .banner_content .box span{
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    display: inline-block;
}
.sub-banner .banner-section .banner_content .box .box_span{
    color: var(--e-global-color-secondary);
}
.sub-banner .banner-section .banner_content h1{
    padding-right: 0;
}
.sub-banner .banner-section .sub-bannersideshape2{
    position: absolute;
    left: -32px;
    bottom: -20px;
    z-index: 0;
}
.sub-banner .banner-section .banner_wrapper{
    position: relative;
}
.sub-banner .banner-section .banner_wrapper .sub-bannerimage{
    position: absolute;
    bottom: -360px;
    right: -396px;
}

/* About Page */

.aboutpage-section{
    padding: 162px 0 146px;
}
.aboutpage-section .aboutpage_wrapper{
    position: relative;
}
.aboutpage-section .aboutpage_wrapper .aboutpage-image{
    position: absolute;
    top: -30px;
    left: 14px;
}
.aboutpage-section .aboutpage_wrapper .aboutpage-image2{
    position: absolute;
    left: -14px;
    top: 424px;
    z-index: -1;
}
.aboutpage-section .aboutpage_content{
    padding-left: 70px;
}
.aboutpage-section .aboutpage_content h5{
    margin-bottom: 6px;
}
.aboutpage-section .aboutpage_content h2{
    margin: 0 -20px 16px 0;
}
.aboutpage-section .aboutpage_content p{
    margin: 0 -20px 15px 0
}
.aboutpage-section .aboutpage_content .text{
    text-align:left;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--e-global-color-primary);
}
.aboutpage-section .aboutpage_content .text1{
    margin-bottom: 33px;
}
.aboutpage-section .aboutpage_content ul li .circle {
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
    border-radius: 100px;
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    margin: 0 12px 0 0;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.aboutpage-section .aboutpage_content ul li .circle:before {
    font-size: 14px;
    padding-top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-white);
}
.aboutpage-section .aboutpage_content .read_more{
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    padding: 4px 2px 4px 42px; 
    text-align: center;
    display: inline-block;
    border-radius: 30px 30px 30px 0;
    color: var(--e-global-color-white) !important;
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
}
.aboutpage-section .aboutpage_content .read_more:hover{
    color: var(--e-global-color-white);
    background-image: linear-gradient(to right, #052b45 0%, #052b45 51%, #052b45 100%);
}
.aboutpage-section .aboutpage_content .circle {
    background: var(--e-global-color-white);
    border-radius: 100px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0 3px 0 12px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.aboutpage-section .aboutpage_content .circle:before {
    font-size: 18px;
    padding-top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-dark-blue);
}

/* Counter */

.counter-section{
    background-color: #eafcfe;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px 0 30px;
}
.counter-section .counter-sideimage{
    position: absolute;
    left: -108px;
    top: -34px;
}
.counter-section .counter-box{
    background: var(--e-global-color-white);
    border-radius: 30px;
    padding: 35px 40px;
    text-align: center;
    margin-bottom: 24px;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid #249cb3;
}
.counter-section .counter-box:hover{
    transform: translateY(-5px);
}
.counter-section .counter-box figure{
    background: #eafcfe;
    border-radius: 100px;
    height: 120px;
    width: 120px;
    line-height: 120px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    margin: 0 auto 15px;
}
.counter-section .counter-box figure:hover{
    transform: translateY(-5px);
}
.counter-section .counter-box h3{
    display: inline-block;
}
.counter-section .counter-box .plus{
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    color: var(--e-global-color-primary);
}
.counter-section .counter-box .text-size-16{
    display: block;
}
.videosection{
    text-align: center;
    margin-top: -358px;
}
.faqneed-section {
    padding: 162px 0 142px;
    position: relative;
}

/* FAQ Page */

.accordian-section{
    padding: 133px 0;
    position: relative;
}
.accordian-section .accordian_content{
    text-align: center;
}
.accordian-section .accordion-card{
    box-shadow: 1px 1px 70px rgba(95 208 243 / 21%);
    background: var(--e-global-color-white);
    width: 100%;
    border-radius: 15px;
    margin-bottom: 16px;
    padding: 0 20px;
}
.accordian-section .accordian-inner .card-header {
    padding: 0;
    margin-bottom: 0;
    background: none;
    border: none;
}
.accordian-section .accordian-inner .card-body {
    padding: 0px 25px 38px;
    margin: 0 -22px;
    border-bottom: 2px solid #249cb3;
    border-radius: 15px;
}
.accordian-section .accordion-card a.btn.btn-link:focus {
    outline: none;
    box-shadow: none;
}
.accordian-section .accordian-inner .accordion-card i{
    position: absolute;
    right: 20px;
    margin: -6px 0;
}
.accordian-section .accordion-card a.btn.btn-link {
    position: relative;
}
.accordian-section .accordian-inner .accordion-card .btn {
    padding: 18px 0px 16px;
    text-decoration: none;
    text-align: left;
    display: block;
}
.accordian-section .accordian_content h5{
    margin-bottom: 10px;
}
.accordian-section .accordian_content h2{
    margin-bottom: 40px;
}
.accordian-section .accordian-inner p{
    font-weight: 400;
    border-left: 3px solid var(--e-global-color-secondary);
    padding-left: 16px;
}
.accordian-section .accordian-inner h4{
    font-weight: 500;
    display: inline-block;
    margin-bottom: 0;
}
.accordian-section .accordian-inner a{
    font-size: 18px;
    line-height: 18px;
    color: var(--e-global-color-white);
}
.accordian-section .accordion-card .btn-link:before {
    content: "\f068";
    position: absolute;
    text-align: center;
    right: -2px;
    top: 16%;
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-family: 'FontAwesome';
    display: inline-block;
    vertical-align: middle;
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
    color: #ffffff;
    font-size: 18px;
    border-radius: 100px;
}
.accordian-section .accordion-card .collapsed:before {
    content: "\2b";
    width: 48px;
    height: 48px;
    line-height: 48px;
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
    color: #ffffff;
    border-radius: 100px;
    text-align: center;
}

/* Team Page */

.team-section{
    background-color: #eafcfe;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 134px 0 108px;
}
.team-section .team-sideimage {
    position: absolute;
    left: -108px;
    top: 264px;
}
.team-section .team_content{
    text-align: center;
}
.team-section .team_content h2{
    margin-bottom: 38px;
}
.team-section .team-box{
    position: relative;
    text-align: center;
    margin-bottom: 33px;
    padding-bottom: 35px;
    background-color: var(--e-global-color-white);
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid #249cb3;
}
.team-section .team-box figure{
    margin-bottom: 25px;
}
.team-section .team-box h4{
    margin-bottom: 2px;
}
.team-section .team-box span{
    display: block;
    margin-bottom: 16px;
}
.team-section .team-box li{
    display: inline-block;
}
.team-section .team-box i{
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
    border-radius: 100px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    margin: 0 3px;
    border: 1px solid var(--e-global-color-secondary);
    transition: all 0.3s ease-in-out;
}
.team-section .team-box li:hover{
    transform: translateY(-5px);
}
.team-section .team-box li:first-child{
    margin-left: 0;
}
.team-section .team-box li:last-child{
    margin-right: 0;
}
.team-section .team-box li a{
    color: var(--e-global-color-white);
}
.team-section .team-box:hover i{
    background-image: linear-gradient(to right, #042237 0%, #042237 51%, #042237 100%);
    border: 1px solid #17677e;
}

/* Service Page */

.provide-section{
    background-color: #eafcfe;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 134px 0 124px;
}
.provide-section .team-sideimage {
    position: absolute;
    left: -110px;
    top: 148px;
}
.provide-section .provide_content{
    text-align: center;
}
.provide-section .provide_content h2{
    margin-bottom: 35px;
    padding: 0 90px;
}
.provide-section .service_contentbox .service-box{
    background: var(--e-global-color-white);
    border-radius: 30px;
    padding: 40px 35px;
    margin-bottom: 27px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid #249cb3;
}
.provide-section .service_contentbox .service-box h4{
    display: inline-block;
    margin-bottom: 6px;
}
.provide-section .service_contentbox .service-box p{
    margin-bottom: 22px;
}
.provide-section .service_contentbox .service-box .box-content {
    position: relative;
    padding-left: 16px;
    display: inline-block;
    width: 74%;
}
.provide-section .service_contentbox .service-box figure{
    background: #eafcfe;
    border-radius: 100px;
    height: 120px;
    width: 120px;
    line-height: 120px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.provide-section .service_contentbox .service-box:hover{
    background-image: linear-gradient(to right, #082e45 0%, #17677e 51%, #249cb3 100%);
    border-bottom: 2px solid #249cb3;
    transform: translateY(-5px);
}
.provide-section .service_contentbox .service-box:hover h4{
    color: var(--e-global-color-white);
}
.provide-section .service_contentbox .service-box:hover p{
    color: var(--e-global-color-white);
}
.provide-section .service_contentbox .service-box .box-image {
    float: left;
    width: 26%;
}
.provide-section .service_contentbox .service-box figure:hover{
    transform: translateY(-5px);
}
.provide-section .service_contentbox .service-box .read_more{
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    font-family: 'Manrope', sans-serif;
    color: var(--e-global-color-secondary);
    text-transform: uppercase;
}

/* Contact Page Style */

.contact-section{
    padding: 146px 0 112px;
    position: relative;
}
.contact-section .contact_content h2 {
    margin-bottom: 30px;
}
.contact-section .contact_content h5{
    margin-bottom: 10px;
}
.contact-section .contact-box{
    box-shadow: 1px 1px 57px rgb(95 208 243 / 15%);
    background: var(--e-global-color-white);
    border-radius: 20px;
    padding: 31px 35px 31px 33px;
    margin-bottom: 28px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border-right: 2px solid #249cb3;
    width: 83%;
}
.contact-section .contact-box .box-image{
    float: left;
    width: 26%;
}
.contact-section .contact-box figure{
    background-image: linear-gradient(to right, #0b3950 0%, #197188 51%, #26a2b9 100%);
    border-radius: 100px;
    height: 70px;
    width: 72px;
    line-height: 73px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    margin-bottom: 0;
}
.contact-section .contact-box figure:hover{
    transform: translateY(-5px);
}
.contact-section .contact-box .box-content{
    position: relative;
    display: inline-block;
    width: 74%;
}
.contact-section .contact-box h4{
    font-weight: 700;
    margin-bottom: 14px;
}
.contact-section .contact-box .heading{
    margin-bottom: 11px;
}
.contact-section .contact-box p{
    margin-top: -10px;
    margin-bottom: 4px;
}
.contact-section .contact-box .box-content a {
    color: var(--e-global-color-text);
    transition: all 0.3s ease-in-out;
}
.contact-section .contact-box .box-content a:hover {
    color: var(--e-global-color-secondary);
}
.contact-section .need-section {
    margin-top: -32px;
    margin-left: -38px;
}
.contact-section .need_content .faq-image{
    position: absolute;
    right: -20px;
    top: -24px;
    z-index: -1;
}
.contact-section .need_content h2{
    text-align: center;
    margin-bottom: 26px;
}
.contact-section .need_content p{
    padding: 0 20px;
    margin-bottom: 30px;
}
.contact-section .need_content {
    box-shadow: 1px 1px 57px rgb(95 208 243 / 15%);
    border-radius: 25px 25px 35px 35px;
    width: 85%;
    margin-top: 50px;
    padding: 50px 30px 60px;
    background-color: var(--e-global-color-white);
    border: 1px solid white;
    border-bottom: 2px solid #249cb3;
    transition: all 0.3s ease-in-out;
    text-align: center;
    position: relative;
}
.form_style::placeholder{
    color: var(--e-global-color-text);
}
.contact-section .need_content input {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    box-shadow: 1px 1px 57px rgba(95 208 243 / 7%);
    background-color: var(--e-global-color-white);
    color: var(--e-global-color-text);
    border: 1px solid #dae7fb;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 17px;
    width: 100%;
    overflow: visible;
    outline: none;
}
.contact-section .need_content textarea {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    box-shadow: 1px 1px 57px rgba(95 208 243 / 7%);
    background-color: var(--e-global-color-white);
    color: var(--e-global-color-text);
    border: 1px solid #dae7fb;
    border-radius: 10px;
    padding: 14px 18px;
    width: 100%;
    height: 130px;
    margin-bottom: 34px;
    resize: none;
    outline: none;
    overflow: auto;
}
.contact-section .need_content .submit_now{
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    padding: 4px 4px 4px 36px;
    text-align: center;
    display: inline-block;
    border-radius: 30px 30px 30px 0;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
    border: 0px solid #082e45;
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
}
.contact-section .need_content .submit_now:hover{
    color: var(--e-global-color-white);
    background-image: linear-gradient(to right, #052b45 0%, #052b45 51%, #052b45 100%);
}
.contact-section .need_content .circle {
    background: var(--e-global-color-white);
    border-radius: 100px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0 3px 0 12px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.contact-section .need_content .circle:before {
    font-size: 18px;
    padding-top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-dark-blue);
}
.contact_map_section {
    overflow: hidden;
    margin-bottom: -5px;
}
.contact_map_section iframe:hover {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

/*feature*/
.hero-section {
  color: white;
  padding: 80px 0;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-section p {
    color: white;
    text-align:left;
  font-size: 1.2rem;
}

.spec-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.spec-header {
  background: var(--e-global-color-primary);
  color: white;
  padding: 15px 20px;
  font-weight: 600;
  font-size: 1.3rem;
}

.spec-body {
  padding: 20px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th {
  background-color: var(--e-global-color-light);
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
}

.spec-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.model-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.i5-badge {
  background-color: #3498db;
  color: white;
}

.n100-badge {
  background-color: #2ecc71;
  color: white;
}

.highlight {
  color: var(--e-global-color-highlight);
  font-weight: 600;
}

.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.color-circle {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid #ddd;
}

.color-black {
  background-color: #000;
}
.color-pink {
  background-color: #ff69b4;
}
.color-orange {
  background-color: #ff8c00;
}
.color-blue {
  background-color: #1e90ff;
}
.color-green {
  background-color: #32cd32;
}
.color-purple {
  background-color: #9370db;
}
.color-gray {
  background-color: #808080;
}
.color-yellow {
  background-color: #ffd700;
}

.features-icon {
  text-align:center;
  padding:7px 7px;
  font-size: 2rem;
  color: var(--e-global-color-accent);
  margin-bottom: 15px;
}

.comparison-section {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin: 0px auto;
}

.comparison-header {
  text-align: center;
  margin-bottom: 30px;
  color: var(--e-global-color-primary);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  background-color: var(--e-global-color-primary);
  color: white;
  padding: 15px;
  text-align: center;
}

.comparison-table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.comparison-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .spec-table th,
  .spec-table td {
    padding: 8px 10px;
    font-size: 0.9rem;
  }
}

/*Coding*/
/* Hero Section */
.hero-section {
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTIwMCA0MDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA1KSI+PHBhdGggZD0iTTAsMzAwQzE1MCwyNTAgMzAwLDM1MCA0NTAsMzAwQzYwMCwyNTAgNzUwLDM1MCA5MDAsMzAwQzEwNTAsMjUwIDEyMDAsMzUwIDEyMDAsMzAwVjQwMEgwVjMwMHoiLz48L2c+PC9zdmc+');
    background-size: cover;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-primary-custom {
    background: white;
    color: var(--e-global-color-primary);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-outline-light-custom {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light-custom:hover {
    background: white;
    color: var(--e-global-color-primary);
    border-color: white;
}

.floating-robot {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Section Styling */
.section-title {
    position: relative;
    font-weight: 700;
}

/*.section-title::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -10px;*/
/*    left: 0;*/
/*    width: 60px;*/
/*    height: 4px;*/
/*    background: var(--e-global-color-primary);*/
/*    border-radius: 2px;*/
/*}*/

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Cards */
.feature-card {
    background: #bcdfdb2e;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgb(62 67 131 / 83%), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

.koddy-icon {
    background: var(--e-gradient-1);
}

.ozobot-icon {
    background: var(--e-gradient-2);
}

.ai-icon {
    background: var(--e-global-color-accent);
}

/* Tabs */
.custom-tabs .nav-link {
    background: transparent;
    border: none;
    color: #64748b;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
}

.custom-tabs .nav-link.active {
    background: var(--e-gradient-1);
    color: white;
}

/* Progress Bars */
.progress-container {
    background: #f1f5f9;
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-bar {
    height: 100%;
    border-radius: 10px;
    background: var(--e-gradient-1);
    transition: width 1s ease;
}

.banner-section-contact{
    background-color:#08172e;
}
/* Stats */
.stat-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 16px;
    background-image: linear-gradient(180deg, #3A1A78, #101236);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--e-gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
    margin: 1rem;
}

.testimonial-card::before {
    content: "" ";
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--e-global-color-primary);
    opacity: 0.1;
    font-family: Georgia, serif;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/*Robotics*/
.hero-section {
    color: white;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    height:350px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.btn-primary {
    background: var(--e-global-color-secondary);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-accent {
    background: var(--e-global-color-accent);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
}

.btn-accent:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: white;
}

.section-title {
    position: relative;
    margin-bottom: 10px;
    font-weight: 700;
}

/*.section-title::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -15px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    width: 80px;*/
/*    height: 4px;*/
/*    background: var(--e-global-color-secondary);*/
/*    border-radius: 2px;*/
/*}*/

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 30px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: var(--e-gradient-1);
    color: white;
    padding: 20px;
    border: none;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--e-global-color-secondary);
}

.benefit-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.benefit-item:last-child {
    border-bottom: none;
}

.animated-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.animated-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.counter-section {
    background: var(--e-gradient-1);
    color: white;
    padding: 80px 0;
}

.counter-item {
    text-align: center;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer {
    background: var(--e-global-color-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer h5 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--e-global-color-secondary);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--e-global-color-secondary);
    transform: translateY(-5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, 15px);
    }

    100% {
        transform: translate(0, -0px);
    }
}

.product-tabs .nav-link {
    border: none;
    padding: 15px 30px;
    font-weight: 500;
    color: #666;
    border-radius: 30px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.product-tabs .nav-link.active {
    background: var(--e-gradient-1);
    color: white;
}

.highlight {
    background: linear-gradient(120deg, #a8e6cf 0%, #dcedc1 100%);
    padding: 3px 8px;
    border-radius: 5px;
}

.robotics-icon {
    font-size: 4rem;
    color: var(--e-global-color-accent);
    margin-bottom: 20px;
}

.pathway-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--e-global-color-secondary);
}

.pathway-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.kit-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 5px solid var(--e-global-color-accent);
}

.kit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    margin-bottom: 30px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.gradient-bg {
    background: var(--e-gradient-1);
    color: white;
}

.alt-gradient-bg {
    background: var(--e-gradient-2);
    color: white;
}

.diya-gradient-bg {
    background: var(--e-gradient-1);
    color: white;
}

.domain-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid var(--e-global-color-accent);
}

.domain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.continuum-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.continuum-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.continuum-item h5 {
    margin-top: 15px;
    font-weight: 600;
}

.diya-logo {
    font-size: 4rem;
    color: var(--e-global-color-secondary);
    margin-bottom: 20px;
}

.c-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.c-skill {
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-weight: 500;
}

.tech-domain {
    display: inline-block;
    background: rgba(52, 152, 219, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    margin: 5px;
    font-size: 0.9rem;
    color: var(--e-global-color-secondary);
    font-weight: 500;
}

.program-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.program-table th {
    background: var(--e-gradient-1);
    color: white;
    padding: 12px 15px;
    text-align: left;
}

.program-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.program-table tr:hover {
    background: rgba(52, 152, 219, 0.05);
}

/*Career Page*/
/* Additional styles for career page */
.career-hero {
    background: linear-gradient(135deg, var(--e-global-color-primary) 0%, var(--e-global-color-secondary) 100%);
    padding: 180px 0 100px;
    color: white;
    text-align: center;
}

.career-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.career-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

.career-content {
    padding: 80px 0;
}

.job-opening {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--e-global-color-primary);
}

.job-opening:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.job-title {
    color: var(--e-global-color-primary);
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.job-meta span {
    margin-right: 20px;
    color: var(--e-global-color-text);
    font-size: 16px;
}

.job-meta i {
    color: var(--e-global-color-secondary);
    margin-right: 5px;
}

.job-description {
    margin-bottom: 20px;
    color: var(--e-global-color-text);
}

.apply-btn {
    background: linear-gradient(to right, var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px 30px 30px 0;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.apply-btn:hover {
    background: linear-gradient(to right, #052b45 0%, #052b45 51%, #052b45 100%);
    color: white;
    transform: translateY(-2px);
}

.benefits-section {
    background: #eafcfe;
    padding: 80px 0;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(139, 108, 173, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--e-global-color-primary);
    font-size: 30px;
}

.application-form-section {
    padding: 80px 0;
}

.application-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/*Blog Style*/
.blog-hero {
    background: linear-gradient(135deg, var(--e-global-color-primary) 0%, var(--e-global-color-secondary) 100%);
    padding: 150px 0 80px;
    color: white;
    text-align: center;
}

.blog-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.blog-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-post-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-post-content {
    padding: 25px;
}

.blog-post-meta {
    color: var(--e-global-color-text);
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-post-meta i {
    color: var(--e-global-color-secondary);
    margin-right: 5px;
}

.blog-post-title{
    text-align:left;
    color: var(--e-global-color-primary);
    margin-bottom: 15px;
    font-size: 20px;
}

.blog-post-excerpt {
    color: var(--e-global-color-text);
    margin-bottom: 15px;
}

.read-more-btn {
    color: var(--e-global-color-secondary);
    font-weight: 600;
    text-decoration: none;
}

.read-more-btn:hover {
    color: var(--e-global-color-primary);
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.widget-title {
    color: var(--e-global-color-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--e-global-color-secondary);
}

.category-list,
.tag-list {
    list-style: none;
    padding: 0;
    margin: 0;
}


.category-list a,
.tag-list a {
    color: var(--e-global-color-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 5px;
}

.category-list a:hover,
.tag-list a:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
}

.tag-list a {
    display: inline-block;
    margin: 0 5px 5px 0;
    padding: 5px 10px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 14px;
}

.featured-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-post-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.pagination {
    justify-content: center;
    margin-top: 40px;
}

.page-link {
    color: var(--e-global-color-primary);
    border: 1px solid #dee2e6;
    margin: 0 2px;
    border-radius: 5px;
}

.page-link:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-primary);
    border-color: var(--e-global-color-primary);
}

.page-item.active .page-link {
    background: var(--e-global-color-primary);
    border-color: var(--e-global-color-primary);
}
/*Blog Category*/
.blog-hero {
    background: linear-gradient(135deg, var(--e-global-color-primary) 0%, var(--e-global-color-secondary) 100%);
    padding: 150px 0 80px;
    color: white;
    text-align: center;
}

.blog-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.category-info {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.category-icon {
    background: rgba(139, 108, 173, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
}

.blog-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-post-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-post-content {
    padding: 25px;
}

.blog-post-meta {
    color: var(--e-global-color-text);
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-post-meta i {
    color: var(--e-global-color-secondary);
    margin-right: 5px;
}


.blog-post-excerpt {
    color: var(--e-global-color-text);
    margin-bottom: 15px;
}

.read-more-btn {
    color: var(--e-global-color-secondary);
    font-weight: 600;
    text-decoration: none;
}

.read-more-btn:hover {
    color: var(--e-global-color-primary);
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.widget-title {
    color: var(--e-global-color-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--e-global-color-secondary);
}

.category-list,
.tag-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li,
.tag-list li {
    margin-bottom: 10px;
}

.category-list a,
.tag-list a {
    color: var(--e-global-color-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 5px;
}

.category-list a:hover,
.tag-list a:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
}

.tag-list a {
    display: inline-block;
    margin: 0 5px 5px 0;
    padding: 5px 10px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 14px;
}

.pagination {
    justify-content: center;
    margin-top: 40px;
}

.page-link {
    color: var(--e-global-color-primary);
    border: 1px solid #dee2e6;
    margin: 0 2px;
    border-radius: 5px;
}

.page-link:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-primary);
    border-color: var(--e-global-color-primary);
}

.page-item.active .page-link {
    background: var(--e-global-color-primary);
    border-color: var(--e-global-color-primary);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-icon {
    font-size: 80px;
    color: var(--e-global-color-secondary);
    margin-bottom: 20px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-item a {
    color: var(--e-global-color-primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--e-global-color-text);
}

/*Blog Search*/
.blog-hero {
    background: linear-gradient(135deg, var(--e-global-color-primary) 0%, var(--e-global-color-secondary) 100%);
    padding: 150px 0 80px;
    color: white;
    text-align: center;
}

.blog-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.search-info {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.search-icon {
    width: 80px;
    height: 80px;
    background: rgba(139, 108, 173, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--e-global-color-primary);
    font-size: 35px;
}

.blog-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-post-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-post-content {
    padding: 25px;
}

.blog-post-meta {
    color: var(--e-global-color-text);
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-post-meta i {
    color: var(--e-global-color-secondary);
    margin-right: 5px;
}


.blog-post-excerpt {
    color: var(--e-global-color-text);
    margin-bottom: 15px;
}

.read-more-btn {
    color: var(--e-global-color-secondary);
    font-weight: 600;
    text-decoration: none;
}

.read-more-btn:hover {
    color: var(--e-global-color-primary);
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.widget-title {
    color: var(--e-global-color-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--e-global-color-secondary);
}

.category-list,
.tag-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list a,
.tag-list a {
    color: var(--e-global-color-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 5px;
}

.category-list a:hover,
.tag-list a:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
}

.tag-list a {
    display: inline-block;
    margin: 0 5px 5px 0;
    padding: 5px 10px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 14px;
}

.pagination {
    justify-content: center;
    margin-top: 40px;
}

.page-link {
    color: var(--e-global-color-primary);
    border: 1px solid #dee2e6;
    margin: 0 2px;
    border-radius: 5px;
}

.page-link:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-primary);
    border-color: var(--e-global-color-primary);
}

.page-item.active .page-link {
    background: var(--e-global-color-primary);
    border-color: var(--e-global-color-primary);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-icon {
    font-size: 80px;
    color: var(--e-global-color-secondary);
    margin-bottom: 20px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-item a {
    color: var(--e-global-color-primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--e-global-color-text);
}

.search-highlight {
    background-color: #fff3cd;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
}

.search-suggestions {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.suggestion-title {
    color: var(--e-global-color-primary);
    margin-bottom: 15px;
}

/*Blog Details Page*/
.blog-hero {
    background: linear-gradient(135deg, var(--e-global-color-primary) 0%, var(--e-global-color-secondary) 100%);
    padding: 150px 0 80px;
    color: white;
    text-align: center;
}

.blog-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.blog-detail-content {
    padding: 80px 0;
}

.blog-post-header {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.blog-post-meta {
    color: var(--e-global-color-text);
    font-size: 16px;
    margin-bottom: 20px;
}

.blog-post-meta i {
    color: var(--e-global-color-secondary);
    margin-right: 5px;
}


.featured-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-content {
    text-align:justify;
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-content p {
    text-align: justify;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--e-global-color-text);
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
    color: var(--e-global-color-primary);
    margin: 30px 0 20px;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.blog-content blockquote {
    border-left: 4px solid var(--e-global-color-secondary);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--e-global-color-text);
    background: #f8f9fa;
    padding: 20px;
    border-radius: 0 10px 10px 0;
}

.post-tags {
    margin: 30px 0;
}

.tag {
    display: inline-block;
    background: #f8f9fa;
    color: var(--e-global-color-text);
    padding: 5px 15px;
    border-radius: 20px;
    margin: 0 5px 5px 0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--e-global-color-secondary);
    color: white;
}

.post-share {
    border-top: 1px solid #e9ecef;
    padding-top: 30px;
    margin-top: 30px;
}

.share-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    color: var(--e-global-color-text);
    margin-right: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-buttons a:hover {
    transform: translateY(-2px);
}

.share-buttons .facebook:hover {
    background: #3b5998;
    color: white;
}

.share-buttons .twitter:hover {
    background: #1da1f2;
    color: white;
}

.share-buttons .linkedin:hover {
    background: #0077b5;
    color: white;
}

.share-buttons .whatsapp:hover {
    background: #25d366;
    color: white;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.widget-title {
    color: var(--e-global-color-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--e-global-color-secondary);
}

.category-list,
.tag-list {
    list-style: none;
    padding: 0;
    margin: 0;
}


.category-list a,
.tag-list a {
    color: var(--e-global-color-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 5px;
}

.category-list a:hover,
.tag-list a:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
}

.tag-list a {
    display: inline-block;
    margin: 0 5px 5px 0;
    padding: 5px 10px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 14px;
}

.related-posts {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.related-post-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.related-post-title {
    color: var(--e-global-color-primary);
    font-size: 18px;
    margin-bottom: 10px;
}

.comments-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.comment-form {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.comment {
    border-bottom: 1px solid #e9ecef;
    padding: 20px 0;
}

.comment:last-child {
    border-bottom: none;
}

.comment-author {
    font-weight: bold;
    color: var(--e-global-color-primary);
    margin-bottom: 5px;
}

.comment-date {
    color: var(--e-global-color-text);
    font-size: 14px;
    margin-bottom: 10px;
}

.comment-content {
    color: var(--e-global-color-text);
    line-height: 1.6;
}

.comment-reply {
    margin-left: 40px;
    margin-top: 20px;
    padding-left: 20px;
    border-left: 2px solid var(--e-global-color-secondary);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-item a {
    color: var(--e-global-color-primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--e-global-color-text);
}

.form-control {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 5px 10px;
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: var(--e-global-color-secondary);
    box-shadow: 0 0 0 0.2rem rgba(98, 195, 188, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--e-global-color-primary) 0%, var(--e-global-color-secondary) 100%);
    border: none;
    padding: 7px 30px;
    border-radius: 30px 30px 30px 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.alert {
    border-radius: 10px;
    margin-bottom: 20px;
}

/*Partner Page*/

.partner-hero {
    background: linear-gradient(135deg, var(--e-global-color-primary) 0%, var(--e-global-color-secondary) 100%);
    padding: 150px 0 80px;
    color: white;
    text-align: center;
}

.partner-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.partner-content {
    padding: 80px 0;
}

.partner-section {
    margin-bottom: 0px;
}

.section-title {
    color: var(--e-global-color-primary);
    text-align: center;
    font-size: 36px;
    line-height:1.2;
}

.partner-card {
    background: white;
    border-radius: 15px;
    padding: 20px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.partner-icon {
    width: 80px;
    height: 80px;
    background: rgba(139, 108, 173, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--e-global-color-primary);
    font-size: 35px;
}

.partner-card h3 {
    color: var(--e-global-color-primary);
    margin-bottom: 15px;
    font-size: 24px;
}

.partner-card p {
    color: var(--e-global-color-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.benefit-list li {
    padding: 0px 0;
    color: var(--e-global-color-text);
    position: relative;
    padding-left: 25px;
}

.benefit-list li:before {
    content: "✓";
    color: var(--e-global-color-secondary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.partner-type-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--e-global-color-secondary);
    transition: all 0.3s ease;
}

.partner-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.partner-type-card h4 {
    color: var(--e-global-color-primary);
    margin-bottom: 5px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--e-global-color-primary) 0%, var(--e-global-color-secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin: 0 auto 20px;*/
    font-size: 24px;
    font-weight: bold;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--e-global-color-secondary);
}

.testimonial-text {
    font-style: italic;
    color: var(--e-global-color-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: var(--e-global-color-primary);
}

.testimonial-role {
    color: var(--e-global-color-text);
    font-size: 14px;
}

.partner-form-section {
    background: #f8f9fa;
    padding: 80px 0;
    border-radius: 20px;
    margin-top: 40px;
}

.partner-form {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
    color: var(--e-global-color-primary);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}


.btn-partner {
    background: linear-gradient(135deg, var(--e-global-color-primary) 0%, var(--e-global-color-secondary) 100%);
    border: none;
    padding: 15px 40px;
    border-radius: 30px 30px 30px 0;
    font-weight: 600;
    font-size: 18px;
    color: white;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-partner:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

.partner-stats {
    background: linear-gradient(135deg, var(--e-global-color-primary) 0%, var(--e-global-color-secondary) 100%);
    color: white;
    padding: 20px 0;
    border-radius: 20px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 8px;
}

.stat-number {
    color:white;
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

.partner-logos {
    padding: 40px 0;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-item {
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.faq-section {
    margin-top: 60px;
}

.accordion-card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    background: white;
    border: none;
}

.accordion-button {
    background: white;
    color: var(--e-global-color-primary);
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: white;
    color: var(--e-global-color-primary);
    box-shadow: none;
}

.accordion-button:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238B6CAD'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.cta-section {
    background: linear-gradient(135deg, var(--e-global-color-primary) 0%, var(--e-global-color-secondary) 100%);
    color: white;
    padding: 70px 0;
    text-align: center;
    border-radius: 20px;
}

.cta-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}
.stage-1{
    margin: 30px 0px;
    border: 2px dashed purple;
    padding: 0px 0px;
    border-radius: 20px;
    box-shadow: 1px 1px 1px 1px aqua;
    background: aliceblue;
}

.stage-header{
    text-align: center;
    background-color: orange;
    color: white;
    font-weight: 700;
    padding: 8px 0px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}
.stage-footer{
    text-align: center;
    background-color: orange;
    color: white;
    font-weight: 700;
    padding: 8px 0px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
.wrapper {
  display : grid;
  grid-template-columns : 240px 1fr;
  gap : 24px;
  padding : 28px;
  max-width : 1200px;
  margin : 0 auto;
  align-items : stretch;
}
.title-panel {
  background : #e9f0d9;
  border-radius : 20px;
}
.title-panel h1 {
  font-size : 28px;
  letter-spacing : .5px;
  text-align : center;
  color : #1e2a6a;
  margin : 0;
  padding : 10px 10px;
}
.grid {
  display : grid;
  grid-template-columns : repeat(2, 1fr);
  gap : 18px;
}
.card {
  background : var(--card);
  border-radius : 28px;
  /*padding : 22px;*/
  box-shadow : var(--shadow);
  min-height : 180px;
  position : relative;
  overflow : hidden;
  border : 1px solid rgba(0, 0,0, .04);
  transition : transform .25s ease, box-shadow .25s ease;
}
  .card : hover {
  transform : translateY(-4px);
  box-shadow : 0 12px 28px rgba(0, 0,0, .12);
}
.card .badge {
  position : absolute;
  top : -14px;
  right : -14px;
  background : var(--accent);
  color : white;
  width : 74px;
  height : 74px;
  border-radius : 50%;
  display : flex;
  align-items : center;
  justify-content : center;
  font-weight : 700;
  font-size : 18px;
  box-shadow : inset 0 0 0 6px rgba(255, 255, 255, .25);
}
.card h3 {
  margin : 0 0 8px;
  font-size : 20px;
  letter-spacing : .2px;
}
.card p {
  margin : 0;
  color : var(--muted);
  line-height : 1.4;
}
.c1 {
  background : #e0f6d6;
}
.c2 {
  background : #e4e6ff;
}
.c3 {
  background : #f8e5ff;
}
.c4 {
  background : #e7f4ff;
}
.section {
  display : flex;
  align-items : flex-start;
  gap : 12px;
}
.section .thumb {
  width : 40px;
  height : 40px;
  border-radius : 12px;
  background : #fff;
  display : grid;
  place-items : center;
  box-shadow : 0 2px 6px rgba(0, 0,0, .08);
  flex-shrink : 0;
}
.section .content {
  font-size : 14px;
}
  @media (max-width : 1000px) {
  .wrapper{grid-template-columns : 1fr; padding : 20px;
  
}

.title-panel {
  transform : rotate(0); height: auto; width: auto; border-radius: 14px; padding : 14px;
}
.title-panel h1 {
  transform : rotate(0); font-size: 22px; padding: 0; text-align : left;
}
.grid {
  grid-template-columns : 1fr 1fr;
}
  }@media (max-width : 640px) {
  .grid{grid-template-columns : 1fr;
}
}.theme-toggle {
  position : fixed;
  bottom : 20px;
  right : 20px;
  padding : 10px 14px;
  border-radius : 999px;
  border : 0;
  background : var(--accent);
  color : white;
  font-weight : 600;
  cursor : pointer;
  box-shadow : var(--shadow);
}
.curricu {
    background: #66c1b8;
    border-radius: 16px;
    padding: 5px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}
.curricu .curricu-img{
    padding:10px 12px;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(139, 109, 174, 0.5));
}
.evo-card{
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid black;
}

.evo-card .evo-img{
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 4px 12px;
    width: 100%;
    object-fit: fill;
}
.feature-product{
    box-shadow: 1px 1px 1px 1px aqua;
    border-radius: 15px;
    margin: 0px 5px 20px;
    background-color: #e9e6e67a;
    padding: 10px 0px;
}

.flowchart {
    display: flex;
    gap: 60px;
    justify-content: center;
    position: relative;
}

.flow-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

/* Flow Line */
.flow-column::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 2px;
    background: #ddd;
    transform: translateX(-50%);
    z-index: 0;
}

.flow-item {
    background: #fff;
    border: 2px solid #007bff;
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    width: 260px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.flow-item .icon {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}

.flow-item p {
    margin: 0;
    font-size: 14px;
}

/* Arrow Connector */
.flow-item::after {
    content: "▼";
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    color: #007bff;
    font-size: 18px;
}

.flow-column .flow-item:last-child::after {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .flowchart {
        flex-direction: column;
        align-items: center;
    }

    .flow-column::before {
        display: none;
    }
}

.features-flow {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 40px;
}

.feature-column {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
}

/* Vertical line */
.feature-column::before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 3px;
    z-index: 0;
}

/* Cards */

.feature-card.main {
    background: #8165a7;
    color: #000;
    font-weight: 700;
}

.feature-card h5 {
    margin: 8px 0 0;
}

.feature-card .icon {
    font-size: 26px;
    display: block;
    margin-bottom: 8px;
}

/* Arrow */
.feature-card::after {
    content: "▼";
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 18px;
}

.feature-column .feature-card:last-child::after {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .features-flow {
        flex-direction: column;
        gap: 50px;
    }

    .feature-column::before {
        display: none;
    }
}
