:root {
    /* --- Primary Colors --- */
    --color-primary-dark-blue: #001e6c; /* Used in top bar, hero overlay, navbar toggler */
    --color-primary-medium-blue: #252575; /* Used for nav-link hover, counter, theme background */
    --color-primary-light-blue: #102970; /* Used for icon-circle background */
    --color-primary-light-gray-bg: #F5F5FF; /* Used for India Participation section background */
    --color-text-main: #000000;
    --color-text-light: #ffffff;
    --color-text-subtle: #d8d8d8;

    /* --- Secondary/Accent Colors --- */
    --color-accent-register: #07ACD0; /* Register button color */
    --color-accent-register-hover: #006bff; /* Register button hover start color */

    /* --- Typography --- */
    --font-family-body: 'Roboto', sans-serif;
    --font-family-heading: 'Montserrat', serif;
    --font-weight-body-regular: 400;
    --font-weight-body-medium: 500;
    --font-weight-heading-medium: 500;
    --font-weight-heading-bold: 700;
    --font-weight-heading-extra-bold: 800;
    --font-weight-heading-black: 900;

    --font-size-base: 1rem; /* 16px */
    --font-size-top-bar: 0.9rem; /* 14.4px */
    --font-size-top-text: 12px;
    --font-size-h1: 5.4rem;
    --font-size-h2: 2rem; /* Adjusted for objective section */
    --font-size-about-h2: 40px;
    --font-size-counter: 3rem;

    /* --- Layout & Spacing --- */
    --border-color-light: #D5D5D5;
    --section-padding: 40px 0;
    --border-radius-base: 10px;
    --border-radius-card-large: 12px;
}

/* Base Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-body) !important;
    color: var(--color-text-main);
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-heading-bold);
}

h2{
    color: var(--color-text-main);
}

a {
    /* Assuming var(--color-primary-maroon) was a placeholder. Reverting to black/blue */
    color: var(--color-primary-dark-blue); 
    text-decoration: none;
}

p {
    font-size: var(--font-size-base);
    font-family: var(--font-family-body) !important;
    font-weight: var(--font-weight-body-medium);
}

/* --- Top Bar --- */
.top-bar {
    background-color: var(--color-primary-dark-blue);
    font-size: var(--font-size-top-bar);
}

.top-text{
    display: flex;
    align-items: center;
    padding: 6px 50px;
    justify-content: space-between;
}

.top-text p {
    margin-bottom: 0px;
    font-size: var(--font-size-top-text);
    font-weight: var(--font-weight-body-regular);
    color: var(--color-text-light);
}

/* --- Header styling --- */
.header {
    background-color: var(--color-text-light);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 10px 40px;
    overflow: hidden; 
}

.logo {
    height: 50px;
}

.logo-sebi {
    height: 40px;
}

.mid-logo {
    height: 25px;
}

.logo-iosco {
    height: 55px;
}

/* --- Navbar --- */
.navbar {
    border-top: 1px solid var(--border-color-light);
    background-color: var(--color-text-light) !important;
}

.navbar-toggler {
    background: var(--color-primary-dark-blue) !important;
}

.nav-link {
    color: var(--color-text-main) !important;
    font-weight: var(--font-weight-body-medium);
}

.nav-link:hover {
    color: var(--color-primary-medium-blue) !important;
}

/* --- Hero section --- */
.hero-section {
    background: url('../images/banner.jpg') center/cover no-repeat;
    height: 80vh;
    position: relative;
}

.hero-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 30, 108, 0.6); /* Using literal color for opacity control */
}

.hero-section .content {
    z-index: 2;
    color: var(--color-text-light);
    padding-left: 40px;
}

.hero-section h1 {
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-heading-black);
}

.hero-section p {
    font-family: var(--font-family-heading);
    font-size: 30px;
    font-weight: var(--font-weight-body-regular);
}

/* --- About Section --- */
.about-sec{
    text-align: center;
}

.about-sec h2{
    font-size: var(--font-size-about-h2);
    font-weight: var(--font-weight-heading-extra-bold);
}

