@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Gidole&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Winky+Sans:ital,wght@0,300..900;1,300..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none!important;
    outline: none!important;
    box-shadow: none!important;
    list-style: none!important;
    text-decoration: none!important;
    font-family: 'Poppins', sans-serif;
    transition: 0.5s ease-in-out;
}
:root {
    --main: #4284f5;
    --sub-main: #0059b3;
    --white: #fff;
    --black: #333;
    --grey: #555;
    --dark: #000;
    --light-bg: #f5f5f5;
    --DM-sans: "DM Sans", serif;
    --poppins: "Poppins", serif;
    --gidole: "Gidole", sans-serif;
    --winky: "Winky Sans", sans-serif;
}
body {
    scroll-behavior: smooth;
    font-family: var(--poppins);
/*  overflow-x: hidden;*/
}
section {
    padding-top: 80px;
}
.heading {
    margin-bottom: 15px;
}
.heading h4 {
    font-size: 15px;
    color: var(--sub-main);
    font-family: var(--DM-sans);
}
.heading h2 {
    font-size: 30px;
/*    font-family: var(--winky);*/
    font-family: var(--poppins);
}


.heading-2 {
    margin-top: 15px;
    margin-bottom: 20px;
    text-align: center;
}
.heading-2 h3 {
    color: var(--sub-main);
    font-size: 15px;
}
.heading-2 h2 {
    position: relative;
    color: var(--black);
    font-weight: bold;
    font-size: 25px;
}
.heading-2 h2:before {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    text-align: center;
    content: '';
    width: 100px;
    height: 4px;
    background: #4295f5;
}

.heading-3 h2 {
    font-size: 35px;
    font-weight: 700;
    font-family: var(--gidole);
}
.heading-3 p {
    font-size: 15px;
    padding-top: 10px;
    font-family: var(--DM-sans);
}

.preloader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d3e6e7;
    z-index: 99;
}
.preloader .loader img {
    width: 150px;
    max-width: 100%;
    animation: loader 2s linear infinite;
}
@keyframes loader {
    0% {
        transform: scale(.5);
    }
    100% {
        transform: scale(.8);
    }
}
.loader-end {
    opacity: 0;
    visibility: hidden;
    /* display: none; */
}
#header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 90;
}
#header .menu {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background: var(--main);
}
#header .menu .logo {
    margin: 0px 15px;
    margin-bottom: 5px;
}
#header .menu .logo img {
    width: 120px;
    margin-left: 50px;
}
#header .menu ul {
    margin: 15px 10px;
}
#header .menu ul li {
    position: relative;
    display: inline-block;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}
