/* Intro Section Container */
.intro-section {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-45deg, #d3d1ed, #e6e4f3, #ffffff, #d3d1ed);
    background-size: 400% 400%;
    animation: sliderBackground 15s ease infinite;
}

@keyframes sliderBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Background Blur Effect */
.intro-section::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Content Wrapper for Flexbox */
.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* Text Side Styling */
.text-side {
    flex: 1;
    min-width: 300px;
}

.main-heading {
    font-size: 3rem;
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
}

.main-para {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
}

.brand-name {
    color: #ca8a04;
}

/* Image Side Styling */
.img-side {
    flex: 0 0 350px; /* Image width fixed to keep it compact */
}

.img-side img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .content-wrapper { flex-direction: column; text-align: center; }
    .main-heading { font-size: 2.2rem; }
    .main-para { font-size: 1rem; }
    .img-side { flex: 0 0 100%; order: -1; margin-bottom: 20px; }
}
/* section .2 */
/* Vision Section - Dedicated Styles */
.vision-section {
    padding: 80px 20px;
    background-color: #e1eefd;
    /* Professional Mesh Pattern */
    background-image: 
        linear-gradient(rgba(229, 231, 235, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(229, 231, 235, 0.5) 1px, transparent 1px);
    background-size: 40px 40px; /* Grid size */
    position: relative;
    margin-top: -60px;
}
.vision-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.05), transparent 40%);
    pointer-events: none;
}

.vm-row {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.vm-text {
    flex: 1;
    min-width: 300px;
}

.vm-text h2 {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 25px;
}

.vm-text p {
    margin-bottom: 20px;
    color: #4b5563;
    line-height: 1.7;
}

/* Card Styling (Mirroring the Image) */
.vm-card {
    flex: 0 0 350px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border-left: 6px solid #2563eb;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.vm-card h3 {
    font-size: 1.6rem;
    color: #111827;
    margin-top: 0;
    margin-bottom: 25px;
}

.vm-card ul {
    list-style: none;
    padding: 0;
}

.vm-card ul li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    color: #374151;
    line-height: 1.5;
}

.vm-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 800;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .vm-row { flex-direction: column; }
    .vm-card { flex: 1; width: 100%; }
}

/* section.misiion */
/* Mission Section: Layout Switcher */
.mission-section {
    padding: 80px 20px;
  background: linear-gradient(to right, #b8dec8, #a8e0cf, #d2f2ea);
}

.mission-section .vm-row {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    /* row-reverse hata diya, ab box wapas Left mein aa jayega */
    flex-direction: row; 
}

/* Card Styling (Original Left-side design maintained) */
.mission-section .vm-card {
    flex: 0 0 350px;
    background: #ffffff;
    padding: 30px; /* Padding kam kar di */
    border-radius: 12px;
    border-left: 6px solid #2563eb;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Box ki height control karne ke liye */
    max-height: 500px; 
    overflow-y: auto; /* Agar content zyada hua toh scroll ho jayega */
}

.mission-section .vm-card ul li {
    margin-bottom: 12px; /* Margin kam kar diya */
    padding-left: 25px;
    font-size: 0.95rem; /* Font size thoda adjust kiya */
    line-height: 1.4;
}

.mission-section .vm-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0; /* Tick mark Left mein hi rahega */
    color: #2563eb;
    font-weight: 800;
}

/* section.corevalues */
/* Section Background */
.values-section {
  background: #04042d;
  padding: 80px 20px;
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

/* Header */
.values-header { text-align: center; margin-bottom: 60px; }
.values-header h2 { font-size: 3rem; margin-bottom: 15px; color: #fff; }
.values-header p { color: #fffefe; max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* Grid Layout */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Glassmorphism Cards */
.value-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Glowing Hover Effect */
.value-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #6366f1;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #6366f1, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.value-card p {
  color: #f1eeee;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Decorative circle effect on cards */
.value-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.05), transparent 70%);
  opacity: 0;
  transition: 0.5s;
}

.value-card:hover::before { opacity: 1; }


/* section.building technology */

.hero-section {
  background: linear-gradient(145deg, #f3f4f6, #e5e7eb);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
}

/* Background Pattern */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(#d1d5db 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.4;
}

.accent-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 20px;
  position: relative;
}

