/* our values */

/* --- Values Hero Section Styles --- */
.values-hero-section {
    padding: 100px 0 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); /* Premium Dark Blue Gradient */
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    position: relative;
}

.values-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* --- Left Side Content --- */
.text-white-badge {
    color: #b38a38!important;
    background-color: rgba(59, 130, 246, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.values-hero-content h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin: 20px 0;
}

.values-hero-content p {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Primary Hero Button */
.values-primary-btn {
    display: inline-block;
    background-color: #b38a38;
    color: #ffffff;
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.values-primary-btn:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #0a2540;
}

/* --- Right Side Visual Graphic --- */
.values-hero-visual {
    position: relative;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

/* Background Subtle Glow */
.value-accent-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Floating Info Cards */
.value-floating-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 20px 25px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 85%;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: floatAnimation 4s ease-in-out infinite;
}

.value-floating-card.card-two {
    align-self: flex-end;
    animation-delay: 2s; /* Doosra card alag timing par float karega */
}

.floating-icon {
    font-size: 32px;
    background: rgba(255, 255, 255, 0.05);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.value-floating-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.value-floating-card p {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.4;
}

/* --- Floating Animation Effect --- */
@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* --- Responsive Media Queries --- */
@media (max-width: 991px) {
    .values-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .values-hero-visual {
        height: auto;
        align-items: center;
    }

    .value-floating-card, 
    .value-floating-card.card-two {
        width: 100%;
        max-width: 450px;
        align-self: center;
        text-align: left;
    }
    
    .values-hero-content h1 {
        font-size: 36px;
    }
}

/* --- Core Values Grid Section Styles --- */
.core-values-grid-section {
    padding: 90px 0;
    background-color: #ffffff; /* Clean White Canvas */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Main Grid Layout --- */
.values-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* --- Value Individual Card --- */
.value-grid-card {
    background: #f8fafc; /* Very soft light gray/blue tint */
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 35px 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.value-grid-card:hover {
    background: #ffffff;
    transform: translateY(-8px);
    border-color: #0a2540;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(59, 130, 246, 0.04);
}

/* --- Card Header Alignment --- */
.value-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.value-card-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-grid-card:hover .value-card-icon {
    background-color: #0a2540;
    transform: rotate(5deg);
}

/* Card Counter Number Text */
.value-card-num {
    font-size: 16px;
    font-weight: 700;
    color: #cbd5e1;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.value-grid-card:hover .value-card-num {
    color: #0a2540;
}

/* --- Card Typography --- */
.value-grid-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
}

.value-grid-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsive Adaptability --- */
@media (max-width: 768px) {
    .values-main-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-grid-card {
        padding: 30px 25px;
    }
}

/* --- Mission & Vision Section Styles --- */
.values-mv-section {
    padding: 90px 0;
    background-color: #f1f5f9; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Split Layout Grid --- */
.mv-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-split-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 45px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.mv-split-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.mv-card-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, #0a2540, #0a2540);
}

.mv-card-accent.accent-alt {
    background: linear-gradient(to bottom, #b38a38, #b38a38);
}

/* --- Card Sub-tags --- */
.mv-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0a2540;
    display: inline-block;
    margin-bottom: 15px;
}

.mv-tag.tag-alt {
    color: #0a2540;
}

/* --- Typography --- */
.mv-split-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 20px 0;
}

.mv-split-card p {
    font-size: 16px;
    color: #0a2540;
    line-height: 1.7;
    margin: 0 0 30px 0;
}

/* --- Checklist Alignment --- */
.mv-list-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mv-list-features li {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mv-list-features span {
    color: #0a2540;
    font-weight: 700;
}

.mv-list-features.features-alt span {
    color: #1e293b;
}

/* --- Responsive Layout Adjustments --- */
@media (max-width: 991px) {
    .mv-grid-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mv-split-card {
        padding: 35px;
    }
}

/* add new section */
.values-core-section{
   padding:100px 0;
   background:#f9f9f9;
}

.values-header{
   text-align:center;
   max-width:700px;
   margin:0 auto 60px;
}

.section-tag{
   display:inline-block;
   color:#0a2540;
   font-weight:600;
   margin-bottom:10px;
}

.values-grid{
   display:grid;
   grid-template-columns:repeat(4,1fr);
   gap:25px;
}

.value-card{
   background:#fff;
   padding:30px;
   border-radius:12px;
   box-shadow:0 10px 30px rgba(0,0,0,0.06);
   transition:0.3s;
}

.value-card:hover{
   transform:translateY(-5px);
}

.value-icon{
   width:45px;
   height:45px;
   background:#0a2540;
   color:#fff;
   display:flex;
   align-items:center;
   justify-content:center;
   border-radius:8px;
   margin-bottom:15px;
   font-weight:600;
}

/* why choose */
.why-choose-section {
  position: relative;
  padding: 90px 0px;
      background-color: rgb(15, 23, 42); /* Premium deep corporate dark background */
  width: 100%;
}

/* Header */
.section-header{
   text-align:center;
   max-width:750px;
   margin:0 auto 60px;
}

.section-tag{
   color:#0a2540;
   font-weight:600;
   display:inline-block;
   margin-bottom:10px;
}

/* Grid (Desktop) */
.why-grid{
   display:grid;
   grid-template-columns:repeat(2,1fr);
   gap:30px;
}

/* Card */
.why-card{
   background:#1e293b;
   padding:30px;
   border-radius:12px;
   border-left:4px solid #0a2540;
   transition:0.3s;
}

.why-card:hover{
   transform:translateY(-5px);
   background:#ffffff;
   box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

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

/* Tablet (below 992px) */
@media (max-width: 992px){

   .why-choose-section{
      padding:80px 0;
   }

   .why-grid{
      grid-template-columns:1fr 1fr;
      gap:20px;
   }

   .why-card{
      padding:25px;
   }
}

/* Mobile (below 768px) */
@media (max-width: 768px){

   .why-choose-section{
      padding:70px 0;
   }

   .why-grid{
      grid-template-columns:1fr;
      gap:20px;
   }

   .section-header{
      margin-bottom:40px;
      padding:0 15px;
   }

   .why-card{
      padding:22px;
   }
}

/* Small Mobile (below 480px) */
@media (max-width: 480px){

   .why-choose-section{
      padding:60px 0;
   }

   .section-header h2{
      font-size:22px;
   }

   .why-card{
      padding:18px;
      border-left-width:3px;
   }

   .why-card h3{
      font-size:16px;
   }

   .why-card p{
      font-size:14px;
      line-height:1.5;
   }
}

/* process section */
.process-section{
   padding:100px 0;
   background:#f9fbff;
}

/* Grid */
.process-grid{
   display:grid;
   grid-template-columns:repeat(4,1fr);
   gap:25px;
}

/* Card */
.process-card{
   background:#fff;
   padding:30px;
   border-radius:12px;
   text-align:center;
   box-shadow:0 10px 25px rgba(0,0,0,0.06);
   transition:0.3s;
   position:relative;
}

.process-card:hover{
   transform:translateY(-6px);
}

/* Number badge */
.process-number{
   width:50px;
   height:50px;
   margin:0 auto 15px;
   background:#0a2540;
   color:#fff;
   display:flex;
   align-items:center;
   justify-content:center;
   border-radius:50%;
   font-weight:600;
}

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

/* Tablet */
@media (max-width: 992px){
   .process-grid{
      grid-template-columns:repeat(2,1fr);
   }
}

/* Mobile */
@media (max-width: 768px){
   .process-grid{
      grid-template-columns:1fr;
   }

   .process-section{
      padding:70px 0;
   }

   .process-card{
      padding:25px;
   }
}

/* Small Mobile */
@media (max-width: 480px){
   .process-card{
      padding:20px;
   }

   .process-card h3{
      font-size:16px;
   }

   .process-card p{
      font-size:14px;
   }
}

/* Compact Centered Section Styles */
.val-compact-section {
    padding: 80px 20px;
    background-color: #0a2540 !important; /* Your custom dark color */
    color: #ffffff;
    font-family: Arial, sans-serif;
    text-align: center; /* Poora content center align rahega */
}

.val-compact-container {
    max-width: 750px; /* Tightly controlled narrow width so it looks elegant */
    margin: 0 auto; /* Horizontally center alignment */
}

.val-compact-tag {
    color: #b38a38 !important; /* Signature Gold Theme */
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.val-compact-container h2 {
    font-size: 36px;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 25px 0;
    font-weight: 700;
}

/* Text Content Area */
.val-compact-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.val-compact-text p {
    font-size: 16px;
    color: #94a3b8; /* Soft blue-grey text for dark background legibility */
    line-height: 1.65;
    margin: 0;
    text-align: center; /* Clean continuous centered paragraphs */
}

/* Bottom Small Badges Line */
.val-compact-badge-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.val-badge-item {
    font-size: 14px;
    color: #cbd5e1;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Mobile Devices Controls */
@media (max-width: 768px) {
    .val-compact-section {
        padding: 60px 15px;
    }
    .val-compact-container h2 {
        font-size: 28px;
    }
    .val-compact-badge-row {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
}