#header .menu ul li:before {
    position: absolute;
    content: '';
    width: 0%;
    height: 30px;
    border-bottom: 2px solid var(--sub-main);!important;
    transition: 0.8s ease-in-out;
    z-index: -1;
}
#header .menu ul li:hover:before {
    width: calc(100% - 25%);
}
#header .menu ul li a {
    color: var(--white);
    font-size: 15px;
    font-family: var(--poppins);
}
#header .menu ul li .sub-menu {
    position: absolute;
    display: none;
    top: 70%;
    left: 0;
    background: var(--white);
    margin: 8px 15px;
    padding: 5px;
    min-width: 150px;   
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2)!important;
}
#header .menu ul li .sub-menu li {
    display: block;
    width: 100%;
    padding: 10px;
}
#header .menu ul li .sub-menu li a {
    color: var(--black)!important;
}
#header .menu ul li .sub-menu li:hover {
    background: var(--grey);
}
#header .menu ul li .sub-menu li:hover a {
    color: var(--white)!important;
}
#header .menu ul li:hover .sub-menu {
    display: block;
}
#header .menu .nav-btn {
    margin: 15px 8px;
}
#header .menu .nav-btn a {
    display: inline-block;
    padding: 5px 10px;
    text-align: center;
    font-size: 15px;
    margin: 5px 8px;
    font-family: var(--DM-sans);
}
#header .menu .nav-btn a:nth-child(1) {
    background: transparent;
    border: 2px solid var(--white)!important;
    color: var(--white);
}
#header .menu .nav-btn a:nth-child(2) {
    background: var(--white);
    border: 2px solid var(--white)!important;
    color: var(--muted-teal-blue);
}
#header .menu .nav-btn a:hover {
    transform: scale(1.04);
}
#header .menu .menu-btn {
    margin: 10px;
    display: none;
}
#header .menu .menu-btn i {
    color: var(--white);
    font-size: 30px;
    padding: 15px;
    cursor: pointer;
}
.sidebar {
    position: fixed;
    top: 12%;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
/*    height: 100%;*/
    background: var(--white);
    overflow: auto;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.8s ease-in-out;
}
.sidebar::-webkit-scrollbar {
    width: 5px;
}
.sidebar::-webkit-scrollbar-thumb {
    background: #ccc;
}
.sidebar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.sidebar .sidebar-menu {
    width: 100%;
    margin-top: 5px;
}
.sidebar .sidebar-menu .item  {
    margin-top: 10px;
    position: relative!important;
    cursor: pointer;
}
.sidebar .sidebar-menu .item a {
    color: var(--black);
    font-size: 16px;
    text-decoration: none;
    display: block;
    padding: 5px 30px;
    line-height: 50px;
    font-family: var(--poppins);
}
.sidebar .sidebar-menu .item a:hover {
    background: var(--grey);
    color: var(--white);
    transition: 0.3s ease;
}
.sidebar .sidebar-menu .item i {
    margin-right: 15px;
}
.sidebar .sidebar-menu .item a .dropdown {
    position: absolute;
    right: 0;
    margin: 20px;
    transition: 0.3s ease;
}
.sidebar .sidebar-menu .item a .dropdown.rotate {
    transform: rotate(90deg);
}
.sidebar .sidebar-menu .item .sub-menu {
    background: rgba(255, 255, 255, 0.1);
    display: none;
}
.sidebar .sidebar-menu .item .sub-menu a {
    padding-left: 80px;
}
#home {
    width: 100%;
    height: auto;
    background: rgba(243, 245, 246, 0.1);
    padding-bottom: 50px;
    padding-top: 70px;
}
#home .home-content {
    margin: 0px 0 20px;
}
#home .home-content h2 {
    font-size: 35px;
    color: var(--black);
    font-family: var(--winky);
    padding: 5px 0px 5px;
}
#home .home-content p {
    color: var(--grey);
    font-size: 15px;
    font-family: var(--poppins);
    padding: 5px 0 5px;
}
#home .home-content .home-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between; /* or flex-start if you want left-aligned */
    margin-bottom: 30px;

}
#home .home-content .home-btn .h-btn,
#home .home-content .home-btn .h-link {
  flex: 0 0 auto;         /* Don’t grow or shrink */
  display: inline-block;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 15px;
  margin-top: 5px;
  margin-bottom: 10px;
  text-align: center;
  white-space: nowrap;    /* Prevent them from breaking into multiple lines */
}
#home .home-content .home-btn .h-btn {
  background: var(--sub-main);
  color: var(--white);
}
#home .home-content .home-btn .h-link {
  background: transparent;
  color: var(--black);
  font-size: 16px;
/*  border: 1px solid var(--black); /* optional for contrast */*/
}
#home .home-content .sp-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
#home .home-content .sp-inf h3 {
    font-size: 18px;
    color: var(--dark);
}
#home .home-content .sp-inf p {
    font-size: 14px;
    color: var(--grey);
}
.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/img22.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.page-header-inner {
    background: rgba(15, 23, 43, .7);
}
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