/* --- Global Collaboration Section (Counters) --- */
section.global-collaboration {
    padding: var(--section-padding);
    background-color: var(--color-text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
    background: url('../images/world-map\ 1.svg') bottom/cover no-repeat;
}

.global-collaboration h2 {
    font-weight: var(--font-weight-heading-bold);
    margin-bottom: 20px;
}

.counter-box {
    border: 1px solid var(--border-color-light);
    border-radius: var(--border-radius-base);
    padding: 40px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.counter-box:hover {
    transform: translateY(-5px);
}

.counter {
    font-size: var(--font-size-counter);
    font-weight: var(--font-weight-heading-bold);
    color: var(--color-primary-medium-blue);
}

.counter-box p {
    margin-top: 10px;
    font-size: var(--font-size-base);
    color: var(--color-text-main);
}

.info-text {
    max-width: 850px !important;
    margin: 40px auto 0;
    color: var(--color-text-main);
    line-height: 1.8;
}

/* Optional background world map effect */
.global-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    z-index: 0;
}

.content {
    position: relative;
    z-index: 2;
}

/* --- Objective Section --- */
section.objective {
    background-image: url(../images/india-bg.png);
    color: var(--color-text-light);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.objective h2 {
    font-weight: var(--font-weight-heading-bold);
    color: var(--color-text-light);
    font-size: var(--font-size-h2);
    text-align: center;
    margin-bottom: 10px;
}

.objective h5 {
    text-align: center;
    font-weight: var(--font-weight-heading-medium);
    margin-bottom: 20px;
}

.objective p.subtext {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--color-text-subtle);
}

.objective ul {
    list-style: none;
    padding-left: 0;
}

.btn:focus{
    box-shadow: unset !important;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: unset !important;
}

.navbar-toggler-icon {
    height: 1.1em !important;
}

.objective ul li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

.objective ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../images/check.svg');
}

.objective img {
    border-radius: var(--border-radius-base);
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* --- India’s Participation Section --- */
.india-participation {
    position: relative;
    background: var(--color-primary-light-gray-bg) url('../images/India-Participation-bg.svg') center/cover no-repeat;
    overflow: hidden;
    padding: var(--section-padding);
}

.india-participation .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 245, 255, 0.4); 
    z-index: 1;
}

.india-participation .container-fluid {
    position: relative;
    z-index: 2;
}

.india-participation h2 {
    font-weight: var(--font-weight-heading-bold);
    color: var(--color-text-main);
}

.india-participation .subtext {
    color: #161616;
    max-width: 900px;
    line-height: 1.7;
    font-size: var(--font-size-base);
}

.card-box {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--border-radius-base);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: left;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contant-box{
    padding: 15px 25px;
    text-align: center;
}

.card-box:hover {
    padding-top: 2px;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.icon-circle {
    position: relative;
    width: 70px;
    height: 70px;
    background: var(--color-primary-light-blue);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    border-top-right-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

/* Icon inside */
.icon-circle img {
    position: relative;
    z-index: 2;
    width: 40px !important;
    height: 40px;
    filter: brightness(0) invert(1);
}

.card-box h5 {
    font-weight: var(--font-weight-heading-bold);
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--color-text-main);
}

.card-box p {
    font-size: 0.95rem;
    color: var(--color-text-main);
    margin-bottom: 0;
    flex-grow: 1;
    font-weight: 300;
}

/* Owl Carousel styling */
.india-participation .owl-carousel .item {
    padding: 0px;
    padding-bottom: 10px;
}

.owl-stage {
    display: flex;
}

.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: #ccc;
    display: block;
    border-radius: 50%;
    margin: 5px;
    transition: all 0.3s;
    display: none;
}

/* --- Key Themes Section Styles --- */
.key-themes {
    background: var(--color-text-light);
    overflow: hidden;
    position: relative;
    padding: var(--section-padding);
}

.key-themes h2 {
    font-weight: var(--font-weight-heading-bold);
    color: var(--color-text-main);
}

.key-themes-subtext {
    color: var(--color-text-main);
    max-width: 900px;
    line-height: 1.7;
    font-size: var(--font-size-base);
}

/* ---- CARD DESIGN ---- */
.key-themes-card {
    background: var(--color-text-light);
    border-radius: var(--border-radius-card-large);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    height: 420px; 
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.key-themes-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ---- IMAGE ---- */
.key-themes-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-card-large);
}

/* ---- CONTENT OVER IMAGE ---- */
.key-themes-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Using literal colors here for the gradient */
    background: linear-gradient(95.05deg, rgba(37, 37, 117, 0.8) 53.65%, rgba(135, 138, 195, 0) 117.01%);
    color: var(--color-text-light);
    padding: 20px;
    text-align: left;
    border-bottom-left-radius: var(--border-radius-card-large);
    border-bottom-right-radius: var(--border-radius-card-large);
    z-index: 2;
    transition: all 0.3s ease;
}

/* Slight hover lift for content */
.key-themes-card:hover .key-themes-content {
    background: rgba(16, 41, 112, 0.9);
}

/* ---- TEXT INSIDE CONTENT ---- */
.key-themes-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-light);
}

.key-themes-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #f5f5ff; /* A slight variation of --color-text-light */
    margin: 0;
}

/* ---- OWL CAROUSEL DOTS ---- */
.owl-theme .owl-dots .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    margin: 5px;
    transition: all 0.3s;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: var(--color-primary-light-blue);
    transform: scale(1.2);
}

.owl-theme .owl-nav {
    margin-top: 10px;
    display: none;
}

button#basic-addon2 {
    padding: 11px;
    margin-left: -21px;
    border-radius: 0px;
}

