/* Variables */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;700;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}
:root {
    --navy-dark: #0a1d37;       /* Main Background Blue */
    --accent-cyan: #4fd2c9;     /* Button/Highlight Color */
    --text-white: #ffffff;
    --text-muted: #cbd5e1;
    --transition: all 0.3s ease;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--navy-dark);
    color: var(--text-white);
    margin: 0;
}



:root {
    --navy-dark: #0a1d37;
    --accent-cyan: #4fd2c9;
    --text-white: #ffffff;
    --transition: all 0.3s ease;
}

.custom-nav {
    background-color: var(--navy-dark);
    padding: 15px 0; /* Padding thori kam ki hai logo balance ke liye */
    transition: var(--transition);
    border-bottom: 1px solid rgba(79, 210, 201, 0.1);
}

/* Logo Styling */
.nav-logo-img {
    height: 80px; /* Aap apni image ke mutabiq isay adjust kar sakte hain */
    width: 100px;
    object-fit: contain;
}

.nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    margin-left: 25px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-cyan) !important;
}

/* Navbar Button (Get Started) */
.nav-btn {
    background-color: var(--accent-cyan);
    color: var(--navy-dark) !important;
    padding: 8px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    transition: var(--transition);
}

.nav-btn:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--navy-dark);
        padding: 30px;
        margin-top: 10px;
        border-top: 2px solid var(--accent-cyan);
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    
    .nav-link {
        margin-left: 0;
        margin-bottom: 15px;
        text-align: center;
        font-size: 1.1rem;
    }
    
    .nav-btn {
        display: block;
        text-align: center;
        margin-top: 10px;
    }

    .navbar-toggler {
        border-color: rgba(79, 210, 201, 0.5);
        padding: 5px;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        border-color: var(--accent-cyan);
    }

    .navbar-toggler-icon {
        filter: invert(1) sepia(1) saturate(5) hue-rotate(130deg); /* Isse toggler icon Cyan ho jayega */
    }
}


@media (max-width: 1075px) {
    .hero-section h1{
        padding-top: 100px;
    }
}




@media (max-width: 1010px) {
    .hero-section h1{
        padding-top: 120px;
    }
}









.hero-section {
    padding-top: 50px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.sub-title {
    color: var(--accent-cyan);
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}
.hero-text h1 {
    font-size: 55px;
    font-weight: 650;
}
.hero-text p {
    font-size:24px; 
    font-weight: 300;
}
.btn-main {
    background-color: var(--text-white);
    color: var(--navy-dark);
    padding: 14px 30px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: var(--transition);
}
.btn-main:hover {
    background-color: var(--accent-cyan);
    color: white;
}
.btn-outline {
    border: 2px solid var(--accent-cyan);
    color: white;
    padding: 14px 30px;
    text-decoration: none;
     text-align: center;
    font-weight: 700;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: var(--accent-cyan);
    color: var(--navy-dark);
}
.hero-img-container img {
    width: 100%;
    border-radius: 50px;
    display: block;
}
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .hero-btns {
        flex-direction: column;
    }
    .hero-img-container {
        margin-top: 50px;
    }
}


:root {
    --dark-bg: #0a1d37;    /* Aapki website ka navy blue */
    --accent-color: #4fd2c9; /* Cyan highlight */
    --card-white: #ffffff;
    --text-navy: #0f172a;
}

.publications-section {
    background-color: var(--dark-bg);
    overflow: hidden;
}

.section-heading {
    padding-top: 50px;
    text-align: center;
    color: white;
    font-weight: 800;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.section-heading span {
    color: var(--accent-color);
}

/* Slider Container */
.infinite-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

/* The Animation Track */
.slider-track {
    display: flex;
    width: calc(300px * 8); /* Card width * number of total cards */
    animation: scroll 30s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused; /* Mouse lane par slider ruk jayega */
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-300px * 4)); } /* Half of total cards */
}

/* Card Styling */
.pub-card {
    width: 280px;
    background: var(--card-white);
    border-radius: 12px;
    margin: 0 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.pub-logo {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
}

.pub-logo img {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
}

/* Bottom Stats Area */
.pub-info {
    background-color: #f8fafc; /* Very light blue/gray */
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.pub-info h4 {
    color: var(--text-navy);
    font-weight: 800;
    margin: 0;
    font-size: 1.4rem;
}

.pub-info p {
    color: #64748b;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    margin: 5px 0 0 0;
    letter-spacing: 1px;
}

/* Glass effect on sides (Optional) */
.infinite-slider::before, .infinite-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.infinite-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--dark-bg), transparent);
}

.infinite-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--dark-bg), transparent);
}

/* Responsive */
@media (max-width: 768px) {
    .pub-card { width: 220px; }
    .pub-logo { height: 120px; }
    .slider-track { width: calc(240px * 8); }
    @keyframes scroll {
        100% { transform: translateX(calc(-240px * 4)); }
    }
}









:root {
    --bg-dark: #0a1d37;      /* Aapki Navy Blue branding */
    --accent-cyan: #4fd2c9;  /* Cyan highlight */
}

.magazine-section {
    background-color: var(--bg-dark);
    padding: 0px 0;
    overflow: hidden;
}

