body{
margin:0;
font-family:Poppins,sans-serif;
background:#fff;
color:#0a1c63;
}

.container{
width:100%;
max-width:1300px;
margin:auto;
}


.inner-body{background: radial-gradient(35.36% 35.36% at 100% 25%, #0000 66%, #def3ff 68% 70%, #0000 72%) 32px 32px / calc(2 * 32px) calc(2 * 32px), radial-gradient(35.36% 35.36% at 0 75%, #0000 66%, #def3ff 68% 70%, #0000 72%) 32px 32px / calc(2 * 32px) calc(2 * 32px), radial-gradient(35.36% 35.36% at 100% 25%, #0000 66%, #def3ff 68% 70%, #0000 72%) 0 0 / calc(2 * 32px) calc(2 * 32px), radial-gradient(35.36% 35.36% at 0 75%, #0000 66%, #def3ff 68% 70%, #0000 72%) 0 0 / calc(2 * 32px) calc(2 * 32px), repeating-conic-gradient(#ffffff 0 25%, #0000 0 50%) 0 0 / calc(2 * 32px) calc(2 * 32px), radial-gradient(#0000 66%, #def3ff 68% 70%, #0000 72%) 0 calc(32px / 2) / 32px 32px #ffffff;
}

/*waves animated for inner page body*/



/*end*/



/*button*/
.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:16px 38px;

    background:linear-gradient(
        135deg,
        #0a46ff,
        #001b7a
    );

    color:#fff;
    text-decoration:none;

    font-size:16px;
    font-weight:600;

    border-radius:50px;

    transition:.4s ease;
    box-shadow:0 10px 25px rgba(10,70,255,.25);

    position:relative;
    overflow:hidden;
}

.hero-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(10,70,255,.35);
}

.hero-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;

    background:rgba(255,255,255,.2);

    transition:.5s;
}

.hero-btn:hover::before{
    left:100%;
}

@media(max-width:768px){

    .hero-btn{
        width:100%;
        padding:15px 20px;
    }


}


/* HEADER */

.header{
position:fixed;
top:0;
left:0;
width:100%;
background:#fff;
z-index:9999;
box-shadow:0 3px 20px rgba(0,0,0,.08);
}

.header-wrap{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 20px;
}

.logo-area{
display:flex;
gap:10px;
}

.logo-area img{
height:55px;
}

.desktop-menu ul{ margin-right:20px;
display:flex;
list-style:none;
gap:15px;
}

.desktop-menu a{
text-decoration:none;
color:#001b7a;
font-weight:550; font-size:14px;
}

.dropdown{
    position:relative;
}

.submenu{
    position:absolute; margin-top:8px; margin-left:0px; padding-left:10px;
    top:100%;
    left:0;
    background:#fff;
    min-width:228px; display:block !important;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
    z-index:99;
}

.dropdown:hover .submenu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.submenu li{
margin:10px; border-bottom:1px solid #001b7a;
}
.submenu li:last-child{border-bottom:none;}

.menu-toggle{
display:none;
font-size:32px;
cursor:pointer;
}

/* MOBILE */
.mobile-menu{
    position:fixed;
    top:0;
    right:-340px;
    width:320px;
    height:100%;
    background:#fff;
    overflow-y:auto;
    transition:.4s;
    z-index:99999;
    box-shadow:-5px 0 20px rgba(0,0,0,.15);
    padding:20px;
}

.mobile-menu.active{
    right:0;
}

.mobile-nav{
    list-style:none;
    margin:40px 0 0;
    padding:0;
}

.mobile-nav > li{
    border-bottom:1px solid #e5e5e5;
}

.mobile-nav a{
    display:block;
    padding:15px 0;
    text-decoration:none;
    color:#0a1c63;
    font-weight:600;
}

.menu-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
    cursor:pointer;
    color:#0a1c63;
    font-weight:600;
}

.toggle-icon{
    font-size:24px;
    line-height:1;
    color:#0a46ff;
}