/* --- WIW Highlights Section --- */
.wiw-highlights {
    background: var(--color-text-light) url('../images/shape-14\ 1.svg') center/cover no-repeat;
    position: relative;
    padding: var(--section-padding);
    overflow: hidden;
}

.wiw-highlights::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Using literal colors here for the gradient */
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(245,245,255,0.3) 100%);
    z-index: 0;
}

.wiw-highlights .container {
    position: relative;
    z-index: 1;
}

.wiw-highlights h2 {
    font-weight: var(--font-weight-heading-bold);
    color: var(--color-text-main);
}

/* Photo grid */
.highlight-gallery img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.highlight-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Event info */
.highlight-info {
    font-size: 1.5rem;
    color: var(--color-text-main);
}

.highlight-info .event-date strong,
.highlight-info .event-theme strong {
    color: var(--color-text-main);
}

.highlight-info .event-date span {
    color: var(--color-primary-medium-blue);
    font-weight: var(--font-weight-heading-bold);
    border-bottom: 1px solid #181865;
}

.highlight-info .event-theme {
    margin-top: 5px;
}

.highlight-info .event-theme {
    background: linear-gradient(90deg, var(--color-primary-medium-blue) 0%, #303091 100%);
    color: var(--color-text-light);
    padding: 5px 26px;
    border-radius: 2px;
    font-weight: 600;
    display: inline-block;
}

.highlight-info .event-theme p{
    margin-bottom: 0px;
}

/* Logos */
.highlight-logos p {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.logo-img {
    height: 60px;
    padding: 10px;
    border: 1px solid var(--border-color-light);
    border-radius: 2px;
}

.nav-icon {
    margin-right: 8px;
    height: 16px !important;
}

/* Button */
.register-btn {
    background: var(--color-accent-register);
    color: var(--color-text-light);
    padding: 10px 50px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background: linear-gradient(90deg, var(--color-accent-register-hover), #00b8ff);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 107, 255, 0.4);
    color: var(--color-text-light);
}

/* --- Video Section Styles --- */
.video-section {
    position: relative;
    background: var(--color-text-light);
    overflow: hidden;
    padding: 0px 0;
}

/* SVG decorative background lines */
.divider {
    background-image: url('../images/video-bg.jpg'); 
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0.4; 
    z-index: 1;
}

/* Video container */
.video {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* YouTube video styling */
.video iframe {
    width: 80%;
    max-width: 940px;
    height: 420px;
    border-radius: var(--border-radius-card-large);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 3;
    background: #000;
    transition: all 0.3s ease;
}

/* Hover effect (optional) */
.video iframe:hover {
    transform: scale(1.01);
}


/* ---------footer-------- */



.footer_sec{
   
    background-image: url(../img/Group-9.png);
    background-position: right;
    background-repeat: no-repeat;
    margin-top: 40px;

}

.footer_sec footer{
    background: rgba(232, 241, 252, 0.6);


}

.bottom_ftr{
    background: rgba(48, 48, 145, 1);
    padding: 6px;
    color: #ffffff;

}

.bottom_link a {
    color: #fff;
    text-decoration: none;
    margin-left: 24px;
    font-size: 15px;
}

.main_footer{
    padding: 50px;
}

.main_footer h4{
    color: #303091;
    font-size: 18px;
    font-weight: 600;

}

.main_footer  ul {
    padding: 0px;
}
.main_footer  ul li {
    color: #303091;
    font-size: 15px;
    list-style-type: none;
    line-height: 28px;
}

.visit_c a {
    color: #303091;
    text-decoration: none;
    border: 1px solid #303091;
    border-radius: 20px;
    padding: 1px 7px;
    font-weight: 600;
    margin-left: 2px;
    justify-content: center;
    display: inline-block;
    font-size: 14px;
}

.visit_c .head{
    font-size: 16px;
    font-weight: 700;
}

.social_icon a{
    text-decoration: none;
}

.social_icon a i{
    color: #303091;
    margin-right: 10px;

}

.newsletter i {
    color: #252575;
    font-size: 34px;
}

.subs{
    color: #252575;
}

.view_all_text a{
    color: #252575 ;
    font-weight: 800;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: inherit !important;
    align-items: stretch;
    width: 100%;
}


.newsectab{
    padding: 12px;
    border: 7px solid #eee !important;
    border-radius: 20px !important;
}

.scrolltopdiv {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    padding: 5px;
    background: #00A79D;
    box-shadow: 2px 1px 12px 10px #d9d9d952;
    position: fixed;
    right: 2%;
    top: 70%;
    justify-content: center;
    display: flex;
    align-items: center;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    scroll-behavior: smooth;
    z-index: 9999;
}

.main_footer ul li a {
    text-decoration: none;
    color: #303091;
}

.view_all_text a {
    color: #252575 !important;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
}

.view_all_text i {
    color: #2E3192;
    font-size: 15px;
    transform: rotate(45deg);
}