.section-heading {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-heading span {
    color: var(--accent-cyan);
}

/* Slider Container */
.magazine-slider {
    width: 100%;
    position: relative;
    padding: 20px 0;
}

/* Fade effects on edges like the image */
.magazine-slider::before, .magazine-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Track for Animation */
.magazine-track {
    display: flex;
    width: calc(320px * 8); /* Card width + gap * total cards */
    gap: 30px;
    animation: infiniteScroll 40s linear infinite;
}

.magazine-track:hover {
    animation-play-state: paused; /* User mouse laye ga to slider ruk jayega */
}

@keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-320px * 4)); } /* Move by half the cards */
}

/* Magazine Card Styling */
.magazine-card {
    width: 290px; /* Standard Magazine Width */
    height: 400px; /* Standard Magazine Height */
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: transform 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.magazine-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image pori fit ayegi bina stretch huye */
}

.magazine-card:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: var(--accent-cyan);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .magazine-card {
        width: 220px;
        height: 300px;
    }
    .magazine-track {
        width: calc(250px * 8); /* Adjusting track for mobile widths */
    }
    @keyframes infiniteScroll {
        100% { transform: translateX(calc(-250px * 4)); }
    }
    .section-heading { font-size: 1.8rem; }
}




:root {
    --dark-navy: #0a1d37;    /* Primary Dark Blue */
    --card-bg: #0f172a;      /* Slightly lighter blue for cards */
    --accent-cyan: #4fd2c9;  /* Cyan highlights */
    --text-light: #cbd5e1;
}

.brand-static-section {
    background-color: var(--dark-navy);
    padding: 80px 0;
}

.section-title {
    color: white;
    font-weight: 800;
    font-size: 2.5rem;
}

.section-title span {
    color: var(--accent-cyan);
}

/* Grid Layout - 3 Columns on Desktop */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 barabar ke columns */
    gap: 30px; /* Cards ke darmiyan fasla */
    margin-top: 50px;
}

/* Card Styling */
.brand-static-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%; /* Saare cards ek hi height ke honge */
}

/* Hover Effect (Optional) */
.brand-static-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.icon-wrap {
    font-size: 45px;
    color: var(--accent-cyan);
    margin-bottom: 25px;
}

.brand-static-card h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.brand-static-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Adjustments */

/* Tablets - 2 Columns */
@media (max-width: 991px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile - 1 Column */
@media (max-width: 767px) {
    .brand-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 1.8rem;
    }
}







:root {
    --dark-navy: #0a1d37;
    --accent-cyan: #4fd2c9;
    --faq-bg: #ffffff; /* Bar ka white background */
    --text-dark: #1e293b;
}

.faq-section {
    background-color: var(--dark-navy);
    padding: 0px 0;
}

.section-title {
    color: white;
    font-weight: 800;
    font-size: 2.5rem;
}

.section-title span {
    color: var(--accent-cyan);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Individual FAQ Bar */
.faq-item {
    background-color: var(--faq-bg);
    border-radius: 50px; /* Fully rounded like your image */
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.faq-question i {
    font-size: 1.2rem;
    color: #64748b;
    transition: transform 0.3s ease;
}

/* Answer Area (Hidden by default) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background-color: #f8fafc; /* Light gray background for answer */
    padding: 0 35px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Active State Styles */
.faq-item.active {
    border-radius: 25px; /* Thora square jab open ho */
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on content */
    padding-top: 10px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg); /* Plus becomes an X */
    color: var(--accent-cyan);
}









/* --- Yasriz Final Contact Styling (Updated Color Scheme) --- */

.yasriz-simple-contact {
    padding: 10px 0; /* Padding barha di hai behtar look ke liye */
    background-color: #0a1d37; /* Navy Blue Background */
    color: #ffffff;
}

.yasriz-accent {
    color: #4fd2c9; /* Cyan / Aqua Accent */
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.yasriz-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
}

.yasriz-title span {
    color: #4fd2c9; /* Title ka ek hissa Cyan karne ke liye */
}

/* Contact Card Styling */
.contact-link-box {
    display: block;
    text-decoration: none !important;
    background-color: #0f172a; /* Slightly lighter navy for cards */
    padding: 50px 30px;
    border-radius: 24px;
    border: 1px solid rgba(79, 210, 201, 0.1); /* Subtle Cyan border */
    transition: all 0.4s ease-in-out;
    text-align: center;
    height: 100%;
}

/* Hover Effect */
.contact-link-box:hover {
    background-color: #16223a;
    border-color: #4fd2c9;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.icon-circle {
    width: 75px;
    height: 75px;
    background-color: rgba(79, 210, 201, 0.08); /* Faint Cyan background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #4fd2c9; /* Icon color Cyan */
    font-size: 1.8rem;
    transition: 0.4s;
    border: 1px solid rgba(79, 210, 201, 0.2);
}

.contact-link-box:hover .icon-circle {
    background-color: #4fd2c9;
    color: #0a1d37; /* Hover par icon dark aur circle cyan */
}

.contact-link-box h5 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.contact-link-box p {
    color: #cbd5e1; /* Soft grayish blue for text */
    font-size: 1rem;
    margin-bottom: 0;
    word-break: break-all;
    line-height: 1.5;
}