#strategies .strategy-container {
    margin-bottom: 15px;
}
#strategies .strategy-container .textContent {
    margin-top: 5px;
}
#strategies .textContent p {
    font-size: 14px;
    color: var(--black);
}
#strategies .strategy-container .strategy-box .strag-head h2 {
    font-size: 18px;
    font-family: var(--winky);
    padding: 5px 0 5px;
}
#strategies .strategy-container .strategy-box .strag-head i {
/*    font-size: 20px;*/
    color: var(--sub-main);
    padding-right: 10px;
}
#strategies .strategy-container .strategy-box .strag-content p {
    color: var(--black);
    font-size: 13px;
    padding: 5px 0 5px;
}
#strategies .stragIcon i {
    padding: 5px;
    color: var(--sub-main);
}
#strategies .imageCont {
    margin-top: 15px;
}
#strategies .imageCont img {
    border-radius: 15px;
}
#solution .sol-cont .textContent p {
    font-size: 15px;
}
#solution .sol-box {
    padding: 10px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5)!important;
    margin: 15px 0 15px;
}
#solution .sol-box p {
    padding: 10px;
    font-size: 17px;
    color: var(--grey);
}
#solution .sol-box .saidBy {
    display: flex;
}
#solution .sol-box .saidBy img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 2px;
}
#solution .sol-box .saidBy h2 {
    font-size: 16px;
    color: var(--black);
    padding: 8px;
    padding-left: 10px;
}
#solution .imageCont {
    margin-top: 15px;
}
#solution .imageCont img {
    border-radius: 15px;
}
#commitment .imageCont {
    position: relative;
    margin: 15px 0 15px;
}
#commitment .imageCont::before {
    position: absolute;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}
#commitment .imageCont img {
    border-radius: 20px;
}
#commitment .imageCont .imgContent {
    position: absolute;
    bottom: 0;
    padding: 10px;
}
#commitment .imageCont .imgContent p {
    color: var(--white);
    font-size: 17x;
}
#commitment .imageCont .imgContent .saidBy {
    margin: 15px 0 15px;
}
#commitment .imageCont .imgContent .saidBy h3 {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    font-family: var(--DM-sans);
}
#commitment .commitContent {
    margin-top: 10px;
}
#commitment .commitContent .commit-head {
    margin-bottom: 15px;
}
#commitment .commitContent .commit-head h4 {
    font-size: 14px;
    color: var(--sub-main);
    font-family: var(--DM-sans);
}
#commitment .commitContent .commit-head h2 {
    font-size: 30px;
    font-family: var(--winky);
}
#commitment .commitContent .commitText p {
    font-size: 15px;
    color: var(--black);    
}
#commitment .commitContent .sp-box-cont {
    margin-bottom: 30px;
}
#commitment .commitContent .sp-box-cont .sp-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 10px;
}
#commitment .commitContent .sp-box-cont .sp-inf h3 {
    font-size: 15px;
    color: var(--grey);
}
#commitment .commitContent .sp-box-cont .sp-inf p {
    font-size: 25px;
    color: var(--black);
    font-weight: 500;
}
#expert .expert-heading h2 {
    font-size: 50px;
    font-weight: 700;
    font-family: var(--gidole);
}
#expert .expert-heading p {
    font-size: 15px;
    padding-top: 10px;
    font-family: var(--DM-sans);
}
#expert .expertBox {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
}
#expert .expertBox img {
    border-radius: 10px;
    margin: 5px 0;
    max-width: 100%;
}
#testimonial .testimonial-box .testify-head h2 {
    font-size: 35px;
    font-family: var(--winky);
    padding: 10px 0 10px;
}
#testimonial .testimonial-box .testify-head i {
/*    font-size: 20px;*/
    color: var(--sub-main);
    padding-right: 10px;
}
#testimonial .testimonial-box .testify-content p {
    color: var(--black);
    font-size: 16px;
    padding: 20px 0 10px;
}
#testimonial .testimonial-box .saidBy h5 {
    color: var(--sub-main);
    font-size: 16px;
    font-family: var(--DM-sans);
}
#extra .col-12 {
    width: 100%;
    height: auto;
/*    background: #f8f5ed;*/
    background: var(--main);
    padding: 10px;
    text-align: center;
    border-radius: 20px;
    font-family: var(--DM-sans);
}
#extra .joinCtz {
    width: 800px;
    max-width: 100%;
    height: auto;
    margin: 10px auto;
}
#extra .joinCtz h2 {
    font-size: 40px;
    font-weight: 540;
    padding: 10px;
