body {border:0; margin:0; font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  }
.top { width:100%; background-color:#040825; overflow:hidden; padding:0px 0px; color:#fff;}
.top .lft { width:33%; float:left; font-size:15px; padding-top: 7px; font-family: 'Nunito Sans', sans-serif; margin-left:10px;}
.top .mid{ width:33%; float:left; font-size:15px; padding-top: 7px; font-family: 'Nunito Sans', sans-serif;}
.top .rgt { width:24%; float:right;font-family: 'Nunito Sans', sans-serif;}
.top a {color:#fff; text-decoration:none;}
.top a:hover {color:#f67002; text-decoration:none;}
.head-bottom { width:100%; background-color:#fff;}
.menu { width:100%; background-color:#fff; -webkit-box-shadow: 0px 2px 3px 0px rgba(204,220,245,1);
-moz-box-shadow: 0px 2px 3px 0px rgba(204,220,245,1)
box-shadow: 0px 2px 3px 0px rgba(204,220,245,1); border-top:1px solid #ccc; margin-top:2px;}
.header-lft{width:50%; float:left;}
.header-rgt{width:50%; float:right;}
.header-lft img{width:45%;}
.header-rgt img{float:right; width:55%;}

/* ========================================
   HEADER
======================================== */

.zica-header {
    width: 100%;
    background: #ffffff;

    position: sticky;
    top: 0;

    z-index: 999999;

    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
}


/* ========================================
   NAV CONTAINER
======================================== */

.zica-nav-container {
    max-width: 1200px;
    margin: auto;

    min-height: 75px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 20px;
}


/* ========================================
   LOGO
======================================== */

.zica-logo {
    display: flex;
    align-items: center;

    text-decoration: none;
}

.zica-logo img {
    max-width: 150px;
    height: auto;
    display: block;
}


/* ========================================
   MENU
======================================== */

.zica-menu {
    list-style: none;

    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;
}

.zica-menu > li {
    position: relative;
}

.zica-menu > li > a {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 28px 18px;

    color: #222;
    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: all 0.2s ease;
}


/* Main menu hover */

.zica-menu > li:hover > a {
    color: #f77002;
}


/* ========================================
   DROPDOWN
======================================== */

.zica-dropdown {
    list-style: none;

    position: absolute;

    top: 100%;
    left: 0;

    width: 275px;

    background: #ffffff;

    padding: 8px 0;

    margin: 0;

    box-shadow: 0 8px 25px rgba(0,0,0,0.15);

    border-top: 3px solid #f77002;

    /* Hidden */
    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;

    z-index: 999999;
}


/* ========================================
   DESKTOP HOVER
======================================== */

@media (min-width: 769px) {

    .zica-menu > li:hover > .zica-dropdown {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

}


/* ========================================
   DROPDOWN LINKS
======================================== */

.zica-dropdown li {
    position: relative;
}

.zica-dropdown li a {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 12px 18px;

    color: #333;

    text-decoration: none;

    font-size: 14px;

    background: #fff;

    transition: all 0.2s ease;
}

.zica-dropdown li a:hover {
    color: #f77002;
    background: #f7f7f7;
}


/* ========================================
   SECOND LEVEL MENU
======================================== */

.zica-dropdown .zica-dropdown {
    top: -8px;
    left: 100%;
}


/* Show second level */

@media (min-width: 769px) {

    .zica-dropdown li:hover > .zica-dropdown {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

}


/* ========================================
   ARROW
======================================== */

.zica-arrow {
    font-size: 10px;
}


/* ========================================
   MOBILE BUTTON
======================================== */

.zica-mobile-button {

    display: none;

    width: 42px;
    height: 42px;

    border: none;

    background: #f77002;

    color: #fff;

    font-size: 20px;

    cursor: pointer;

    border-radius: 3px;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

    .zica-nav-container {
        min-height: 65px;
    }

    .zica-mobile-button {
        display: flex;

        align-items: center;
        justify-content: center;
    }


    /* Main menu */

    .zica-menu {

        display: none;

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        background: #ffffff;

        flex-direction: column;

        align-items: stretch;

        max-height: calc(100vh - 65px);

        overflow-y: auto;

        box-shadow: 0 8px 15px rgba(0,0,0,0.12);
    }


    /* Open menu */

    .zica-menu.active {
        display: flex;
    }


    /* Main items */

    .zica-menu > li {
        width: 100%;

        border-bottom: 1px solid #eeeeee;
    }


    .zica-menu > li > a {

        width: 100%;

        padding: 15px 20px;

        justify-content: space-between;
    }


    /* ========================================
       MOBILE DROPDOWN
    ======================================== */

    .zica-dropdown {

        position: static;

        width: 100%;

        border-top: none;

        box-shadow: none;

        background: #f7f7f7;

        padding: 0;

        display: none;

        opacity: 1;

        visibility: visible;

        transform: none;
    }


    /* Open mobile dropdown */

    .zica-menu li.dropdown-open > .zica-dropdown {
        display: block;
    }


    .zica-dropdown li a {
        padding: 13px 35px;

        background: #f7f7f7;
    }


    /* Second level */

    .zica-dropdown .zica-dropdown {
        display: none;

        position: static;

        width: 100%;

        padding: 0;

        box-shadow: none;

        transform: none;
    }


    .zica-dropdown li.dropdown-open > .zica-dropdown {
        display: block;
    }


    .zica-dropdown .zica-dropdown li a {
        padding-left: 50px;
    }

}


/* ========================================
   DEMO CONTENT
======================================== */

.demo-content {

    min-height: 1500px;

    padding: 100px 20px;

    text-align: center;

    background: #f5f5f5;
}

.demo-content h1 {
    margin-bottom: 20px;
}

/* 
.logos img {float:left;}
.bor-rad {border-radius: 10px;}
.top .fab {font-size:16px; width:16px; color:#0078d4; border:1px solid #0078d4; padding:6px; border-radius:0;}
.top .fab:hover {font-size:16px; color:#fff; border:1px solid #0078d4; background-color:#0078d4; border-radius:50% 50%; -webkit-transition: width 2s; 
  transition: width 2s; }
.top .fas {font-size:16px; color:#1744ab;}
.top .far {font-size:16px; color:#1744ab; margin-right:0px;}
header { width:100%; overflow:hidden; margin-bottom:100px;}
 .sticky {
 position: fixed;
  top: 0px;
  width: 100%;
  z-index:99;
}

.sticky + .content {
  padding-top: 92px;
}

 */
.fa-facebook-f:hover {color:#f67002;}
.fa-twitter:hover { color:#00c1f7;}
.fa-instagram:hover {color:#da3175;}
.fa-google-plus-g:hover{color:#e92c36;}
.fa-linkedin-in:hover {color:#0b82c4;}



.fa-square-instagram {
    --fa: "\e055";
    font-size: 20px;
    margin-top:7px; ;
    color:#fff;
}
.fa-square-facebook {
    --fa: "\f082";
    font-size: 20px;
    color:#fff;
}

.fa-square-x-twitter {
    --fa: "\e61a";
    font-size: 20px;
    color:#fff;
}
.fa-square-linkedin {
    --fa: "\e7d0";
    font-size: 25px;
    color:#0a91d1;
}

.fa-square-youtube {
    --fa: "\f431";
    font-size: 20px;
    color:#fff;
}




.footer-box-first .fa-square-instagram {
    --fa: "\e055";
    font-size: 25px;
    color:#031a47;
}
.footer-box-first .fa-square-facebook {
    --fa: "\f082";
    font-size: 25px;
    color:#031a47;
}

.footer-box-first .fa-square-x-twitter {
    --fa: "\e61a";
    font-size: 25px;
    color:#031a47;
}
.footer-box-first .fa-square-linkedin {
    --fa: "\e7d0";
    font-size: 25px;
    color:#031a47;
}

.footer-box-first .fa-square-youtube {
    --fa: "\f431";
    font-size: 25px;
    color:#031a47;
}
.container {width:90%; max-width:1140px; margin:0 auto; overflow:hidden;}
.container .left2 {width:70%; float:left;}
.container .right2 {width:25%; float:right; background-color:#492c68; padding:20px;}
.container-form {width:70%; max-width:900px; margin:0 auto; overflow:hidden;}
.container-form .left {width:50%; float:left;}
.container-form .right {width:40%; float:right;}
.course {width:100%; max-width:1140px; margin:10px auto; overflow:hidden;}
.course-left{width:42%; max-width:600px; margin:0 auto; float:left;}
.course-right{width:42%; max-width:600px; margin:0 auto; float:right;}
.subtext {font-size:22px; font-weight:300; text-align:center;}
 h1{ font-family: "Oswald", sans-serif; font-size:40px; font-weight: 600; font-style: normal; text-transform:capitalize;}
 h2{ font-family: "Oswald", sans-serif; font-size:36px; font-weight: 400; font-style: normal;}
 h3{ font-family: "Oswald", sans-serif; font-size:28px; font-weight: 400; font-style: normal;}
 h4{ font-family: "Oswald", sans-serif; font-size:26px; font-weight: 400; font-style: normal;}
.course-single ul li {list-style:none; line-height:36px;}
.course-single ul {margin-left:-40px;}
.course-single h3 {line-height:0px;}
.cont-left{ width:31%; margin:1%; float:left;}
.cont-rgt{ width:31%; margin:1%; float:right;}
.content {width:90%; max-width:1140px; margin:0 auto; overflow:hidden;}
 
p {color:#1b1b1b; font-size:15px; font-weight:400; text-align:justify; line-height:26px; }
.text-center {text-align:center;}
.h3 {font-size:30px; line-height:32px; padding:15px 0px; font-family: "Oswald", sans-serif;}
.h4 {font-size:20px; line-height:30px; padding-bottom:15px; font-family: "Oswald", sans-serif; font-weight:400;}
h5 {font-size:18px; line-height:30px; padding-bottom:15px; font-family: "Oswald", sans-serif; font-weight:400;}
.container .left {width:49%; float:left;}
.container .right {width:49%; float:right;}
.img-res {max-width:100%;}
.img-radius {border-radius:16px;}
.block-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  /* Optional: set a max-width to keep it responsive */
  max-width: 100%; 
  margin-top:-15px;
}

.card { width:30.33%; margin:1%; height:330px; float:left; background-color:#fff; border-radius:16px;}
.card img {margin-top:20px;}
.card h4 {font-size:24px; text-align:center;}
.card p {font-size:16px; font-weight:400; text-align:center; color:#333; line-height:26px; padding:0px 20px;}
.card2 { width:23%; margin:1%; height:400px; float:left; background-color:#fff; border-radius:16px;}
.card2 img {margin-top:20px; height:300px; border-radius:12px; }
.card2 h4 {font-size:20px; text-align:center; font-weight:400; line-height:0px;}
.card2 a {text-decoration:none; color:#000;}
.card2 a:hover {text-decoration:none; color:#f77002;}

.more {text-align:center;}
.card3 {text-align:center; padding:30px; height:220px; background-color:#492c68; border:1px solid #ccc;  border-radius:16px; width:23%; margin:1%; float:left; -webkit-box-shadow: 0px 2px 3px 0px rgba(204,220,245,1);
-moz-box-shadow: 0px 2px 3px 0px rgba(204,220,245,1)
box-shadow: 0px 2px 3px 0px rgba(204,220,245,1); border-top:1px solid #ccc; margin-top:2px;}
.card3 h5 {font-family: "Montserrat", sans-serif; text-align:center; color:#fff;}
.card3 .h5 {font-size:16px; text-align:center; font-weight:400; color:#fff; margin-top:-20px;}
.card3 h5 a {text-decoration:none; color:#fff; font-size:22px; line-height:38px;}
.card3 h5 a:hover {color:#f77002; }

.lft-bar { width:27%; margin:30px 0.5%; float:left; background-color:#492c68; padding:30px 15px; border-radius:12px;}
.rgt-bar { width:64%; margin:30px 0.5%; padding:20px; float:right; background-color:#eff1fe; border-radius:12px;}
.lft-bar ul {margin-left:-30px;}
.lft-bar ul li {list-style:none; line-height:46px;}
.lft-bar ul li a{color:#fff; text-decoration:none; font-size:15px;}
.lft-bar ul li a:hover{color:#f77002;}
.lft-bar h3 {color:#fff; font-size:24px; text-align:center;}
.rgt-bar h3 {margin-top:30px; line-height:0px;}
.rgt-bar h5 {font-size:20px; line-height:0px;}
.rgt-bar ul {margin-left:-30px;}
.rgt-bar ul li {list-style:none; line-height:36px;}
.rgt-bar img {width:100%;}

iframe {margin-top:10px;}
footer {background-color:#171717; overflow:hidden;}
footer .box {width:23%; margin:1%; float:left;}
footer h4 {color:#aca7a7; font-size:17px; font-weight:bold;}
footer h5 {color:#aca7a7; font-size:16px; font-weight:500; line-height:20px; margin-bottom:-10px;}
footer p {color:#aca7a7; font-size:14px; font-weight:400; text-align:justify; line-height:26px;}
footer ul li {margin-left:-40px; border-bottom:0px dashed #a1adbc; list-style:none;}
footer ul li a {text-decoration:none; color:#aca7a7; line-height:28px; text-transform:capitalize; font-size:14px; font-weight:400;}
footer ul li a:hover {text-decoration:none; color:#fff; }
footer ul li a:active {text-decoration:none; color:#fff; }
.footer-bottom {background-color:#000; overflow:hidden; color:#fff; text-align:center; line-height:40px; font-size:14px;}
.footer-bottom a {text-decoration:none; color:#aca7a7;}
.footer-bottom a:hover {text-decoration:none; color:#fff;}

.week{width:48%; height:500px; margin:1%; float:left; border-radius:16px; background-color:#fbf5ee; padding-bottom:25px; box-shadow: 1px 6px 5px 0px rgba(130,130,130,0.75);
-webkit-box-shadow: 1px 6px 5px 0px rgba(130,130,130,0.75);
-moz-box-shadow: 1px 6px 5px 0px rgba(130,130,130,0.75);}
.week-top {background-color:#422859;; color:#fff; text-align:center; -webkit-border-top-left-radius: 16px;
-webkit-border-top-right-radius: 16px;
-moz-border-radius-topleft: 16px;
-moz-border-radius-topright: 16px;
border-top-left-radius: 16px;
border-top-right-radius: 16px; }
.week ul li {list-style:none; line-height:30px;}
.week h4 {padding-left:35px; line-height:0px;}

.gallery{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
	float:left;
	margin-right:25px;
}

.gallery img{
    width:250px;
    height:200px;
    object-fit:cover;
    cursor:pointer;
    border-radius:8px;
    transition:.3s;
}

.gallery img:hover{
    transform:scale(1.05);
}
.gallery2 img{
    width:600px;
    height:230px;
    object-fit:cover;
    cursor:pointer;
    border-radius:8px;
    transition:.3s;
}
/* Lightbox */
.lightbox{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.9);
    justify-content:center;
    align-items:center;
}

.lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}

.close{
    position:absolute;
    top:20px;
    right:35px;
    color:#fff;
    font-size:40px;
    cursor:pointer;
}

.logo-slider{
    width:100%;
    overflow:hidden;
    background:#fff;
    padding:25px 0;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
}

.logo-track{
    display:flex;
    width:calc(200px * 16);
    animation:scroll 30s linear infinite;
}

.logo-slider:hover .logo-track{
    animation-play-state:paused;
}

.logo{
    width:200px;
    height:100px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:15px;
}

.logo img{
    max-width:150px;
    max-height:70px;
    object-fit:contain;
    transition:0.3s;
    filter:grayscale(100%);
}

.logo img:hover{
    filter:grayscale(0%);
    transform:scale(1.1);
}

@keyframes scroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(calc(-200px * 8));
    }
}

@media(max-width:768px){
    .logo{
        width:150px;
    }

    .logo-track{
        width:calc(150px * 16);
    }

    @keyframes scroll{
        100%{
            transform:translateX(calc(-150px * 8));
        }
    }
}
.overlay2{
   inset:0; 	background:transparent/*---rgba(1,1,1,0.70)----*/;
    /*background:rgba(0,0,0,.45);*/
	/*background: #080808; overflow:hidden;
background: linear-gradient(90deg,rgba(8, 8, 8, 0.95) 0%, rgba(21, 35, 102, 0.92) 70%, rgba(255, 255, 255, .50) 100%);*/
/*background: #0C4DA2;
background: linear-gradient(90deg,rgba(12, 77, 162, 0.68) 0%, rgba(11, 90, 186, 0.78) 35%, rgba(0, 212, 255, 0.81) 100%);*/
padding:150px 20px; overflow:hidden;}

#legacy {background-image:url("../images/banne-mid.jpg"); width:100%; overflow:hidden;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin:0px 0px;

}
 /* Main Tab Container */
.course-tabs {
    max-width: 1100px;
    margin: 50px auto;
    display: flex;
    gap: 35px;
    padding: 0 20px;
}

/* LEFT SIDE */
.tab-menu {
    width: 280px;
    flex-shrink: 0;
}

.tab-menu button {
    width: 100%;
    padding: 18px 22px;
    margin-bottom: 8px;

    border: 1px solid #e5e5e5;
    border-radius: 4px;

    background: #fff;
    color: #333;

    font-size: 16px;
    font-weight: 400;
    text-align: left;

    cursor: pointer;
    transition: all 0.3s ease;

    position: relative;
}

/* Hover */
.tab-menu button:hover {
    color: #42295d;
    border-color: #42295d;
}

/* Active Tab */
.tab-menu button.active {
    background: #42295d;
    color: #fff;
    border-color: #42295d;
}

/* Active Arrow */
.tab-menu button.active::after {
    content: "";
    position: absolute;

    right: -10px;
    top: 50%;

    transform: translateY(-50%);

    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 10px solid #42295d;
}


/* RIGHT SIDE */
.tab-content {
    flex: 1;
    min-width: 0;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-panel.active {
    display: block;
}

.tab-panel h2 {
    margin-top: 0;
    margin-bottom: 18px;

    font-size: 30px;
    font-weight: 700;
    color: #222;
}

.tab-panel h3 {
    font-size: 21px;
    color: #f77002;
    margin-top:0px;
	line-height:20px;
}

.tab-panel p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.tab-panel ul {
    padding-left:0px;
}

.tab-panel li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
	list-style:none;
}


/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* MOBILE */
@media (max-width: 767px) {

    .course-tabs {
        flex-direction: column;
        gap: 20px;
        margin: 30px auto;
    }

    .tab-menu {
        width: 100%;
    }

    .tab-menu button {
        margin-bottom: 6px;
    }

    /* Remove arrow on mobile */
    .tab-menu button.active::after {
        display: none;
    }

    .tab-content {
        width: 100%;
    }

    .tab-panel h2 {
        font-size: 25px;
    }
}






.tab-panel img {max-width:100%;}
.student-zone {margin-bottom:30px;}
.altg{background-color:#040825; padding-bottom:50px; margin-top:0px;}
.altg h1{color:#fff; font-weight:400; letter-spacing:1px;}
.altg2{background-color:#422859; padding-bottom:60px; margin-top:0px;}
.altg2 h1{color:#fff; font-weight:400; letter-spacing:1px;}
.altg p {color:#fff;}
.altg h2 {color:#fff;}
.altg h3 {color:#fff;}
.altg ul li {color:#fff; line-height:28px;}
.altg2 p {color:#fff;}
.altg2 h2 {color:#fff;}
.altg2 h3 {color:#fff;}
.altg2 ul{margin-left:-40px;}
.altg2 ul li {color:#fff; line-height:32px; list-style:none;}
.altg2 .fa-circle-check {color:#fff;  padding-right:10px;}

span {color:#f67002;}
.fa-circle-check {color:#f77002;}
.dashed { border:1px dashed #333; padding:25px; margin-bottom:10px; border-radius:12px;}

input[type="text"] { width:90%; height:40px; border:2px solid #f77002; border-radius:20px; margin-bottom:10px; padding-left:15px;}
input[type="email"] { width:90%; height:40px; border:2px solid #f77002; border-radius:20px; margin-bottom:10px; padding-left:15px;}
input[type="tel"] { width:90%; height:40px; border:2px solid #f77002; border-radius:20px; margin-bottom:10px; padding-left:15px;}
input[type="option"] { width:90%; height:40px; border:2px solid #f77002; border-radius:20px; margin-bottom:10px; padding-left:15px;}
.custom-select {
	width:95%;
  height: 40px;
  border-radius: 20px;
  padding: 0 15px; /* Adds breathing room for text inside the pill shape */
  border:2px solid #f77002;
  outline: none;
  box-sizing: border-box; /* Ensures padding doesn't break the 40px height */
}
button[type="submit"] {background-color:#040825; border:0px; border-radius:6px; color:#fff; line-height:30px; padding: 8px 15px; margin-top:15px;}
button[type="submit"]:hover {background-color:#f77002; text-decoration:none;}