.mobile-submenu{
    display:none;
    list-style:none;
    padding:0 0 10px 15px;
    margin:0;
}

.mobile-submenu li{
    border:none;
}

.mobile-submenu a{
    padding:10px 0;
    font-size:14px;
    color:#555;
}

.has-submenu.active .mobile-submenu{
    display:block;
}

.has-submenu.active .toggle-icon{
    content:"-";
}


/* POPUP */

.welcome-popup{
position:fixed;
inset:0;
background:rgba(0,0,0,.75);
display:flex;
justify-content:center;
align-items:center;
z-index:999999;
}

.popup-box{
background:#fff;
width:90%;
max-width:800px;
padding:40px;
border-radius:20px;
position:relative;
}

.popup-close{
position:absolute;
right:20px;
top:15px;
font-size:35px;
cursor:pointer;
}

.team-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:20px;
}

.team-card img{
width:100%;
border-radius:15px;
}

/* HERO */
.hero-section{
    position:relative;
    overflow:hidden;
    padding:150px 0 80px;
    background:linear-gradient(
        135deg,
        #ffffff 0%,
        #f5f9ff 50%,
        #edf4ff 100%
    );
}

.hero-wrapper{
    position:relative;
    z-index:10;

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

/* LEFT SIDE */

.hero-left{
    text-align:center;
}

.conference-info{ position:absolute; margin-bottom:50px; width:50%; padding-top:8%;
    /*margin-bottom:40px;
    position:relative;*/
    z-index:5;
}

.conf-date{
    display:inline-block;
    background:#0a46ff;
    color:#fff;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
}

.conference-info h1{
    font-size:72px;
    line-height:1.1;
    color:#0037ff;
    margin:15px 0;
}

.conference-info p{
    font-size:20px;
    font-weight:500;
    color:#222;
}

.rotating-circle{
    width:100%;
    max-width:100%;
    animation:spin 30s linear infinite; margin-left:-15%; text-align:left; float:left;
}

@keyframes spin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* RIGHT SIDE */

.hero-right{
    position:relative;
}

.hero-slider{
    position:relative;
    height:600px;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.slide{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;

    opacity:0;
    transition:opacity 1s ease;
}

.slide.active{
    opacity:1;
}

/* BLOBS */

.blob{
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    opacity:.3;
    z-index:1;
}

.blob1{
    width:350px;
    height:350px;
    background:#00bfff;
    top:-100px;
    left:-100px;
}

.blob2{
    width:300px;
    height:300px;
    background:#0047ff;
    top:150px;
    right:-100px;
}

.blob3{
    width:250px;
    height:250px;
    background:#7fd7ff;
    bottom:-80px;
    left:40%;
}




/* MOBILE */

@media(max-width:991px){

    .hero-wrapper{
        grid-template-columns:1fr;
        gap:40px;
    }

    .conference-info h1{
        font-size:42px;
    }

    .hero-slider{
        height:350px;
    }

    .rotating-circle{
        max-width:320px;
    }
}

/* SLIDER 

.slider{
height:500px;
overflow:hidden;
position:relative;
}

.slide{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
transition:1s;
}

.slide.active{
opacity:1;
}*/

/* COUNTDOWN */

.countdown-section{
padding:80px 0;
background:#f4f8ff url(../images/countdown.png) no-repeat; background-size:cover; background-attachment:fixed; text-align:center;
}

.countdown-section h2{color: rgb(0, 27, 122); font-size:40px;}

.count-grid{
/*display:grid;*/ display:inline-grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:15px;
}

.count-box{
background:#fff;
padding:30px;
text-align:center;
border-radius:15px;
}

.count-box span{
font-size:45px;
font-weight:700;
display:block;
}

/* MOBILE */

@media(max-width:991px){

.desktop-menu{
display:none;
}

.menu-toggle{
display:block;
}

.hero-grid{
grid-template-columns:1fr;
}

.team-grid{
grid-template-columns:1fr;
}

.count-grid{
grid-template-columns:repeat(2,1fr);
}

.hero-right h1{
font-size:45px;
}

}


/*welcome message*/
.welcome-section{
    padding:100px 0 0;
    background:#fff url(../images/bg1.png) center repeat-y;
}

.welcome-top{ display:block;
    /*display:grid;
    grid-template-columns:1.5fr 1fr;
    gap:60px;*/
    align-items:center;
}

.section-tag{
   /* display:inline-block;
    background:#0a46ff;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    letter-spacing:1px;*/
	color: #0a46ff;
    font-weight: 700;
    letter-spacing: 2px; text-align:center !important;
}
.welcome-content span.section-tag{text-align:center !important; display:block;}
.welcome-content h2{ text-align:center;
    font-size:40px;
    color:#001b7a;
    margin:20px 0;
}

.welcome-content p{ text-align:justify;
    color:#555;
    line-height:1.9;
    margin-bottom:15px;
}

.welcome-content h4{
    color:#0a46ff;
    margin-top:25px;
    font-size:24px;
}

.designation{
    color:#666;
    font-weight:500;
}

.welcome-chair img{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 40px rgba(0,0,0,.1);
}

/*skyline*/
.skyline{overflow: hidden; position: relative;}
.animate-marquee {animation: marquee 60s linear infinite;}
.flex {display: flex;}
.object-center {
    object-position: center;
}
.object-cover {
    object-fit: cover;
}
.flex-shrink-0 {
    flex-shrink: 0;
}
.w-auto {
    width: auto;
}
.h-\[125px\] {
    height: 125px;
}
 @keyframes marquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .animate-marquee {
        animation: marquee 60s linear infinite;
    }
	
	
/*introduction*/	
/*.intro-section{
    position:relative;
    padding:110px 0;
    overflow:hidden;
    background:#fff;
}
*/

.intro-section{
    position:relative;
    padding:110px 0;
    overflow:hidden;

    background:linear-gradient(
        135deg,
        #001b7a 0%,
        #0037ff 50%,
        #001b7a 100%
    );

    color:#fff;
}
/* GRID BACKGROUND */

/*.grid-bg{
    position:absolute;
    inset:0;

    background-image:
    linear-gradient(rgba(0,70,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,70,255,.05) 1px, transparent 1px);

    background-size:50px 50px;

    mask-image:linear-gradient(
        to bottom,
        transparent,
        black 15%,
        black 85%,
        transparent
    );

    z-index:0;
}*/
.grid-bg{
    position:absolute;
    inset:0;

    background-image:
    linear-gradient(
        rgba(255,255,255,.08) 1px,
        transparent 1px
    ),
    linear-gradient(
        90deg,
        rgba(255,255,255,.08) 1px,
        transparent 1px
    );

    background-size:40px 40px;

    z-index:0;
}

.intro-section .section-title span{color:#FFFFFF;}

.intro-section .container{
    position:relative;
    z-index:2;
}

.intro-grid{
    display:grid;
    grid-template-columns:350px 1fr;
    gap:60px;
    margin-top:60px;
}

/* LEFT */

.intro-highlights{
    display:grid;
    gap:25px;
}

.intro-card{
    background:#fff;
    border:1px solid rgba(0,70,255,.1);
    border-radius:20px;
    padding:30px;
    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.4s;   position:relative;  overflow:hidden;
}
.intro-card::after{
    content:"\f0ac";
    font-family:"Font Awesome 6 Free";
    font-weight:900;

    position:absolute;
    right:-6px;
    bottom:-95px;
    font-size:358px;
    color:rgba(34,95,0,0.05);
}

.intro-card:hover{
    transform:translateY(-8px);
}


.card-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;

    border-radius:50%;

    background:rgba(34,95,0,.8);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;
    color:#fff;

    border:1px solid rgba(255,255,255,.2);
}

.intro-card h3{
    font-size:40px;
    color:#0a46ff;
    margin-bottom:10px;
}

.intro-card p{
    color:#666;
}

/* RIGHT */

.intro-content{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.intro-block{
    background:#fff;
    padding:35px;
    border-radius:24px;

    border-left:5px solid #22c8ea;

    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.intro-block h3{
    color:#001b7a;
    margin-bottom:15px;
    font-size:24px;
}

.intro-block p{ text-align:justify;
    color:#555;
    line-height:1.9;
}
@media(max-width:991px){

    .intro-grid{
        grid-template-columns:1fr;
    }

    .intro-highlights{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:600px){

    .intro-highlights{
        /*grid-template-columns:1fr;*/grid-template-columns:auto-fill;
    }

}	
/*end intro*/	
	
	

/* Committee */

.committee-preview{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(3,0.2fr); text-align:center;
    gap:30px;
}

.committee-member{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.committee-member:hover{
    transform:translateY(-10px);
}

.committee-member img{
    width:100%;
    height:auto;
    object-fit:cover;
}

.committee-member h5{
    margin:20px 0 5px;
    font-size:19px;
    color:#001b7a;
}

.committee-member span{
    display:block;
    color:#666;
    padding-bottom:20px; font-size:14px;
}
@media(max-width:991px){

    .welcome-top{
        grid-template-columns:1fr;
    }

    .committee-preview{
        grid-template-columns:1fr;
    }

    .welcome-content h2{
        font-size:34px;
    }

}








/*PART 2*/
.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title span{
color:#0a46ff;
font-weight:700;
letter-spacing:2px;
}

.section-title h2{
font-size:40px;
margin-top:10px;
}

/* ABOUT */

.about-section{
padding:100px 0;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-image img{
width:100%;
border-radius:25px;
}

.about-content p{
line-height:1.8;
font-size:17px;
}

.about-stats{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:40px;
}

.stat-box{
background:#f5f8ff;
padding:25px;
border-radius:15px;
text-align:center;
}

.stat-box h3{
color:#0a46ff;
font-size:34px;
margin:0;
}

/* HIGHLIGHTS */

.highlights-section{
padding:100px 0;
background:#f7faff;
}

.highlight-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.highlight-card{
background:#fff;
padding:35px;
border-radius:20px;
text-align:center;
transition:.4s;
box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.highlight-card:hover{
transform:translateY(-10px);
}

.highlight-card i{
font-size:40px;
display:block;
margin-bottom:15px;
}

/* COMMITTEE */

.committee-section{
padding:100px 0;
}

.committee-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.committee-card{
background:#fff;
border-radius:20px;
overflow:hidden;
text-align:center;
box-shadow:0 5px 25px rgba(0,0,0,.08);
transition:.4s;
}

.committee-card:hover{
transform:translateY(-10px);
}

.committee-card img{
width:100%;
height:320px;
object-fit:cover;
}

.committee-card h4{
margin:15px 0 5px;
}

.committee-card span{
display:block;
padding-bottom:20px;
color:#666;
}

/* SPEAKERS */

.speakers-section{
padding:100px 0;
background:#f7faff;
}

.speaker-slider{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.speaker-card{
background:#fff;
border-radius:20px;
overflow:hidden;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.speaker-card img{
width:100%;
height:300px;
object-fit:cover;
}

/* VENUE */

.venue-section{
padding:100px 0;
}

.venue-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.venue-image img{
width:100%;
border-radius:25px;
}
.venue-content p{text-align:justify;}
.venue-content ul{
padding-left:20px;
margin:25px 0;
}

.venue-content li{
margin-bottom:12px; list-style:none;
}

/* RESPONSIVE */

@media(max-width:991px){

.about-grid,
.venue-grid{
grid-template-columns:1fr;
}

.highlight-grid{
grid-template-columns:1fr;
}

.committee-grid{
grid-template-columns:repeat(2,1fr);
}

.speaker-slider{
grid-template-columns:repeat(2,1fr);
}

.about-stats{
grid-template-columns:1fr;
}

}

@media(max-width:600px){

.committee-grid,
.speaker-slider{
grid-template-columns:1fr;
}

.section-title h2{
font-size:32px;
}

}
/*End Part 2*/








/*PART 3*/
/* SPONSORS */

.sponsors-section{
padding:100px 0;
background:#fff;
}

.sponsor-grid{
display:grid;
grid-template-columns:repeat(6,1fr);
gap:30px;
align-items:center;
}

.sponsor-grid img{
width:100%;
max-height:80px;
object-fit:contain;
filter:grayscale(100%);
transition:.4s;
}

.sponsor-grid img:hover{
filter:none;
transform:scale(1.08);
}

/* REGISTRATION */

.registration-section{
padding:100px 0;
background:linear-gradient(
135deg,
#0a46ff,
#001b7a
);
}

.registration-box{
text-align:center;
color:#fff;
}

.registration-box h2{
font-size:48px;
margin-bottom:15px;
}

.register-btn{
display:inline-block;
padding:16px 40px;
background:#fff;
color:#001b7a;
border-radius:50px;
text-decoration:none;
font-weight:700;
margin-top:20px;
}




/* SCROLL TOP */

#scrollTopBtn{
position:fixed;
bottom:30px;
right:30px;
width:55px;
height:55px;
border:none;
border-radius:50%;
background:#0a46ff;
color:#fff;
font-size:24px;
cursor:pointer;
display:none;
z-index:9999;
box-shadow:0 5px 20px rgba(0,0,0,.3);
}

#scrollTopBtn:hover{
transform:translateY(-5px);
}

/* STICKY HEADER */

.header.scrolled{
box-shadow:0 8px 30px rgba(0,0,0,.15);
}

/* RESPONSIVE */

@media(max-width:991px){

.sponsor-grid{
grid-template-columns:repeat(2,1fr);
}

.registration-box h2{
font-size:34px;
}

.copyright-flex{
flex-direction:column;
gap:10px;
text-align:center;
}

}

@media(max-width:600px){

.sponsor-grid{
grid-template-columns:1fr 1fr;
}


}
/*End Part 3*/


/* FOOTER */
.conference-footer{
    position:relative;
    background:linear-gradient(
        135deg,
       /* #090d4e 0%,
        #092e78 100%*/ #00119d 0%, #001d81 100%
    );
    color:#fff;
    overflow:hidden;
}

.footer-overlay{
    position:absolute;
    bottom:60px;
    left:0;
    width:100%;
    height:220px;

    background:url('images/delhi-skyline.png')
    center bottom repeat-x;

    opacity:.15;
    pointer-events:none;
}

.footer-grid{
    display:grid;
    grid-template-columns:
    1.3fr 0.8fr 1.3fr;

    gap:40px;
    padding:80px 0;
    position:relative;
    z-index:2;
}

.footer-col{
    padding:0 25px;
    border-right:1px solid
    rgba(255,255,255,.2);
}
.footer-col a{color:#FFFFFF; text-decoration:none;}

.footer-col:last-child{
    border-right:none;
}

.footer-logo{
    max-width:100px;
    background:#fff;
    border-radius:12px;
    padding:10px;
    margin-bottom:25px;
}

.footer-col h3{
    margin-bottom:25px;
    font-size:22px;
    color:#fff;
}

.footer-col h4{
    color:#fff;
    margin-bottom:10px;
}

.footer-col p{
    line-height:1.9;
    color:rgba(255,255,255,.9);
}

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col ul li{
    margin-bottom:15px;
}

.footer-col ul li a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-col ul li a:hover{
    padding-left:8px;
}

.social-links{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.social-links a{
    width:40px;
    height:40px;
    border:1px solid #fff;
    border-radius:8px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    text-decoration:none;
}

.travel-logo{
    width:100px;
    background:#fff;
    padding:0px;
    border-radius:10px;
    margin-bottom:5px;
}

.footer-bottom{
    background:#140863;
    padding:20px 0;
}

.footer-bottom-wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
@media(max-width:991px){

.footer-grid{
    grid-template-columns:1fr;
}

.footer-col{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.2);
    padding-bottom:30px;
}

.footer-bottom-wrap{
    flex-direction:column;
    gap:10px;
    text-align:center;
}

}



/*inner page committee*/
.page-banner{
    position:relative;
    padding:130px 0 90px;

    background:
    linear-gradient(
    135deg,
    #001b7a,
    #0a46ff
    );

    overflow:hidden;
}

.page-banner::before{
    content:'';

    position:absolute;

    inset:0;

    background-image:
    linear-gradient(
        rgba(255,255,255,.08) 1px,
        transparent 1px
    ),
    linear-gradient(
        90deg,
        rgba(255,255,255,.08) 1px,
        transparent 1px
    );

    background-size:40px 40px;
}

.banner-content{
    position:relative;
    z-index:2;
    text-align:center;
}

.banner-content h1{
    color:#fff;
    font-size:50px;
    font-weight:700;
    margin-bottom:15px;
}

.breadcrumb{
    display:flex;
    justify-content:center;
    gap:10px;

    list-style:none;
    padding:0;
    margin:0;
}

.breadcrumb li{
    color:#fff;
}

.breadcrumb a{
    color:#fff;
    text-decoration:none;
}

/*inner committee*/

.circle-section{
    position:relative;
    overflow:hidden;
}

/* Common */

.circle-decoration{
    position:absolute;
    width:100%;
    height:100%;
    pointer-events:none; background:url(../images/circle.png) center no-repeat; background-size:100% 100%; animation:rotate1 20s linear infinite;
}

.circle-decoration span{
    position:absolute;
    border-radius:50%;
    border:4px solid;
}

/* Top */

.circle-top{
    top:10px;
    
}

/* Bottom */

.circle-bottom{
    bottom:-120px;
    right:-120px;
}




/*.circle-decoration span:nth-child(1){
    width:280px;
    height:280px;

    border-color:#0a46ff;

    animation:rotate1 20s linear infinite;
}



.circle-decoration span:nth-child(2){
    width:220px;
    height:220px;

    top:30px;
    left:30px;

    border-color:#ff4d6d;

    animation:rotate2 15s linear infinite;
}



.circle-decoration span:nth-child(3){
    width:160px;
    height:160px;

    top:60px;
    left:60px;

    border-color:#00d4ff;

    animation:rotate1 10s linear infinite;
}*/

/* Rotation */

@keyframes rotate1{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

@keyframes rotate2{
    from{
        transform:rotate(360deg);
    }
    to{
        transform:rotate(0deg);
    }
}





.main-committee-page{
    background:#fff;
    padding:100px 0;
}

.main-committee-card{
    text-align:center;
}

.main-committee-img{
    position:relative;

    width:220px;
    height:220px;

    margin:auto;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* Gold Decorative Circle */

.main-committee-img::before{
    content:"";

    position:absolute;
    inset:0;

    background:url(../images/img-bg.png) center center no-repeat;
    background-size:contain;

    animation:rotateFrame 40s linear infinite;

    z-index:1;
}

/* Person Photo */

.main-committee-img img{
    width:170px;
    height:170px;
    object-fit:cover;
    border-radius:50%;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    position:relative;
    z-index:2;
    transition:.5s; background: rgba(0, 0, 0, .5);
}

/* Hover */

.main-committee-card:hover img{
    transform:scale(1.08);
}

.main-committee-card:hover .main-committee-img::before{
    animation-duration:8s;
}

.main-committee-card h3{
    margin-top:20px;
    color:#001b7a;
    font-size:22px;
    font-weight:600;
}

.main-committee-card span{
    color:#666;
}

/* Rotation */

@keyframes rotateFrame{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

.main-committee-page h3{font-size:20px; margin-top:12px;}
.main-committee-page h4{background:#000099;  height:4px; margin-bottom:70px;}
.main-committee-page h4 span{background:#000099; padding:5px; color:#FFFFFF;}

/*end inner page committee*/