/*    color: var(--white);*/
}
#extra .joinCtz P {
    font-size: 15px;
    padding: 10px;
    color: var(--black);
}
#extra .joinCtz .extra-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center; /* or flex-start if you want left-aligned */
    margin-bottom: 30px;

}
#extra .joinCtz .extra-btn .e-btn,
#extra .joinCtz .extra-btn .e-link {
  flex: 0 0 auto;         /* Don’t grow or shrink */
  display: inline-block;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 15px;
  margin-top: 5px;
  margin-bottom: 10px;
  text-align: center;
  white-space: nowrap;    /* Prevent them from breaking into multiple lines */
}
#extra .joinCtz .extra-btn .e-btn {
  background: var(--sub-main);
  color: var(--white);
}
#extra .joinCtz .extra-btn .e-link {
  background: transparent;
  color: var(--white);
  font-size: 16px;
/*  border: 1px solid var(--black); /* optional for contrast */*/
}
#whoWeAre {
    width: 100%;
    height: auto;
}
#whoWeAre .whodetails .who-prof {
    width: 100%;
    height: 100%;
    padding: 5px;
    background: var(--sub-main);
}
#whoWeAre .whodetails .who-prof .who-head {
    margin: 10px;
}
#whoWeAre .whodetails .who-prof .who-head h6 {
    color: var(--black);
    font-size: 15px;
}
#whoWeAre .whodetails .who-prof .who-head h2 {
    color: var(--white);
    font-size: 25px;
    padding-top: 5px;
}
#whoWeAre .whodetails .who-prof .who-write {
    margin: 30px 10px;
    color: var(--white);
}
#whoWeAre .whodetails .who-prof .who-write p {
    font-size: 14px;
    font-family: var(--poppins);
}
#whoWeAre .whodetails .who-prof .who-btn {
    margin: 20px 10px;
}
#whoWeAre .whodetails .who-prof .who-btn a {
    display: inline-block;
    padding: 10px 15px;
    background: var(--white);
    color: var(--black);
    text-align: center;
    font-family: var(--winky);
}
#whoWeAre .whodetails .who-prof .who-btn a:hover {
    background: var(--black);
    color: var(--white);
}
#whoWeAre .whodetails .who-info {
    margin-top: 10px;
    padding: 10px;
}
#whoWeAre .whodetails .who-info .icon i {
    font-size: 35px;
    color: var(--sub-main);
}
#whoWeAre .whodetails .who-info .w-info-head {
    margin: 10px 0;
}
#whoWeAre .whodetails .who-info .w-info-head h6 {
    color: rgba(0,0,0,0.5);
    font-size: 13px;
    font-family: var(--poppins);
}
#whoWeAre .whodetails .who-info .w-info-head h2 {
    color: var(--grey);
    font-size: 25px;
    font-family: var(--gidole);
    font-weight: 600;   
}
#whoWeAre .whodetails .who-info .write-up p {
    font-size: 13px;
    font-family: var(--poppins);
    color: var(--black);
}
.about-image-container img {
    width: 500px;
    max-width: 100%;
    height: 500px;
    max-height: 100%;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}
