body{
    padding-top: 140px; /* adjust to navbar height */
     
}


 
 /* --- CORE WRAPPER --- */
.sv-about-wrap {
    background: #f8fafc; /* Professional light grey/white background */
    padding: 80px 0;
    overflow: hidden;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.sv-inner-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* --- ANIMATION BASE --- */
.sv-trigger-el {
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
    visibility: hidden;
}

.sv-from-left { transform: translateX(-80px); }
.sv-from-right { transform: translateX(80px); }

.sv-trigger-el.sv-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* --- CARD STYLING --- */
.sv-feat-card {
    position: relative;
    background: #ffffff; /* Pure white cards */
    border: 1px solid #e2e8f0; /* Subtle border */
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft professional shadow */
    overflow: hidden;
}

.sv-icon-box {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
}

.gold-icon { color: #f59e0b; } /* Professional Orange-Yellow */
.green-icon { color: #10b981; } /* Professional Emerald Green */

.sv-title {
    color: #0f172a; /* Deep Navy/Black */
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 5;
}

.sv-highlight-gold { color: #d97706; } /* Darker Gold for readability on white */
.sv-highlight-green { color: #059669; } /* Darker Green for readability */

.sv-description {
    color: #475569; /* Soft Professional Grey-Black */
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 5;
}

/* --- FLASH EFFECT --- */
.sv-sweep-effect {
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.05), transparent);
    transform: skewX(-25deg);
    animation: svFlashSweep 6s infinite ease-in-out;
}

@keyframes svFlashSweep {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

/* --- GLOW PULSE (Softened for Light Mode) --- */
.sv-glow-ring {
    position: absolute;
    top: 50%; left: 50%;
    width: 120%; height: 120%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(80px);
    opacity: 0.4;
}

.sv-gold-glow { background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%); }
.sv-green-glow { background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%); }

/* --- SPARKLING DOTS (Colorful for Light Mode) --- */
.sv-sparkle-layer .sv-dot {
    position: absolute;
    width: 4px; height: 4px;
    border-radius: 50%;
    animation: svSparkleAnim 3s infinite;
}

.d1, .d2, .d3 { background: #f59e0b; box-shadow: 0 0 5px rgba(245, 158, 11, 0.5); }
.d4, .d5, .d6 { background: #10b981; box-shadow: 0 0 5px rgba(16, 185, 129, 0.5); }

.d1 { top: 15%; left: 20%; }
.d2 { top: 60%; right: 10%; }
.d3 { bottom: 10%; left: 40%; }
.d4 { top: 25%; right: 25%; }
.d5 { bottom: 20%; right: 40%; }
.d6 { top: 45%; left: 15%; }

@keyframes svSparkleAnim {
    0%, 100% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .sv-inner-box { grid-template-columns: 1fr; gap: 20px; }
    .sv-from-left, .sv-from-right { transform: translateY(40px); }
    .sv-about-wrap { padding: 50px 0; }
}
 

/* --- BASE STYLING --- */
.fq-main-wrap {
    background: #f8fafc;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.fq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.fq-header-box {
    text-align: center;
    margin-bottom: 50px;
}

.fq-sub-title {
    color: #f59e0b;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.fq-main-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: #0f172a;
    font-weight: 900;
}

.fq-text-accent { color: #3b82f6; }

/* --- FAQ ITEM STYLING --- */
.fq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.fq-item:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1);
}

.fq-question {
    width: 100%;
    padding: 22px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    transition: color 0.3s;
}

.fq-question:hover { color: #3b82f6; }

.fq-arrow {
    font-size: 0.9rem;
    color: #94a3b8;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- ACTIVE STATE --- */
.fq-item.fq-active {
    border-color: #3b82f6;
    background: #fdfdff;
}

.fq-item.fq-active .fq-arrow {
    transform: rotate(180deg);
    color: #3b82f6;
}

.fq-item.fq-active .fq-question { color: #3b82f6; }

/* --- ACCORDION ANIMATION --- */
.fq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f1f5f9;
}

.fq-active .fq-answer {
    max-height: 300px; /* Large enough for content */
}

.fq-content {
    padding: 25px 30px;
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
}

/* --- 100% MOBILE RESPONSIVE --- */

@media (max-width: 768px) {
    .fq-main-wrap { padding: 60px 0; }
    .fq-question { padding: 18px 20px; font-size: 1rem; }
    .fq-content { padding: 20px; font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .fq-main-title { font-size: 1.7rem; }
    .fq-question { gap: 10px; }
}

/* COMPULSORY 250px ULTRA-SMALL DEVICE SUPPORT */
@media (max-width: 320px) {
    .fq-container { padding: 0 10px; }
    .fq-question { padding: 15px; font-size: 0.9rem; }
    .fq-item { border-radius: 12px; }
}

@media (max-width: 250px) {
    .fq-main-wrap { padding: 30px 0; }
    .fq-main-title { font-size: 1rem !important; margin-bottom: 5px; }
    .fq-sub-title { font-size: 0.65rem; }
    .fq-question { padding: 10px; font-size: 0.75rem !important; line-height: 1.3; }
    .fq-content { padding: 10px; font-size: 0.7rem; line-height: 1.4; }
    .fq-arrow { font-size: 0.7rem; }
    .fq-item { border-radius: 8px; margin-bottom: 8px; }
}




/* --- CORE WRAPPER --- */
.sdc-main-wrapper {
    background: #ffffff;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    width: 100%;
}

/* --- BLOCK 1: DIFFERENT --- */
.sdc-different-block {
    max-width: 1100px;
    margin: 0 auto 100px auto;
    padding: 0 20px;
}

.sdc-header { text-align: center; margin-bottom: 60px; }
.sdc-tag { color: #3b82f6; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 10px; }
.sdc-main-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: #0f172a; }
.sdc-txt-gold { color: #f59e0b; }

.sdc-diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.sdc-diff-card {
    background: #f8fafc;
    padding: 50px 40px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
}

.sdc-diff-card:hover { transform: translateY(-10px); border-color: #f59e0b; box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.15); }

.sdc-icon { font-size: 2.5rem; color: #f59e0b; margin-bottom: 25px; }
.sdc-diff-card h3 { font-size: 1.5rem; font-weight: 800; color: #1e293b; margin-bottom: 15px; }
.sdc-diff-card p { color: #64748b; line-height: 1.7; font-size: 1.05rem; }

/* --- BLOCK 2: CONNECT --- */
.sdc-connect-block {
    background: #0f172a;
    padding: 100px 20px;
    position: relative;
}

.sdc-founder-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    background: rgba(255,255,255,0.03);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.sdc-founder-visual { position: relative; flex-shrink: 0; }
.sdc-founder-img {
    width: 280px; height: 280px;
    border-radius: 30px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border: 5px solid rgba(255,255,255,0.1);
}

.sdc-profile-glow {
    position: absolute; top: -20px; left: -20px; right: -20px; bottom: -20px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    animation: sdcPulse 4s infinite alternate;
}

@keyframes sdcPulse { from { opacity: 0.5; transform: scale(0.9); } to { opacity: 1; transform: scale(1.1); } }

.sdc-founder-content { flex: 1; color: #fff; }
.sdc-connect-tag { color: #f59e0b; font-weight: 700; margin-bottom: 10px; }
.sdc-founder-name { font-size: 2.5rem; font-weight: 800; margin-bottom: 25px; }
.sdc-quote-box { position: relative; margin-bottom: 35px; }
.sdc-quote-box i { font-size: 2rem; color: #3b82f6; opacity: 0.5; margin-bottom: 15px; display: block; }
.sdc-quote-box p { font-size: 1.2rem; font-style: italic; line-height: 1.6; color: #cbd5e1; }

.sdc-btn-main {
    display: inline-flex; align-items: center; gap: 15px;
    background: #f59e0b; color: #000; padding: 18px 35px;
    border-radius: 50px; font-weight: 800; text-decoration: none;
    transition: 0.3s;
}
.sdc-btn-main:hover { background: #fff; transform: scale(1.05); }

/* --- EFFECTS: FLASH & SPARKLE --- */
.sdc-card-flash {
    position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transform: skewX(-20deg);
    animation: sdcFlash 6s infinite ease-in-out;
}
@keyframes sdcFlash { 0% { left: -100%; } 20% { left: 150%; } 100% { left: 150%; } }

.sdc-sparkles span {
    position: absolute; width: 4px; height: 4px; background: #f59e0b; border-radius: 50%;
    box-shadow: 0 0 10px #f59e0b; opacity: 0; animation: sdcSparkle 3s infinite;
}
.sdc-sparkles span:nth-child(1) { top: 20%; right: 10%; animation-delay: 0s; }
.sdc-sparkles span:nth-child(2) { bottom: 20%; left: 10%; animation-delay: 1.5s; }
@keyframes sdcSparkle { 0%, 100% { opacity: 0; transform: scale(0); } 50% { opacity: 1; transform: scale(1.5); } }

/* --- ENTRANCE ANIMATIONS --- */
.sdc-reveal-left { opacity: 0; transform: translateX(-100px); transition: all 1s ease-out; }
.sdc-reveal-right { opacity: 0; transform: translateX(100px); transition: all 1s ease-out; }
.sdc-reveal-up { opacity: 0; transform: translateY(50px); transition: all 1s ease-out; }

.sdc-active { opacity: 1 !important; transform: translate(0, 0) !important; }

/* --- 100% RESPONSIVE --- */
@media (max-width: 992px) {
    .sdc-diff-grid { grid-template-columns: 1fr; }
    .sdc-founder-container { flex-direction: column; text-align: center; padding: 40px 20px; }
    .sdc-founder-img { width: 200px; height: 200px; }
}

@media (max-width: 480px) {
    .sdc-main-wrapper { padding: 60px 0; }
    .sdc-diff-card { padding: 30px 20px; }
    .sdc-founder-name { font-size: 1.8rem; }
    .sdc-quote-box p { font-size: 1rem; }
    .sdc-btn-main { width: 100%; justify-content: center; box-sizing: border-box; }
}

/* ULTRA SMALL (250px) - COMPULSORY */
@media (max-width: 250px) {
    .sdc-main-wrapper { padding: 30px 0; }
    .sdc-main-title { font-size: 1.1rem !important; }
    .sdc-tag { font-size: 0.6rem; }
    .sdc-diff-card { padding: 15px 10px; border-radius: 12px; }
    .sdc-diff-card h3 { font-size: 0.9rem; margin-bottom: 5px; }
    .sdc-diff-card p { font-size: 0.75rem; line-height: 1.3; }
    .sdc-icon { font-size: 1.5rem; margin-bottom: 10px; }
    
    .sdc-connect-block { padding: 30px 10px; }
    .sdc-founder-container { padding: 15px 10px; border-radius: 15px; }
    .sdc-founder-img { width: 120px; height: 120px; border-radius: 15px; }
    .sdc-founder-name { font-size: 1rem !important; margin-bottom: 10px; }
    .sdc-quote-box p { font-size: 0.7rem; }
    .sdc-btn-main { padding: 12px 15px; font-size: 0.7rem; }
    .sdc-profile-glow, .sdc-card-flash, .sdc-sparkles { display: none; }
}





 
/* --- BASE STYLES --- */
.co-overview-wrap {
    background: #ffffff;
    padding: 100px 0;
    font-family: 'Inter', -apple-system, sans-serif;
    overflow: hidden;
    width: 100%;
}

.co-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* --- HEADER --- */
.co-header-visual { margin-bottom: 50px; }

.co-icon-circle {
    width: 80px; height: 80px;
    background: #f0fdf4;
    color: #22c55e;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    border: 1px solid #dcfce7;
}

.co-pulse-ring {
    position: absolute;
    width: 100%; height: 100%;
    border: 2px solid #22c55e;
    border-radius: 50%;
    animation: coPulse 2s infinite;
}

@keyframes coPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

.co-tag { color: #22c55e; text-transform: uppercase; font-weight: 800; letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 10px; }
.co-title { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 900; color: #0f172a; margin-bottom: 0; }
.co-gradient-txt { background: linear-gradient(90deg, #22c55e, #10b981); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* --- CONTENT CARD --- */
.co-content-card {
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.co-main-desc {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 40px;
}

.co-main-desc strong { color: #0f172a; font-weight: 800; }

.co-vision-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.co-v-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}

.co-v-box i { color: #22c55e; }

.co-belief-statement {
    background: #f0fdf4;
    padding: 30px;
    border-radius: 25px;
    position: relative;
    border-left: 5px solid #22c55e;
}

.co-quote-icon {
    font-size: 1.5rem;
    color: #22c55e;
    opacity: 0.3;
    margin-bottom: 15px;
    display: block;
}

.co-belief-statement p {
    font-size: 1.15rem;
    color: #166534;
    line-height: 1.6;
    margin: 0;
}

/* --- EFFECTS --- */
.co-light-sweep {
    position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.05), transparent);
    transform: skewX(-20deg);
    animation: coSweep 7s infinite linear;
}

@keyframes coSweep { 0% { left: -100%; } 20% { left: 150%; } 100% { left: 150%; } }

.co-sparkle { position: absolute; width: 6px; height: 6px; background: #22c55e; border-radius: 50%; opacity: 0; box-shadow: 0 0 10px #22c55e; animation: coSpark 4s infinite; }
.s1 { top: 15%; right: 10%; }
.s2 { bottom: 15%; left: 10%; animation-delay: 2s; }

@keyframes coSpark { 0%, 100% { opacity: 0; transform: scale(0); } 50% { opacity: 0.8; transform: scale(1.5); } }

/* --- ANIMATIONS --- */
.co-reveal-up { opacity: 0; transform: translateY(50px); transition: 1s cubic-bezier(0.2, 1, 0.3, 1); }
.co-reveal-zoom { opacity: 0; transform: scale(0.95); transition: 1s cubic-bezier(0.2, 1, 0.3, 1); }
.co-active { opacity: 1 !important; transform: translate(0, 0) scale(1) !important; }

/* --- 100% RESPONSIVE --- */

@media (max-width: 768px) {
    .co-overview-wrap { padding: 60px 0; }
    .co-content-card { padding: 40px 25px; }
    .co-main-desc { font-size: 1.1rem; }
    .co-belief-statement p { font-size: 1.05rem; }
}

/* ULTRA SMALL (250px) - COMPULSORY */
@media (max-width: 320px) {
    .co-content-card { padding: 25px 15px; border-radius: 20px; }
    .co-v-box { width: 100%; justify-content: center; }
}

@media (max-width: 250px) {
    .co-overview-wrap { padding: 30px 0; }
    .co-container { padding: 0 10px; }
    .co-icon-circle { width: 50px; height: 50px; font-size: 1.2rem; }
    .co-title { font-size: 1.1rem !important; }
    .co-tag { font-size: 0.65rem; }
    
    .co-content-card { padding: 15px 10px; border-radius: 12px; }
    .co-main-desc { font-size: 0.75rem; line-height: 1.4; margin-bottom: 20px; }
    .co-vision-grid { gap: 10px; margin-bottom: 20px; }
    .co-v-box { padding: 8px 10px; font-size: 0.7rem; border-radius: 8px; }
    
    .co-belief-statement { padding: 15px; border-radius: 10px; border-left-width: 3px; }
    .co-belief-statement p { font-size: 0.7rem; }
    .co-quote-icon { font-size: 1rem; margin-bottom: 8px; }
    
    .co-pulse-ring, .co-sparkle, .co-light-sweep { display: none; }
}





.oz-logo1 img {
    height: 100px;
}


@media (max-width: 768px) {
    .oz-logo1 img {
        height: 100px;
    }
}

@media (max-width: 500px) {
    .oz-logo1 img {
        height: 60px;
    }
}

@media (max-width: 300px) {
    .oz-logo1 img {
        height: 33px;
    }
}

@media (max-width: 200px) {
    .oz-logo1 img {
        height: 28px;
    }
}

