/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lexend', sans-serif;
    overflow-x: hidden;
}

/* Hero Banner - Exact Match to Screenshot */
.hero-banner {
    /* background:
        linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 73, 94, 0.85) 25%, rgba(142, 68, 173, 0.85) 50%, rgba(155, 89, 182, 0.85) 75%, rgba(231, 76, 60, 0.85) 100%),
        url('./banner-section.png') center/cover;
        */
    background: url('./images/banner-section.png');
    background-size: cover;
    background-position: right;
    position: relative;
    overflow: hidden;
}

/* Header Navigation */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    width: 340px;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: flex;
    cursor: pointer;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    padding: 5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1002;
    border-radius: 8px;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Menu Icon (PNG Image) */
.menu-icon {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

/* Close Icon (X) */
.close-icon {
    position: absolute;
    width: 24px;
    height: 24px;
    opacity: 0;
    transition: all 0.3s ease;
}

.close-icon span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    top: 50%;
    left: 0;
}

.close-icon span:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
}

.close-icon span:nth-child(2) {
    transform: translateY(-50%) rotate(-45deg);
}

/* Hover States - Only when hovering the toggle button itself */
.menu-toggle:hover .menu-icon {
    opacity: 0;
    transform: scale(0.8);
}

.menu-toggle:hover .close-icon {
    opacity: 1;
    transform: scale(1);
}

/* Menu visibility */
.menu-toggle:hover+.nav-menu {
    opacity: 1;
    visibility: visible;
}

.nav-menu:hover {
    opacity: 1;
    visibility: visible;
}

/* Navigation Menu (Hidden by default) */
.nav-menu {
    position: absolute;
    top: 80%;
    right: 0;
    transform: translateX(0);
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    margin-top: 0px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    min-width: 300px;
    box-shadow: none;
    z-index: 1001;
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.nav-menu ul li {
    margin: 0;
    border-radius: 6px;
    overflow: hidden;
}

.nav-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: block;
    padding: 1rem 2rem;
    border-radius: 6px;
    background: #002256 0% 0% no-repeat padding-box;
border-radius: 6px;
    text-align: center;
}

.nav-menu ul li a:hover {
    color: #ffffff;   
    transform: translateX(-5px) scale(1.05);
    background: #002256 0% 0% no-repeat padding-box;
border-radius: 6px;
}

/* Different colors for specific menu items */

/* Responsive adjustments for nav menu */
@media (max-width: 1199.98px) {
    .nav-menu {
        min-width: 280px;
    }

    .nav-menu ul li a {
        font-size: 0.95rem;
        padding: 0.9rem 1.8rem;
    }
}