.about-content  {
    display: flex;
    margin: 15px auto;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 5px rgba(110,130,208, .18)!important;
}
.about-content i {
    /* color: #000; */
    /* font-weight: bolder; */
    padding: 10px 15px 0px 0px;
}
.about-content:hover i {
    color: var(--white);
}
.about-content h4 {
    font-size: 25px;
    font-family: var(--winky); 
}
.about-content:hover h4 {
    color: var(--white);
}
.about-content p {
    /* color: rgba(0, 0, 0, 0.863); */
    font-size: 14px;
    font-family: var(--poppins);
}
.about-content:hover p {
    color: var(--white);
}
.about-content:hover {
    background: var(--main);
    transform: scale(102%);
} 
.about-content.active {
    background: var(--main);
    transform: scale(102%);
    color: var(--white);!important;
}
/* Services Page Start */
#services .container .serv-box {
    width: 100%;
    max-width: 100%;
    height: 300px;
    position: relative;
    margin-top: 20px;
}
#services .container .serv-box .image-container img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}
#services .container .serv-box .content {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
}
#services .container .serv-box .content h2 {
    position: absolute;
    bottom: 0;
    padding: 10px;
    font-size: 18px;
    color: var(--white);
}
#services .container .serv-box .content h3 {
    position: absolute;
    bottom: 30px;
    padding: 10px;
    font-size: 15px;
    color: var(--main);
}
#services .container .serv-box .icon {
    position: absolute;
    top: 0;
    left: 0;
    padding: 15px;
    background: var(--white);
}
#services .container .serv-box .icon i {
    line-height: 25px;
    font-size: 20px;
    color: var(--sub-main);
}
#services .container .serv-box:hover .content  {
    background: rgba(0,0,0,0.5);
}
#services .container .serv-box:hover .icon {
    background: var(--sub-main);
}
#services .container .serv-box:hover .icon i {
    color: var(--white);
}
#whyUs .whyUs-container {
    margin-bottom: 15px;
}
#whyUs .whyUs-container .textContent {
    margin-top: 5px;
}
#whyUs .textContent p {
    font-size: 14px;
    color: var(--black);
}
#whyUs .whyUs-container .whyUs-box .why-head h2 {
    font-size: 18px;
    font-family: var(--winky);
    padding: 5px 0 5px;
}
#whyUs .whyUs-container .whyUs-box .why-head i {
/*    font-size: 20px;*/
    color: var(--sub-main);
    padding-right: 10px;
}
#whyUs .whyUs-container .whyUs-box .why-content p {
    color: var(--black);
    font-size: 13px;
    padding: 5px 0 5px;
}
#whyUs .imageCont {
    margin-top: 15px;
}
#whyUs .imageCont img {
    border-radius: 15px;
}
#success .success-box {
    padding: 10px;
    margin-top: 15px;
}
#success .success-box .succ-icon {
    width: 40px;
    height: 40px;
    background: var(--sub-main);
    color: var(--white);
    text-align: center;
    line-height: 30px;
    padding: 5px;
    border-radius: 10px;
    margin: 15px 0 15px;
}
#success .success-box .succ-icon i {
    font-size: 18px;
}
#success .success-box .textContent {
    margin: 10px 0 10px;
}
#success .success-box .textContent h2 {
    font-size: 20px;
    padding: 10px 0 10px;
    font-family: var(--DM-sans);
    font-weight: 700;
}
#success .success-box .textContent p {
    font-size: 16px;
}
#fas .fas-box {
    width: 100%;
    display: flex;
    padding: 20px;
    gap: 10px;
    margin: 10px auto;
}

#fas .fas-box .fas-head .fas-icon {
    width: 30px;
    height: 30px;
    background: var(--sub-main);
    border-radius: 50%;
    color: var(--white);
    text-align: center;
    line-height: 30px;
    margin-top: 3px;
}
#fas .fas-box .fas-head .fas-icon i {
    font-size: 30px;
}
#fas .fas-box .fas-textContent h2 {
    font-size: 20px;
    padding: 5px;
    font-weight: 550;
    font-family: var(--DM-sans);
}
#fas .fas-box .fas-textContent p {
    font-size: 18px;
    padding: 5px;
    color: var(--black);
}
#connect .connect-box {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
#connect .connect-box .conn-icon {
    width: 40px;
    height: 40px;
    background: var(--sub-main);
    color: var(--white);
    text-align: center;
    line-height: 10px;
    padding: 10px;
    display: flex;
    justify-tracks: center;
    align-items: center;
    border-radius: 10px;
    margin: 15px 10px 15px;
}
#connect .connect-box .conn-icon i {
    font-size: 18px;
}
#connect .connect-box .textContent {
    margin: 10px 0 10px;
}
#connect .connect-box .textContent h2 {
    font-size: 20px;
    padding: 10px 0 10px;
    font-family: var(--DM-sans);
    font-weight: 700;
}
#connect .connect-box .textContent p {
    font-size: 16px;
}
#connect .connect-box .textContent a {
    font-size: 15px;
    color: var(--sub-main);
}
#connect .connect-box .textContent a i {
    font-size: 18px;
    color: var(--sub-main);
    padding: 15px 5px 5px;
}
/* Services Page End */

/* Academy Page Start */