.accent-title span { color: #3b82f6; }

.subtitle {
  font-size: 1.2rem;
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Colorful Tags */
.tech-tags {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  position: relative;
}

.tech-tags span {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  color: white;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.tech-tags span:hover { transform: translateY(-5px); }

/* Assigning Colors */
.tech-tags span:nth-child(1) { background: linear-gradient(135deg, #FF6B6B, #FF8E53); }
.tech-tags span:nth-child(2) { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.tech-tags span:nth-child(3) { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.tech-tags span:nth-child(4) { background: linear-gradient(135deg, #fa709a, #fee140); }
.tech-tags span:nth-child(5) { background: linear-gradient(135deg, #667eea, #764ba2); }

.focus-text {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 15px 25px rgba(0,0,0,0.05);
  border-left: 5px solid #3b82f6;
  text-align: left;
  color: #374151;
  font-weight: 500;
  position: relative;
  transition: all 0.5s ease; /* Smooth transition */
  cursor: pointer;
  
  /* Gradient initial setup */
  background: linear-gradient(90deg, #ffffff 50%, #f0f4ff 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
}

.focus-text:hover {
  background-position: 0 0; /* Gradient slide hoga */
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15); /* Hover par shadow badhegi */
  border-left-color: #6366f1; /* Border color change */
}
/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .accent-title {
    font-size: 2.2rem; /* Mobile par heading thoda chota hoga */
  }

  .tech-tags {
    gap: 10px;
  }

  .tech-tags span {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .focus-text {
    padding: 20px; /* Mobile par padding kam hogi taaki fit aaye */
    margin: 0 10px;
  }
}

/* section.trust-digiature */
.digiature-section { padding: 40px 20px; text-align: center; font-family: sans-serif; }
.intro { max-width: 800px; margin: 0 auto 30px; color: #555; }

.focus-container { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 20px; 
    max-width: 1000px; 
    margin: 0 auto;
    align-items: stretch; /* Yeh ensure karega ki saare boxes ki height same rahe */
}

.card { 
    padding: 20px; 
    background: #f4f7f6; 
    border-radius: 8px; 
    border-bottom: 3px solid #007bff; 
    font-weight: bold;
    display: flex;          /* Text ko align karne ke liye */
    align-items: center;    /* Vertical center karne ke liye */
    justify-content: center; /* Horizontal center karne ke liye */
}

.outro { margin-top: 30px; font-weight: 600; color: #333; }



/* section.empowering digital */
.transformation-section {
    /* Purple Gradient background */
    background: linear-gradient(135deg, #53568c 0%, #3a3d66 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    border-bottom-left-radius: 50% 10%;
    border-bottom-right-radius: 50% 10%;
}

.transformation-section h2 {
    /* Soft Gold/Cream color for heading */
    color: #f7d794; 
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    padding-left: 250px;
}

.main-text {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #e2e8f0; /* Thoda soft white */
}

.sub-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cbd5e0;
}

strong {
    color: #cdc341; /* Digiature ko white highlight diya */
}
/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .transformation-section {
        padding: 40px 15px; /* Mobile par padding kam ki gayi hai */
        border-bottom-left-radius: 30% 5%; /* Curve ko mobile ke liye adjust kiya */
        border-bottom-right-radius: 30% 5%;
    }

    .transformation-section h2 {
        font-size: 1.8rem; /* Mobile par heading choti ki gayi hai */
    }

    .main-text {
        font-size: 1.1rem;
    }
}



/* section.lets build */
.future-section {
    padding: 80px 20px;
    background-color: #f4f7f9; /* Halka grey/blue tint */
    display: flex;
    justify-content: center;
}

.future-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    max-width: 1000px;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); /* Floating effect */
    text-align: center;
    border-top: 5px solid #53568c; /* Branding ke liye purple border */
}

.future-card h2 {
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 2rem;
}

.mission-text {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.dedication-text {
    font-weight: 600;
    color: #53568c;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #53568c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.cta-button:hover {
    background: #3a3d66;
    transform: scale(1.05);
}   



/* section.faq */
.faq-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    font-family: sans-serif;
    
    /* Gradient Background Add kiya gaya hai */
   background: linear-gradient(to bottom right, #ffffff, #2973a4);
    border-radius: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.faq-section h2 {
    text-align: center;
    color: #1a365d;
    margin-bottom: 30px;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.faq-item[open] {
    border-left: 5px solid #53568c; /* Purple highlight when open */
}

summary {
    font-weight: 600;
    cursor: pointer;
    color: #2d3748;
    outline: none;
    list-style: none; /* Default arrow hide kiya */
}

summary::after {
    content: '+';
    float: right;
    font-size: 1.2rem;
    color: #53568c;
}

details[open] summary::after {
    content: '-';
}

.faq-item p {
    margin-top: 15px;
    color: #4a5568;
    line-height: 1.6;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}