@media (max-width: 991.98px) {
    .menu-toggle:hover {
        background: rgba(255, 255, 255, 0.9);
    }

    .menu-toggle:hover span {
        background: #1a1a2e;
    }

    .menu-toggle.active {
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .menu-toggle.active span {
        background: #1a1a2e;
    }

    .nav-menu {
        background: rgba(26, 26, 46, 0.95);
        backdrop-filter: blur(15px);
        border-radius: 15px;
        padding: 1.5rem;
        min-width: 280px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    .nav-menu ul {
        gap: 0.5rem;
    }

    .nav-menu ul li a {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .nav-menu ul li a:hover {
        background: rgba(255, 107, 157, 0.3);
        transform: translateX(5px);
    }
}

@media (max-width: 767.98px) {
    .nav-menu {
        min-width: 250px;
        padding: 1.2rem;
    }

    .nav-menu ul li a {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .nav-menu {
        min-width: 220px;
        padding: 1rem;
    }

    .nav-menu ul li a {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* Hero Content */
/* .hero-content {
    padding: 2rem 0;
    max-width: 600px;
} */

.hero-section {
    padding-top: 300px;
}

.hero-content {
    padding-bottom: 80px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: initial;
    margin-bottom: 2rem;
    color: #ffffff;
    font-family: 'Lexend', sans-serif;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Lexend', sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.watch-btn {
    background: transparent linear-gradient(90deg, #4519DA 0%, #7000A0 100%) 0% 0% no-repeat padding-box;
    border-radius: 52px;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.watch-btn:hover {
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
       background: linear-gradient(135deg, #ff5a8a 0%, #b85fd9 100%);
}

/* Hero Image */
.relative-position {
    position: relative;
}

.hero-image {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.microphone-img {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    width: 100%;
    height: auto;
}

.self-end {
    align-self: flex-end;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 4rem;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .hero-description {
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }
}

@media (max-width: 991.98px) {
    .hero-content {
        text-align: center;
        max-width: 100%;
        padding: 1rem 0;
    }

    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
    }

    .hero-description {
        max-width: 100%;
        margin-bottom: 2rem;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    }

    .relative-position {
        height: 60vh;
    }

    .hero-image {
        position: relative;
        bottom: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .microphone-img {
        max-width: 300px;
        max-height: 350px;
    }
}

@media (max-width: 767.98px) {
    .header {
        padding: 1.5rem 0;
    }

    .logo {
        width: 180px;
    }

    .hero-title {
        font-size: 2.8rem;
        text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
    }

    .hero-description {
        font-size: 1rem;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    }

    .watch-btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
    }

    .relative-position {
        height: 50vh;
    }

    .microphone-img {}
}

@media (max-width: 575.98px) {
    .logo {
        width: 140px;
    }

    .hero-section {
        padding-top: 180px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-content {
        padding: 0.5rem 0;
    }

    .relative-position {
        height: 40vh;
    }

    .microphone-img {}

    .conversations-carousel .owl-stage-outer {
        margin-left: 0px !important;
    }
}

/* Featured Conversations Section */
.featured-conversations {
    background: #001C48;
    padding: 5rem 0px;
    position: relative;
}

.section-header {
    text-align: left;
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Lexend', sans-serif;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-title .highlight {
    color: #F67C60;
}

.section-description {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Lexend', sans-serif;
    margin-bottom: 2rem;
}

/* Slider Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 1rem;
}

.slider-arrow {
    width: 60px;
    height: 50px;
    border-radius: 15px;
    background: linear-gradient(135deg, #F67C60 0%, #c471ed 100%);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.slider-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

.slider-arrow:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.3);
}

.arrow-icon {
    width: 32px;
    height: 32px;
    position: relative;
}

.arrow-left::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 1px;
}

.arrow-left::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-left: 2px solid #ffffff;
    border-top: 2px solid #ffffff;
    top: 50%;
    left: 6px;
    transform: translateY(-50%) rotate(-45deg);
    border-radius: 1px;
}

.arrow-right::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 1px;
}

.arrow-right::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-right: 2px solid #ffffff;
    border-top: 2px solid #ffffff;
    top: 50%;
    right: 6px;
    transform: translateY(-50%) rotate(45deg);
    border-radius: 1px;
}

/* Conversation Cards */
.conversation-card {
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conversation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: 5px;
    justify-content: center;
}

.thumbnail-logo {
    width: 100%;
    filter: brightness(1.5) contrast(1.2);
}

.video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
}

.card-content {
    padding: 1.5rem;
    padding-left: 10px;
    flex-grow: 1;
    display: flex;
    padding-bottom: 15px;
    flex-direction: column;
}

.card-launch-date {
    font-size: 0.9rem;
    color: #1B1673;
    font-weight: 500;
    font-family: 'Lexend', sans-serif;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #F67C60 0%, #c471ed 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #F67C60;
    font-family: 'Lexend', sans-serif;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card-views {
    font-size: 1.2rem;
    color: #666666;
    font-weight: 400;
    margin: 0 0 1.5rem 0;
}

/* Countdown Timer - Overlay in top-right */
.countdown-timer {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    gap: 0.3rem;
    padding: 0.4rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 6px;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-item {
    text-align: center;
    padding: 0.3rem 0.4rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    transition: all 0.3s ease;
    min-width: 35px;
}

.countdown-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.countdown-number {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #F67C60;
    font-family: 'Lexend', sans-serif;
    line-height: 1;
    margin-bottom: 0.1rem;
}

.countdown-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #666666;
    font-family: 'Lexend', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Countdown animation */
.countdown-number.animate {
    animation: countdownPulse 0.5s ease-in-out;
}

@keyframes countdownPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Launched State in Timer */
.launched-status {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.3rem 0.6rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 6px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.launched-message {
    font-size: 1rem;
    font-weight: 700;
    color: #28a745;
    text-align: center;
    font-family: 'Lexend', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Watch Now Container */

.watch-now-btn {
    background: none;
    border: 2px solid #F67C60;
    color: #F67C60;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Lexend', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.watch-now-btn:hover {
    background: #F67C60;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 140, 115, 0.3);
}

/* Launched Message */
.launched-message {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #F67C60 0%, #c471ed 100%);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Lexend', sans-serif;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(247, 140, 115, 0.3);
}

/* Responsive Design for Featured Conversations */
/* Owl Carousel Customization */
.conversations-carousel {
    margin-bottom: 0px;
}

/* Force equal heights for carousel items */
.conversations-carousel .owl-stage {
    display: flex !important;
}

.conversations-carousel .owl-item {
    height: auto !important;
    display: flex !important;
}

.conversations-carousel .owl-stage-outer {
    padding: 1rem 0;
    padding-left: 0px;
}

.conversations-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.conversations-carousel .owl-item {
    display: flex;
    height: auto;
}

.conversations-carousel .owl-item .conversation-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Hide default owl dots */
.conversations-carousel .owl-dots {
    display: none;
}

@media (max-width: 1199.98px) {
    .section-title {
        font-size: 2.5rem;
    }

    .slider-nav {
        position: relative;
        top: auto;
        right: auto;
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

@media (max-width: 991.98px) {
    .featured-conversations {
        padding: 4rem 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .slider-nav {
        justify-content: center;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .featured-conversations {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .card-video {
        height: 260px;
    }



    .card-content {
        padding: 1.2rem;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .countdown-timer {
        gap: 0.3rem;
        padding: 0.8rem;
    }

    .countdown-item {
        padding: 0.4rem;
    }

    .countdown-number {
        font-size: 1.2rem;
    }

    .countdown-label {
        font-size: 0.6rem;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-description br {
        display: none;
    }

    .card-video {
        height: 260px;
    }
    .launched-message{
        font-size: 0.8rem;
        padding:10px;

    }

    .position-card {
        height: auto !important;
    }

    .vinod-profile .space-top {
        border-top: none !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        padding-top: 0px !important;
    }

    .vinod-profile {
        padding-bottom: 0px !important;
    }

    .footer-contact {
        text-align: center !important;
    }

    .menu-toggle {
        width: 24px;
        height: 24px;
    }
    .menu-icon{
        width: 32px;
        height: 32px;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
    }

    .arrow-icon {
        width: 20px;
        height: 20px;
    }

    .arrow-left::before,
    .arrow-right::before {
        width: 10px;
    }

    .arrow-left::after,
    .arrow-right::after {
        width: 6px;
        height: 6px;
    }
}

/* Our Unique Position Section */
.unique-position {
    background: linear-gradient(180deg, #4700A5 0%, #4302A0EF 30%, #2d1a5f 60%, #1a0d3d 100%);
    padding: 5rem 0;
    position: relative;
}

.unique-position .section-header {
    margin-bottom: 4rem;
}

.unique-position .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Lexend', sans-serif;
    margin-bottom: 0;
    line-height: 1.2;
}

.unique-position .section-title .highlight {
    color: #F67C60;
}

/* Position Cards */
.position-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    padding:6px;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.position-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius:8px;
}

.position-card:hover .position-img {
    transform: scale(1.05);
}

.position-card .card-content {
    padding: 2rem 1.5rem;
    padding-bottom: 0px;
}

.position-card .card-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #F67C60;
    font-family: 'Lexend', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.position-card .card-description {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    color: #002256;
    font-family: 'Lexend', sans-serif;
    margin: 0;
}

/* Responsive Design for Unique Position */
@media (max-width: 1199.98px) {
    .unique-position .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .unique-position {
        padding: 4rem 0;
    }

    .unique-position .section-header {
        margin-bottom: 3rem;
    }

    .unique-position .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .unique-position {
        padding: 3rem 0;
    }

    .unique-position .section-title {
        font-size: 2rem;
    }

    .card-image {
        height: 180px;
    }

    .position-card .card-content {
        padding: 1.5rem 1.2rem;
    }

    .position-card .card-title {
        font-size: 1.3rem;
    }

    .position-card .card-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .unique-position .section-title {
        font-size: 1.8rem;
    }

    .card-image {
        height: 160px;
    }

    .position-card .card-content {
        padding: 1.2rem 1rem;
    }

    .position-card .card-title {
        font-size: 1.2rem;
    }

    .position-card .card-description {
        font-size: 0.9rem;
    }
}

/* The Aarambh Philosophy Section */
.aarambh-philosophy {
    background: #001C48;
    padding: 5rem 0;
    position: relative;
}

.philosophy-header {
    margin-bottom: 4rem;
}

.philosophy-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Lexend', sans-serif;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.philosophy-title .highlight {
    color: #F67C60;
}

.philosophy-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Lexend', sans-serif;
    margin: 0;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.sanskrit-quote {
    text-align: center;
    margin: 2rem auto;
    max-width: 600px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sanskrit-text {
    font-size: 1.8rem;
    font-weight: 500;
    color: #F67C60;
    font-family: 'Lexend', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sanskrit-translation {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Lexend', sans-serif;
    margin: 0;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Philosophy Image */
.philosophy-image {
    margin-bottom: 2rem;
}

.philosophy-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #ffffff;
    padding:6px;
}

/* Philosophy Content */
.philosophy-content {
    padding-left: 2rem;
}

.content-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Lexend', sans-serif;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.belief-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.bullet-point {
    width: 8px;
    height: 8px;
    background: #F67C60;
    border-radius: 50%;
    margin-top: 0.6rem;
    flex-shrink: 0;
}

.belief-text {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Lexend', sans-serif;
    margin: 0;
}

/* Responsive Design for Philosophy Section */
@media (max-width: 1199.98px) {
    .philosophy-title {
        font-size: 2.5rem;
    }

    .philosophy-subtitle {
        font-size: 1.1rem;
    }

    .content-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 991.98px) {
    .aarambh-philosophy {
        padding: 4rem 0;
    }

    .philosophy-header {
        margin-bottom: 3rem;
    }

    .philosophy-title {
        font-size: 2.2rem;
    }

    .philosophy-subtitle {
        font-size: 1rem;
    }

    .philosophy-content {
        padding-left: 0;
        margin-top: 2rem;
        text-align: center;
    }

    .content-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .belief-item {
        justify-content: center;
        text-align: left;
        max-width: 500px;
        margin: 1.5rem auto;
    }
}

@media (max-width: 767.98px) {
    .aarambh-philosophy {
        padding: 3rem 0;
    }

    .philosophy-title {
        font-size: 2rem;
    }

    .philosophy-subtitle {
        font-size: 0.95rem;
    }

    .philosophy-subtitle br {
        display: none;
    }

    .sanskrit-quote {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }

    .sanskrit-text {
        font-size: 1.4rem;
    }

    .sanskrit-translation {
        font-size: 0.9rem;
    }

    .content-title {
        font-size: 1.4rem;
    }

    .belief-text {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .philosophy-title {
        font-size: 1.8rem;
    }

    .philosophy-subtitle {
        font-size: 0.9rem;
    }

    .sanskrit-quote {
        padding: 1.2rem;
        margin: 1.2rem auto;
    }

    .sanskrit-text {
        font-size: 1.2rem;
    }

    .sanskrit-translation {
        font-size: 0.85rem;
    }

    .content-title {
        font-size: 1.3rem;
    }

    .belief-text {
        font-size: 0.95rem;
    }

    .belief-item {
        gap: 0.8rem;
    }
}

/* Inspirational Quote Section */
.inspirational-quote {
    background: #001C48;
    padding: 5rem 0;
    padding-top: 0px;
    position: relative;
}

.quote-container {
    text-align: center;
    margin: 0 auto;
    background: transparent linear-gradient(350deg, #002256 0%, #A769E7 100%) 0% 0% no-repeat padding-box;
    border-radius: 10px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.quote-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(196, 113, 237, 0.1) 50%, rgba(142, 68, 173, 0.1) 100%);
    z-index: 1;
}

.quote-text {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.4;
    color: #ffffff;
    font-family: 'Lexend', sans-serif;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.quote-author {
    font-size: 1.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Lexend', sans-serif;
    font-style: normal;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Quote Section */
@media (max-width: 1199.98px) {
    .quote-text {
        font-size: 1.8rem;
    }

    .quote-author {
        font-size: 1.2rem;
    }
}

@media (max-width: 991.98px) {
    .inspirational-quote {
        padding: 3rem 0;
    }

    .quote-container {
        padding: 2.5rem 1.5rem;
    }

    .quote-text {
        font-size: 1.6rem;
    }

    .quote-author {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .quote-container {
        padding: 2rem 1.2rem;
        border-radius: 15px;
    }

    .quote-text {
        font-size: 1.4rem;
        line-height: 1.5;
    }

    .quote-text br {
        display: none;
    }

    .quote-author {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .inspirational-quote {
        padding: 2rem 0;
        padding-top: 0px;
    }

    .quote-container {
        padding: 1.5rem 1rem;
        margin: 0 1rem;
    }

    .quote-text {
        font-size: 1.2rem;
    }

    .quote-author {
        font-size: 0.95rem;
    }
}


/* Behind the Flow Section */
.hosts-section{
    background: linear-gradient(180deg, #4700A5 0%, #4302A0EF 30%, #2d1a5f 60%, #1a0d3d 100%);
}
.behind-the-flow {
    padding: 5rem 0;
    position: relative;
}

.behind-the-flow .section-header {
    margin-bottom: 4rem;
}

.behind-the-flow .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Lexend', sans-serif;
    margin-bottom: 0;
    line-height: 1.2;
}

.behind-the-flow .section-title .highlight {
    color: #F67C60;
}

/* Profile Container */
.profile-container {
    background: transparent;
    padding: 2rem 0;
}

/* Profile Card */
.profile-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 6px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #ffffff;
    margin-bottom: 2rem;
    padding-left:6px;
    padding-right:6px;
}

.profile-image {
    margin-bottom: 1.5rem;
}

.profile-img {
    width: 100%;
    object-fit: cover;
}

.profile-info {
    text-align: center;
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #F67C60;
    font-family: 'Lexend', sans-serif;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.profile-role {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1B1673;
    font-family: 'Lexend', sans-serif;
    margin: 0;
    padding-bottom:5px;
    line-height: 1.4;
}

/* Profile Content */
.profile-content {
    padding-left: 2rem;
}

.content-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Lexend', sans-serif;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content-description {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Lexend', sans-serif;
    margin-bottom: 2rem;
}

/* Expertise Section */
.expertise-section {
    margin-bottom: 2rem;
}

.expertise-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Lexend', sans-serif;
    margin-bottom: 1rem;
}

.expertise-grid {
    display: flex;
    gap: 2rem;
}

.expertise-column {
    flex: 1;
}

.expertise-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    gap: 0.8rem;
}

.expertise-bullet {
    color: #F67C60;
    font-size: 1.2rem;
    font-weight: bold;
}

.expertise-text {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Lexend', sans-serif;
}

/* View Profile Button */
.profile-action {
    margin-top: 2rem;
}

.view-profile-btn {
    background: transparent linear-gradient(90deg, #4519DA 0%, #7000A0 100%) 0% 0% no-repeat padding-box;
    border-radius: 52px;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.view-profile-btn:hover {
    transform: translateY(-2px);
    background: transparent linear-gradient(90deg, #4519DA 0%, #7000A0 100%) 0% 0% no-repeat padding-box;
    color: #ffffff;
    text-decoration: none;
}

/* Responsive Design for Behind the Flow */
@media (max-width: 1199.98px) {
    .behind-the-flow .section-title {
        font-size: 2.5rem;
    }

    .content-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 991.98px) {
    .behind-the-flow {
        padding: 4rem 0;
    }

    .behind-the-flow .section-header {
        margin-bottom: 3rem;
    }

    .behind-the-flow .section-title {
        font-size: 2.2rem;
    }

    .profile-content {
        padding-left: 0;
        margin-top: 2rem;
        text-align: center;
    }

    .content-title {
        font-size: 1.5rem;
    }

    .expertise-grid {
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .behind-the-flow {
        padding: 3rem 0;
    }

    .behind-the-flow .section-title {
        font-size: 2rem;
    }

    .profile-img {
        width: 100%;
        height: auto;
    }

    .profile-name {
        font-size: 1.5rem;
    }

    .profile-role {
        font-size: 1rem;
    }

    .content-title {
        font-size: 1.4rem;
    }

    .content-description {
        font-size: 0.95rem;
    }

    .expertise-grid {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 575.98px) {
    .behind-the-flow .section-title {
        font-size: 1.8rem;
    }

    .profile-card {
        padding:6px;
    }

    .profile-img {
        width: 100%;
        height: auto;
    }

    .profile-name {
        font-size: 1.3rem;
    }

    .profile-role {
        font-size: 0.95rem;
    }

    .content-title {
        font-size: 1.3rem;
    }

    .content-description {
        font-size: 0.9rem;
    }

    .expertise-text {
        font-size: 0.95rem;
    }

    .view-profile-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Vinod Achanta Profile Section */
.vinod-profile {
    position: relative;
}

.vinod-profile .space-top {
    padding: 5rem 0 5rem 0;
    border-top: 1px solid #d3d3d3;
}

.vinod-profile .profile-container {
    background: transparent;
    padding: 2rem 0;
}

.vinod-profile .profile-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 6px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #ffffff;
    margin-bottom: 2rem;
}

.vinod-profile .profile-image {
    margin-bottom: 1.5rem;
}

.vinod-profile .profile-img {
    width: 100%;
    object-fit: cover;
}

.vinod-profile .profile-info {
    text-align: center;
}

.vinod-profile .profile-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #F67C60;
    font-family: 'Lexend', sans-serif;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.vinod-profile .profile-role {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1B1673;
    font-family: 'Lexend', sans-serif;
    margin: 0;
    padding-bottom:5px;
    line-height: 1.4;
}

.vinod-profile .profile-content {
    padding-left: 2rem;
}

.vinod-profile .content-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Lexend', sans-serif;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.vinod-profile .content-description {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Lexend', sans-serif;
    margin-bottom: 2rem;
}

.vinod-profile .expertise-section {
    margin-bottom: 2rem;
}

.vinod-profile .expertise-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Lexend', sans-serif;
    margin-bottom: 1rem;
}

.vinod-profile .expertise-grid {
    display: flex;
    gap: 2rem;
}

.vinod-profile .expertise-column {
    flex: 1;
}

.vinod-profile .expertise-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    gap: 0.8rem;
}

.vinod-profile .expertise-bullet {
    color: #F67C60;
    font-size: 1.2rem;
    font-weight: bold;
}

.vinod-profile .expertise-text {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Lexend', sans-serif;
}

.vinod-profile .profile-action {
    margin-top: 2rem;
}

.vinod-profile .view-profile-btn {
    background: transparent linear-gradient(90deg, #4519DA 0%, #7000A0 100%) 0% 0% no-repeat padding-box;
    border-radius: 52px;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.vinod-profile .view-profile-btn:hover {
    transform: translateY(-2px);
    background: transparent linear-gradient(90deg, #4519DA 0%, #7000A0 100%) 0% 0% no-repeat padding-box;
    color: #ffffff;
    text-decoration: none;
}

/* Responsive Design for Vinod Profile */
@media (max-width: 1199.98px) {
    .vinod-profile .content-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 991.98px) {
    .vinod-profile {
        padding: 2rem 0 4rem 0;
    }

    .vinod-profile .profile-content {
        padding-left: 0;
        margin-top: 2rem;
        text-align: center;
    }

    .vinod-profile .content-title {
        font-size: 1.5rem;
    }

    .vinod-profile .expertise-grid {
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .vinod-profile {
        padding: 2rem 0 3rem 0;
        padding-top: 0px;
    }

    .vinod-profile .profile-img {
        width: 100%;
        height: auto;
    }

    .vinod-profile .profile-name {
        font-size: 1.5rem;
    }

    .vinod-profile .profile-role {
        font-size: 1rem;
    }

    .vinod-profile .content-title {
        font-size: 1.4rem;
    }

    .vinod-profile .content-description {
        font-size: 0.95rem;
    }

    .vinod-profile .expertise-grid {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 575.98px) {
    .vinod-profile .profile-card {
        padding: 6px;
    }

    .vinod-profile .profile-img {
        width: 100%;
        height: auto;
    }

    .vinod-profile .profile-name {
        font-size: 1.3rem;
    }

    .vinod-profile .profile-role {
        font-size: 0.95rem;
    }

    .vinod-profile .content-title {
        font-size: 1.3rem;
    }

    .vinod-profile .content-description {
        font-size: 0.9rem;
    }

    .vinod-profile .expertise-text {
        font-size: 0.95rem;
    }

    .vinod-profile .view-profile-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Be Par
t of the Journey Section */
.be-part-journey {
    background: url('./images/Group 25.png');
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.be-part-journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 37, 87, 0.7);
    z-index: 1;
}

.journey-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.journey-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Lexend', sans-serif;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.journey-title .highlight {
    color: #F67C60;
}

.journey-description {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Lexend', sans-serif;
    margin-bottom: 3rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.journey-form {
    position: relative;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    outline: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-family: 'Lexend', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #F67C60;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(247, 140, 115, 0.3);
    transform: translateY(-2px);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.submit-btn {
    background: transparent linear-gradient(90deg, #4519DA 0%, #7000A0 100%) 0% 0% no-repeat padding-box;
    border-radius: 52px;
    color: #ffffff;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Lexend', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
    background: linear-gradient(135deg, #ff5a8a 0%, #b85fd9 100%);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Responsive Design for Be Part of Journey */
@media (max-width: 1199.98px) {
    .journey-title {
        font-size: 2.5rem;
    }

    .journey-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 991.98px) {
    .be-part-journey {
        padding: 5rem 0;
    }

    .journey-title {
        font-size: 2.2rem;
    }

    .journey-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .contact-form {
        max-width: 600px;
    }
}

@media (max-width: 767.98px) {
    .be-part-journey {
        padding: 4rem 0;
    }

    .journey-title {
        font-size: 2rem;
    }

    .journey-description {
        font-size: 0.95rem;
    }

    .journey-description br {
        display: none;
    }

    .form-input,
    .form-textarea {
        padding: 0.9rem 1.2rem;
        font-size: 1rem;
    }

    .submit-btn {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        min-width: 160px;
    }
}

@media (max-width: 575.98px) {
    .be-part-journey {
        padding: 3rem 0;
    }

    .journey-title {
        font-size: 1.8rem;
    }

    .journey-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .subscription-form {
        max-width: 100%;
        padding: 0 1rem;
    }

    .form-group {
        padding: 12px;
    }

    .email-input {
        font-size: 0.95rem;
        padding: 0.7rem 1rem;
    }

    .notify-btn {
        font-size: 0.95rem;
        padding: 0.7rem 1.2rem;
    }
}

/* Footer Section */
.footer {
    background: #001C48;
    padding: 3rem 0 1.5rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo-img {
    width: 230px;
    height: auto;
    filter: brightness(1.2);
}

/* Footer Info */

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F67C60;
    font-family: 'Lexend', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.footer-address {
    margin: 0;
}

.address-line {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Lexend', sans-serif;
    margin: 0;
    line-height: 1.5;
}

/* Footer Contact */
.footer-contact {
    margin-bottom: 2rem;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F67C60;
    font-family: 'Lexend', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.contact-info {
    margin: 0;
}

.contact-phone,
.contact-email {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Lexend', sans-serif;
    margin: 0;
    line-height: 1.5;
}

.contact-map {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Lexend', sans-serif;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-map:hover {
    color: #F67C60;
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

/* Footer Links */
.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-link {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Lexend', sans-serif;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #F67C60;
    text-decoration: none;
}

.separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #F67C60;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #A769E7;
    border-color: #A769E7;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
}

/* Responsive Design for Footer */
@media (max-width: 1199.98px) {
    .footer-logo-img {
        width: 180px;
    }

    .footer-title,
    .contact-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 991.98px) {
    .footer {
        padding: 2.5rem 0 1.5rem 0;
    }

    .footer-info,
    .footer-contact {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-contact {
        text-align: center;
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding: 2rem 0 1.5rem 0;
    }

    .footer-logo {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .footer-logo-img {
        width: 160px;
    }

    .footer-title,
    .contact-title {
        font-size: 1.1rem;
    }

    .address-line,
    .contact-phone,
    .contact-email,
    .contact-map {
        font-size: 0.9rem;
    }

    .footer-links {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .footer {
        padding: 1.5rem 0 1rem 0;
    }

    .footer-logo-img {
        width: 140px;
    }

    .footer-title,
    .contact-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .address-line,
    .contact-phone,
    .contact-email,
    .contact-map {
        font-size: 0.85rem;
    }

    .footer-link {
        font-size: 0.85rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .footer-bottom {
        padding-top: 1rem;
        margin-top: 1.5rem;
    }
}

/* 
What We Explore Section */
.what-we-explore {
    background: #ffffff;
    padding: 5rem 0;
    position: relative;
}

.what-we-explore .section-header {
    margin-bottom: 4rem;
}

.what-we-explore .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    font-family: 'Lexend', sans-serif;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.what-we-explore .section-title .highlight {
    color: #F67C60;
}

.what-we-explore .section-description {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    color: #666666;
    font-family: 'Lexend', sans-serif;
    margin: 0;
}

/* Explore Cards */
.explore-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.explore-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.explore-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F67C60 0%, #c471ed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: transform 0.3s ease;
}

.explore-card:hover .explore-icon {
    transform: scale(1.1);
}

.explore-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.explore-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    font-family: 'Lexend', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.explore-description {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #666666;
    font-family: 'Lexend', sans-serif;
    margin: 0;
}

/* Responsive Design for What We Explore */
@media (max-width: 1199.98px) {
    .what-we-explore .section-title {
        font-size: 2.5rem;
    }

    .what-we-explore .section-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 991.98px) {
    .what-we-explore {
        padding: 4rem 0;
    }

    .what-we-explore .section-header {
        margin-bottom: 3rem;
    }

    .what-we-explore .section-title {
        font-size: 2.2rem;
    }

    .what-we-explore .section-description {
        font-size: 1rem;
    }

    .explore-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .what-we-explore {
        padding: 3rem 0;
    }

    .what-we-explore .section-title {
        font-size: 2rem;
    }

    .what-we-explore .section-description {
        font-size: 0.95rem;
    }

    .what-we-explore .section-description br {
        display: none;
    }

    .explore-icon {
        width: 70px;
        height: 70px;
    }

    .explore-icon i {
        font-size: 1.8rem;
    }

    .explore-title {
        font-size: 1.3rem;
    }

    .explore-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .what-we-explore .section-title {
        font-size: 1.8rem;
    }

    .what-we-explore .section-description {
        font-size: 0.9rem;
    }

    .explore-card {
        padding: 1.5rem 1.2rem;
    }

    .explore-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .explore-icon i {
        font-size: 1.5rem;
    }

    .explore-title {
        font-size: 1.2rem;
    }

    .explore-description {
        font-size: 0.9rem;
    }
}

/** Responsive Custom **/
@media only screen and (min-width:700px) and (max-width:1400px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-description,
    .watch-btn,
    .section-description,
    .card-views,
    .philosophy-subtitle,
    .position-card .card-description,
    .belief-text,
    .profile-role,
    .content-description,
    .expertise-text,
    .vinod-profile .content-description,
    .vinod-profile .expertise-text,
    .vinod-profile .profile-role,
    .journey-description,
    .address-line,
    .contact-phone,
    .contact-email,
    .contact-map,
    .footer-link {
        font-size: 1.1rem;
    }

    .section-title,
    .philosophy-title,
    .behind-the-flow .section-title {
        font-size: 2.8rem;
    }

    .card-title,
    .position-card .card-title,
    .content-title,
    .profile-name,
    .vinod-profile .profile-name,
    .footer-title {
        font-size: 1.4rem;
    }

    .quote-text {
        font-size: 2rem;
    }
}