#academyWelcome .academyWel-container {
    margin-bottom: 15px;
}
#academyWelcome .academyWel-container .textContent {
    margin-top: 5px;
}
#academyWelcome .textContent p {
    font-size: 14px;
    color: var(--black);
}
#academyWelcome .imageCont img {
    border-radius: 10px;
}
#whyChoose .whyChoose-box .whyChoose-head .icon {
    margin: 10px 0 10px;
}
#whyChoose .whyChoose-box .whyChoose-head .icon i {
    font-size: 30px;
}
#whyChoose .whyChoose-box .whyChoose-head h2 {
    padding: 15px 0 15px;
    font-size: 20px;
}
#whyChoose .whyChoose-box .textContent {
    margin: 10px 0 10px;
}
#whyChoose .whyChoose-box .textContent p {
    color: var(--black);
    font-size: 15px;
}
#journey .journey-box {
    margin: 15px 0px 15px;
}
#journey .journey-box .journ-head {
    width: 100%;
    padding: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4)!important;
    margin: 15px 0 15px;
}
#journey .journey-box .journ-head h2 {
    font-size: 20px;
}
#journey .journey-box .journContent {
    margin-top: 10px;
}
#journey .journey-box .journContent .item {
    margin-top: 10px;
}
#journey .journey-box .journContent .item {
    font-size: 15px;
}
#journey .journey-box .journContent .item i {
    color: var(--sub-main);
    font-size: 18px;
}
#academyServices .row {
    margin-top: 30px;
}
#academyServices .row .academyServ-box {
    width: 450px;
    max-width: 100%;
    border-radius: 5px;
    background: var(--white);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2)!important;
    margin: 10px auto;
    padding: 10px;
}
#academyServices .row .academyServ-box:hover {
    background: var(--main);
}
#academyServices .row .academyServ-box .image-container img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 20px auto;
}
#academyServices .row .academyServ-box .academyServ-content h2 {
    font-family: var(--poppins);
    font-size: 20px;
    padding: 10px;
    color: var(--dark);
}
#academyServices .row .academyServ-box:hover .academyServ-content h2 {
    color: var(--white);
}
#academyServices .row .academyServ-box .academyServ-content p {
    font-size: 14px;
    color: var(--black);
    padding: 10px;
}
#academyServices .row .academyServ-box:hover .academyServ-content p {
    color: #f5f5f5!important;
}
#academyServices .row .academyServ-box:hover .academyServ-content p {
    color: var(--grey);
}
#academyServices .row .academyServ-box .academyServ-content a {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 30px;
    color: var(--black);
    font-size: 14px;
    background: #ccc;
    margin: 10px;
}
#academyServices .row .academyServ-box:hover .academyServ-content a {
    background: var(--white);
}



/* ================= ANNOUNCEMENT STYLING ================= */
.announcement-section {
  display: flex;
  justify-content: center;   /* Center horizontally */
  align-items: center;       /* Center vertically */
  padding: 40px 20px;
  background: #f9f9f9;
}

.announcement-container {
  display: flex;
  align-items: stretch;
  max-width: 900px;          /* Keeps the section from getting too wide */
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  overflow: hidden;
}


.announcement-image {
  flex: 1 1 40%;
  min-width: 280px;
}

.announcement-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.announcement-content {
  flex: 1 1 55%;
  padding: 30px;
}

.announcement-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.announcement-sub {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.announcement-why {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0066ff;
  margin-bottom: 10px;
}

.announcement-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.announcement-list li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #333;
  padding-left: 20px;
  position: relative;
}

.announcement-list li::before {
  content: "✔";
  color: #0066ff;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.announcement-footer {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #444;
}

.announcement-btn {
  display: inline-block;
  background: #0066ff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.announcement-btn:hover {
  background: #004dcc;
}

/* Responsive */
@media (max-width: 768px) {
  .announcement-container {
    flex-direction: column;
    text-align: center; /* Center only the top text */
  }

  .announcement-image {
    width: 100%;
    max-height: 220px; /* limit image height on mobile */
    overflow: hidden;
  }

  .announcement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .announcement-content {
    padding: 20px;
    text-align: left; /* keep main content aligned left */
  }

  .announcement-title {
    font-size: 1.4rem;
    text-align: center; /* heading remains centered */
  }

  .announcement-list {
    margin-top: 15px;
    padding-left: 20px; /* bullet indentation */
    text-align: left;   /* list always left-aligned */
  }
}


/* Lightbox Background */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1200;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.85);
  animation: fadeIn 0.3s ease;
}

/* Lightbox Image */
.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  animation: zoomIn 0.3s ease;
}

/* Close Button */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.lightbox-close:hover {
  color: #ff5252;
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
@keyframes zoomIn {
  from {transform: scale(0.7);}
  to {transform: scale(1);}
}


/* Academy Page Ends */


/* Product Design Page  Start */

/* Hero */
.hero {
  /*background: linear-gradient(135deg, #0077ff, #005fcc);*/
  background: #333;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  line-height: 1.6;
}
.hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
}
.hero p {
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  opacity: 0.9;
  margin: 0 auto;
  max-width: 650px;
}
@media (max-width: 576px) {
  .hero { 
    padding: 60px 15px; 
  }
  .hero h1 { 
    font-size: 1.4rem; 
  }
  .hero p { 
    font-size: 0.9rem; 
  }
}

/* Promo Section */
.promo-section { 
  padding: 0 15px; 
  line-height: 1.6;
}
.promo-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  /*background: #fff;*/
  background: #f9fafc;
  margin: 0 auto;
}
.promo-card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 320px;
  border-bottom: 1px solid #eee;
}
.promo-card h2 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 600;
  margin-bottom: 10px;
}
.promo-card p, .promo-card li {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}
.promo-card ul { 
  padding-left: 18px; 
}

@media (max-width: 768px) {
  .promo-card { 
    flex-direction: column; 
    text-align: center; 
  }
  .promo-card img { 
    max-height: 250px; 
    margin-bottom: 15px; 
    border-bottom: none; 
  }
  .promo-card .col-md-6 { 
    padding: 15px; 
  }
}

/* Product Design Section */
.product-design { 
  padding: 60px 20px; 
}
.product-design h3 {
  font-size: clamp(1.3rem, 4vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.product-design p {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
}
.product-design li {
  margin-bottom: 10px;
  font-size: clamp(0.9rem, 2.3vw, 1rem);
}
.product-design li i { 
  color: #28a745; 
  margin-right: 8px; 
}
.product-design .btn {
  font-size: clamp(0.9rem, 2.3vw, 1rem);
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Clickable Image */
.clickable-img {
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.clickable-img:hover { 
  transform: scale(1.03); 
}

/* Product Design Page  End */

/* Contact Page Begins */

#contact .container .row {
    margin-top: 30px;
}
#contact form input,
#contact form textarea {
    border: 1px solid rgba(0, 0, 0, 0.2)!important;
}

/* Contact Page Ends */


/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  visibility: hidden; opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 9999;
}

/* Show overlay */
.popup-overlay.active {
  visibility: visible;
  opacity: 1;
}



/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  visibility: hidden; opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 9999;
}

/* Show overlay */
.popup-overlay.active {
  visibility: visible;
  opacity: 1;
}

/* Popup box */
.popup-box {
  background: #fff;
  border-radius: 20px;
  max-width: 420px;
  width: 90%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: slideUp 0.5s ease;
  position: relative;
  text-align: center;
}

/* Image container */
.popup-image-container {
  width: 100%;
  max-height: 200px; /* limit height */
  overflow: hidden;
}

.popup-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* crop proportionally */
}

/* Content */
.popup-content {
  padding: 18px;
}

.popup-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.popup-sub {
  font-size: 0.92rem;
  color: #555;
  margin-bottom: 12px;
}

.popup-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.popup-list li {
  background: #f5f7fa;
  margin: 4px 0;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 0.88rem;
  text-align: left;
}

/* Button */
.popup-btn {
  display: inline-block;
  background: #0066ff;
  color: #fff;
  padding: 9px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.popup-btn:hover {
  background: #004dcc;
}

/* Close button */
.popup-close {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #444;
  background: #f1f1f1;
  border-radius: 50%;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.popup-close:hover {
  background: #0066ff;
  color: #fff;
}

/* Animation */
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 480px) {
  .popup-title { font-size: 1.15rem; }
  .popup-sub { font-size: 0.88rem; }
  .popup-btn { font-size: 0.82rem; padding: 7px 16px; }
}







/* Footer Section Start */
#footer {
    width: 100%;
    height: auto;
}
#footer footer .company {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}
#footer footer .company .company-info .company-header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 5px;
}
#footer footer .company .company-info .company-header .image {
    margin: 10px;
}
#footer footer .company .company-info .company-header .image img {
    width: 130px;
    height: auto;
    border-radius: 50%;
}
#footer footer .company .company-info .company-header .company-name {
    margin: 10px;
}
/*#footer footer .company .company-info .company-header .company-name h3 {
    padding: 10px;
    font-size: 20px;
    font-family: var(--montserrat);
    color: var(--dark);
}
#footer footer .company .company-info .company-header .company-name h3 span {
    color: var(--sub-main);
}*/
#footer footer .company .company-info .divider {
    width: 100%;
    height: 1px;
    background: var(--black);
    margin-bottom: 5px;
}
#footer footer .company .company-info ul {
    margin: 20px auto;
    margin-left: -40px;
}
#footer footer .company .company-info ul li {
    display: inline-block;
    padding: 5px 15px;
    text-align: center;
}
#footer footer .company .company-info ul li a {
    color: var(--black);
    text-align: center;
}
/* Footer Section Ends */


@media (max-width: 856px) {
    #header .menu .logo img {
        margin-left: 0px;
    }
    #extra .joinCtz h2 {
        font-size: 35px;
    }
}
@media (min-width: 803px) {
  .sidebar {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0) !important;
    pointer-events: none;
    opacity: 0;
    transition: none !important;
  }
}
@media (max-width: 802px) {
    #header .menu ul {
        display: none;
    }
    #header .menu .nav-btn {
        display: none;
    }
    #header .menu .menu-btn {
        display: block;
    }
}
@media (max-width: 769px) {
    #extra .joinCtz h2 {
        font-size: 30px;
    }
}
@media (max-width: 500px) {
    #header .menu .logo img {
        margin-left: 0px;
    }
    #header .menu .menu-btn {
        display: block;
        margin: 0px;
    }
    .sidebar {
        top: 10%;
    }
    #extra .joinCtz h2 {
        font-size: 25px;
    }
    #commitment .commitContent .sp-box-cont .sp-inf p {
        font-size: 20px;
    }
    #expert .expert-heading h2 {
        font-size: 40px;
    }
    #expert .expert-heading p {
        font-size: 14px;
    }
    .headin-3 h2 {
        font-size: 30px;
    }
    .headin-3 p {
        font-size: 14px;
    }
    #testimonial .testimonial-box .testify-head h2 {
        font-size: 30px;
    }
    #connect .connect-box .textContent h2 {
        font-size: 18px;;
    }
    #connect .connect-box .textContent p {
        font-size: 15px;
    }
}

@media (max-width: 450px) {
    #extra .joinCtz P {
        font-size: 14px;
    }
    #commitment .commitContent .sp-box-cont .sp-inf p {
        font-size: 18px;
    }
    #commitment .commitContent .sp-box-cont .sp-inf h3 {
        font-size: 14px;
    }
    #expert .expert-heading h2 {
        font-size: 30px;
    }
    .heading-3 h2 {
        font-size: 25px;
    }
    #testimonial .testimonial-box .testify-head h2 {
        font-size: 25px;
    }
    #whoWeAre .whodetails .who-prof .who-head h2 {
        font-size: 20px;
    }
}
@media (max-width: 398px) {
    #footer footer .company .company-info ul {
        margin-left: -15px;
    }
    #footer footer .company .company-info ul li {
        display: inline-block;
        padding: 5px;
    }
    #footer footer .company .company-info ul li a {
        font-size: 15px;
    }
}
@media(max-width: 380px) {
    #home .home-content p {
        font-size: 14px;    
    }
    #home .home-content .sp-inf h3 {
        font-size: 18px;
    }
    #home .home-content .sp-inf p {
        font-size: 14px;
    }
    #fas .fas-box .fas-textContent h2 {
        font-size: 18px;
    }
    #fas .fas-box .fas-textContent p {
        font-size: 15px;
    }
}
@media (max-width: 326px) {
    #footer footer .company .company-info ul {
        margin-left: -20px;
    }
}
@media (max-width: 326px) {
    #footer footer .company .company-info ul {
        margin-left: -20px;
    }
}
@media (max-width: 288px) {
    #footer footer .company .company-info ul {
        margin-left: -30px;
    }
}