@font-face {
    font-family: segoeuithi-Bold;
    src: url(../css/font/segoeuithibd.ttf);
    font-display: swap;
}

@font-face {
    font-family: segoeuithi-Regular;
    src: url(../css/font/segoeuithis.ttf);
    font-display: swap;
}

@font-face {
    font-family: segoeuithi-Italic;
    src: url(../css/font/segoeuithisi.ttf);
    font-display: swap;
}

@font-face {
    font-family: segoeuithi-BoldItalic;
    src: url(../css/font/segoeuithisz.ttf);
    font-display: swap;
}

@font-face {
    font-family: Lato-Black;
    src: url(../css/font/Lato-Black.ttf);
    font-display: swap;
}

@font-face {
    font-family: Lato-Bold;
    src: url(../css/font/Lato-Bold.ttf);
    font-display: swap;
}

@font-face {
    font-family: Lato-Regular;
    src: url(../css/font/Lato-Regular.ttf);
    font-display: swap;
}

@font-face {
    font-family: Lato-Light;
    src: url(../css/font/Lato-Light.ttf);
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 17px;
    line-height: 25px;
    color: #000;
    font-weight: 400;
    overflow-x: hidden;
    font-family: Lato-Regular;
}

img {
    max-width: 100%;
    height: auto;
}

img:focus {
    outline: none;
}

a {
    color: #707070;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #2B2B2B;
    outline: none;
}

.main-area ul li,
.main-area ol li {
    margin-bottom: 15px;
}

ul,
ol {
    padding-left: 0;
    margin-bottom: 0;
}

ul li {
    list-style: none;
}

.section-heading {
    color: #000;
    font-family: segoeuithi-Regular;
    font-size: 45px;
    padding: 0 0 20px 0;
    line-height: normal;
    font-weight: 800;
}

.section-heading span {
    font-family: segoeuithi-Bold;
    color: #1b71be;
}

.divider {
    background-image: url(../images/divider.png);
    width: 65px;
    height: 10px;
    display: block;
    margin: 0 0 15px;
}
.divider-blue {
    background-image: url(../images/divider1.png);
    width: 65px;
    height: 10px;
    display: block;
    margin: 0 0 15px;
}
.divider.center, .divider-blue.center {
    margin: 0 auto 20px;
}
.footer_link img,
.form-mainbox .btn_submit,
.highlights .service_name,
.pl-reimaging_innerlist,
.top_btn {
    transition-duration: 0.3s;
}

.section-padding {
    padding: 60px 0px;
}
/******  Header Starts ****/
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
}
.logo{
    text-align: center;
}
/* Transparent mode */
.header.transparent {
    background: transparent;
}

/* Inner container */
.header_topbox {
    padding: 20px 0;
    transition: all 0.3s ease;
}

/* Logo adjustments */
.header .logo img {
    /* height: 80px; */
    transition: height 0.3s ease;
}

/* Menu links */
.header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 5px;
    float: right;
}

.header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative; /* Needed for underline positioning */
    font-family: "Lato", Sans-serif;;
}

/* Underline effect */
.header nav ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px; /* Distance from text */
    width: 0;
    height: 1.5px;
    background-color: #e0a500; /* Underline color */
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/* Hover state */
.header nav ul li a:hover {
    color: #e0a500 ;
}

.header nav ul li a:hover::after {
    width: 100%;
}

/* Shrink state */

.header.shrink {
    /* background: rgb(0 50 97); */
    background-color: #005493;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    /* display: block; */
}

.header.shrink .header_topbox {
    padding: 10px 0;
}

.header.shrink .logo img {
    /* height: 80px; */
}

.header.shrink nav ul li a {
    color: #fff;
}

/* Initial transparent header */
.header.transparent {
    background: transparent;
}

.header .logo img.logo-shrink {
    display: none; /* Hide blue logo initially */
}

/* Shrink state */


.header.shrink .header_topbox {
    padding: 10px 0;
}

/* When shrinking - hide white logo, show blue logo */
/* .header.shrink .logo img:not(.logo-shrink) {
    display: none;
} */
.header.shrink .logo img.logo-shrink {
    display: inline-block;
}

/* Menu link colors */
.header.transparent nav ul li a {
    color: #fff;
}


/* Call Button */
.call-btn-animated {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  background:#e0a500;
  overflow: hidden;
}
.call-btn-animated:hover{
    background-color: #e0a500;
    color: #000;
}
.call-btn-animated::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* Border thickness */
  border-radius: inherit;
  background: linear-gradient(90deg, red, orange, yellow, green, cyan, blue, magenta, red);
  background-size: 300%;
  animation: borderMove 3s linear infinite;
  -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
          mask-composite: exclude;
}

@keyframes borderMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* .call-btn-animated .icon-wrap {
  display: flex;
  align-items: center;
} */

.call-btn-animated .btn-text {
  display: inline-block;
}

.req-btn-animated {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #e0a500;
  overflow: hidden;
}
.req-btn-animated:hover{
    background-color: #fff;
    color: #000;
}
/******  Header Ends ****/

/* Banner section Starts */
.hero {
    position: relative;
    color: #fff;
    width: 100%;
    min-height: 130vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 34, 56, 0.5);
    /* z-index: 1; */
}

.hero-content {
    position: relative;
    z-index: 2;
    /* padding: 40px; */
    /* padding: 50px 44px 0 75px; */
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-content h1 span {
    color: #FFB601;
}

.hero-content .acelist {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-content .acelist .sept {
    color: #FFB601;
    font-size: 25px;
}

@-webkit-keyframes blinker {
    from {
        opacity: 1.0;
    }

    to {
        opacity: 0.0;
    }
}

.place_blink {
    text-decoration: blink;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
    color: #ffb601;
    font-weight: bold;
    font-size: 21px;
}
.place-yellow{
    color: #ffb601;
    font-weight: bold;
    font-size: 21px;
}
.cta-btn {
    background: #FFB601;
    color: #000;
    padding: 12px 18px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Arrow element */
.cta{    
    display: flex;
    justify-content: space-around;
    align-items: end;
}
.cta-btn::after {
    content: "➜";
    font-size: 16px;
    opacity: 0.2;
    /* transform: translateX(-5px); */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hover effect */
.cta-btn:hover {
    background: #e0a500;
}

.cta-btn:hover::after {
    opacity: 1;
    transform: translateX(5px);
}

.autodesk-tr-logo {
    position: relative;
    z-index: 2;
    padding: 25px 0 0 0;
}

.logo-divider::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 55px;
    background-color: #FFB601;
    left: 50%;
    top: 17px;
    transform: translateX(-50%);
}

.autodesk_logo {
    max-width: 100%;
    height: auto;
    filter: contrast(0) brightness(10);
}

/* req a call button */
.hero-content .call-btn-animated {
  margin-top: 20px;
  font-size: 1rem;
}
.hero-content {
  color: #fff;
  max-width: 600px;
}

/* =========== Form Section Start ============ */
#name {
  scroll-margin-top: 110px; /* match sticky menu height */
}

.banner-form {
    max-width: 440px;
    position: relative;
    background-color: #fff;
    border-radius: 40px;
    z-index: 1;
    backdrop-filter: blur(7px);
    color: var(--tg-color-white-default);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.12);
    border-image: initial;
    background: rgba(255, 255, 255, 0.06);
    /* margin: -510px 0 0 0; */
}

 .banner-form form {
    z-index: 2;
    position: relative;
    padding: 10px 20px 30px 20px;
    border-radius: 40px;
}

.banner-form h3 {
    text-align: center;
    font-size: 25px;
    color: #fff;
    margin: 15px 0;
    font-family: segoeuithi-Bold;
}

 .banner-form lable,
.tab-content h5,
.tab-content h6,
a.submit_btn {
    color: #fff
} 

textarea.form-control {
    resize: none
}

.banner-form select.form-control {
    background: url("../images/dropdown.png") 97% no-repeat #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #a8a8a8;
    cursor: pointer
}
 select.form-control {
    background: url("../images/dropdown.png") no-repeat 97% #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #707070;
  } 
.form-control::placeholder {
    color: #a8a8a8;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #a8a8a8;
    opacity: 1
}

.form-control::-ms-input-placeholder {
    color: #a8a8a8;
    opacity: 1
}

.banner-form-wrap {
    display: flex;
    width: 100%;
    justify-content: right;
    padding: 0px 0 0 0px;
} 

.banner-form .form-control {
    font-size: 15px;
    line-height: 18px;
    border-radius: 4px;
    height: auto;
    min-height: auto;
    padding: 11px 8px;
    max-height: 60px;
    margin:0 0 10px 0;
}
.mobile_view {
    display: none;
}
.btn_submit {
    padding: 9px 25px;
    color: #fff !important;
    font-weight: 500;
    border: 1px solid;
    border-radius: 10px;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
    background: linear-gradient(113deg, #00537e 0, #00537ea1 100%);   
    font-family: segoeuithi-Bold;
}

.btn_submit:hover{
    text-decoration: none;
    color: #00537e !important;
    background: #fff !important;
    border: 1px solid #00537e !important;
}

select {
  color: #9e9e9e;
}
option:not(:first-of-type) {
  color: black;
}

.loader { 
    display: none; 
    border: 4px solid rgba(255, 255, 255, 0.3); 
    border-top: 4px solid #00537e; 
    border-radius: 50%; 
    width: 15px; 
    height: 15px; 
    animation: spin 1s linear infinite; 
    margin-left: 10px; 
} 

@keyframes spin { 
    0% { 
        transform: rotate(0deg); 
    } 
  
    100% { 
        transform: rotate(360deg); 
    } 
} 
  
.loading { 
    background-color: #ccc; 
    pointer-events: none; 
} 

/* Form section end */
  
/* For banner animation (moveUp direction) */
.anim{
    opacity: 0;
    transform: translateY(30px);
    animation: moveup 0.5s linear forwards;
}
@keyframes moveup{ 
     
    100% { 
        opacity: 1;
        transform: translateY(0px); 
    } 
} 

/* banner animation section end */

[data-aos] {
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform-origin: center;
}
.contact_number{
    font-size:17px;
    color:#fff;
}
.contact_num .btn-text{
    font-family: "Lato", Sans-serif;
    font-size:14px;
    color:#fff;
    text-decoration:none;
}
.Construction_list li b{
    color: #1b71be;
}

.blinking-text {
    animation: blink 1s infinite; /* 'blink' is the keyframe name, '1s' is the duration, 'infinite' makes it loop indefinitely */
}

@keyframes blink {
    0% {
    opacity: 1; /* Fully visible at the start */
    }
    50% {
    opacity: 0; /* Invisible at the midpoint */
    }
    100% {
    opacity: 1; /* Fully visible at the end */
    }
}
.blinking-text span{
    color: #ffb400;
    font-weight: bold;
    font-size:21px;
}

/* Modal background */
/* Modal background */
.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding: 50px 0 0 0;
  left: 0;
  top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
  text-align: center;
}

/* Center content */
.video-modal-content {
  position: relative;
  margin: auto;
  width: 70%;   /* desktop size */
  max-width: 1200px;
}

/* Responsive 16:9 video wrapper */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* Close button */
.video-modal .close {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 37px;
    color: #fff;
    cursor: pointer;
    background: #312f2f;
    z-index: 999;
    padding: 6px 8px;
    border-radius: 40px;
}







/* Base font sizes for large screens */
@media (min-width: 1200px) {
    .slide-content h1 { 
        font-size: 56px; 
    }
    .slide-content p { 
        font-size:21px; 
    }
}
.subtitle {
    color: #222222;
    font-family:'segoeuithi-Bold';
    font-size: 25px;
    line-height: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 15px 25px;
    border: 1px solid #CDD0CD;
    border-radius: 50px;
    display: inline-block;
}
.mob-headings h2, .mob-headings h4{
    display: none;
}
.about__one-left-list-item {
    display: flex;
    align-items: start;
    gap: 25px;
    margin: 25px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #CDD0CD;
}
.about__one-left-list-item1 {
    display: flex;
    align-items: start;
    gap: 25px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    /* border-bottom: 1px solid #CDD0CD; */
}
.left-list-item-content h4{
    font-weight: 800;
}
@keyframes fadeInLeft{
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes fadeInUp{
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
.anim-img{
    width: 20%;
}
/* Program section end */

/* marquee-section starts  */
.marquee-section {
    background: #08557e;
    color: #fff;
    /* padding: 10px 0; */
    /* border-top: 2px solid #ffb400;
    border-bottom: 2px solid #ffb400; */
}
.marquee-title{
   border-right: 1px solid #fff;
    min-height: 65px;
    display: flex;
    align-items: center;
    padding: 10px 10px;
    justify-content: center;
}
.marquee-title h6 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    color: #ffb400;
    white-space: nowrap;
}
/* .marquee-left-text .marquee-title{
    border-right: 1px solid #fff;
} */
/* .marquee-wrapper {
    padding: 10px 0;
    overflow: hidden;
    position: relative;
} */

marquee{
    padding: 13px 0px 10px 0px;
}
.marquee span {
    display: inline-block;
    padding-right: 50px;
    font-size: 20px;
    font-weight: 500;
    font-display: swap;
    float: left;
}

/* Pause on Hover (Desktop Only) */
@media (hover: hover) {
    .marquee-wrapper:hover .marquee {
        animation-play-state: paused;
    }
}

/* Animation Keyframes */
@keyframes marquee-scroll {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Responsive Tweaks */
@media (max-width: 992px) {
    .marquee-title h6 {
        text-align: center;
        /* margin-bottom: 8px; */
    }
    .marquee {
        animation-duration: 20s;
    }
    .video-modal-content {
        width: 95%;  /* shrink to fit smaller screens */
    }
    .video-modal {
        padding: 30% 0 0 0;
    }
}

@media (max-width: 768px) {
    .marquee span {
        font-size: 0.85rem;
    }
    .marquee-title {
        border-right: 1px solid #fff;
    }
}

@media (max-width: 580px) {
    .marquee span {
        font-size: 0.8rem;
        padding-right: 30px;
    }
}

/* marquee-section ends  */

/* program section start */

#program{
    scroll-margin-top: 100px; 
}



.program-section {
    /* background-image: url(../images/bg-map-1.png); */
    background-repeat: no-repeat;
    /* background-position: top; */
    background-size: cover;
    margin: 50px 0 0 0 ;
}
.prog-box p {
    color: #000;
}
.prog-content p {
    color: #000;
}
.program-section .section-heading {
    color: #000;
    /* padding: 10px 40px; */
    padding: 50px 55px 20px;
    font-weight: 800;
    font-size: 35px;
}
.prog-box {
    padding: 50px 65px 50px 110px;
    background: #093b6c;
    z-index: 1;
}
.prog-content {
   line-height: 30px;
    color: #000;
    padding: 0px 55px 38px;
    /* background: #08314fcf; */
    z-index: 1;
    /* margin: 45px 0px 0 -105px; */
    width: 100%;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    text-align: justify;
}
.prog-section-title h4 {
    font-size: 26px;
    color: #fff;
    font-weight: 800;
    /* margin-bottom: 20px; */
    text-transform: uppercase;
    padding: 50px 55px 38px;
    /* margin: 5px 0 0 10px; */
}
.prog-section-title p{
    color: #fff;
    list-style: circle;
    margin: 10px 0 20px 0;
}
.prog-section-title ul li{
    color: #fff;
    list-style: circle;
    margin: 10px 0 0px 0;
}

.prog-section-title img{
    width: 48px;
    height: 48px;
}
/* Animation keyframes */
@keyframes slideInLeft {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Apply animation to left column (image) */
.program-section .col-lg-7 {
    animation: slideInLeft 1s ease-out forwards;
}

/* Apply animation to right column (text) */
.program-section .col-lg-5 {
    animation: slideInRight 1s ease-out forwards;
}

/* Optional: delay text so image comes first */
.program-section .col-lg-7 {
    animation-delay: 0.3s;
}
/* program section end */

/* software section start */
#software-logos {
    margin-bottom: 40px;
}
#software-logos .section-heading{
    font-size: 45px;
    color: #000;
    padding: 10px 40px;
    font-weight: 800;
}
.brands .brand__card {
    background-color: #f2faff;
    border-radius: .875rem;
    padding: .5rem;
    border: 1px solid #0097fb; 
}
.brand__card {
    width: 11rem;
    margin-right: 1rem;
    overflow: hidden;
}
.brand__card img {
    max-height: 50px;
    width: auto;
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    overflow: hidden;
}
.brand__card img:hover{
    transform: scale(1.1);
}
/* software section end */

/* logo collaboration  start*/ 

.circle-collaboration .brands .brand__card {
    background-color: #fff;
    border: 1px solid #ccc;
    margin: 0 7px 10px 10px;
}

/* logo collaboration  end*/

/* What sets us apart section start */
#diagonal-section {
  scroll-margin-top: 100px; 
}

.diagonal-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 65px;
  position: relative;
  overflow: hidden;

}
.content h4 span{
  font-size: 30px;
  font-weight: 900;
  color: #1b71be;
}
.diagonal-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    background-color: #f4f9ff;
    transform: skewX(346deg);
    z-index: 0;
}

.content {
  position: relative;
  color: #000;
  z-index: 1;
  max-width: 60%;
  padding: 0 0 0 16px;
}
/* Image layer */
.content::before {
    content: "";
    position: absolute;
    top: 0;
    left: -51px;
    width: 100%;
    height: 100%;
    background-image: url(../images/BIM-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2; 
    z-index: -1;
}
.image-container {
  position: relative;
  z-index: 1;
}

.image-container img {
  max-width: 500px;
  width: 100%;
}
.content ul li {
    list-style: circle;
    line-height: 40px;
}
/* What sets us apart section end */

/* Opportunities section start */
#Who-Should-Enroll{
    scroll-margin-top: 100px;
}

.courses{
    padding: 50px 0;
}
.course__card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.course__card .thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.course__card .caption {
  text-align: center;
  background: #f7f7f7;
  color: rgb(33 37 41);
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.course__card:hover .caption {
  /* text-align: center; */
  background: rgb(64 123 163 / 39%);
}
.courses .owl-nav {
  display: block !important; /* Hide arrows */
}

.courses .owl-dots {
    display: none;
}
/* Carousel Arrows */
.courses .owl-nav {
  display: block !important;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
}

.courses .owl-nav button {
  background-color: rgb(64 123 163) !important;
  color: #fff !important;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 22px !important;
  line-height: 40px;
  cursor: pointer;
  transition: background 0.3s ease;
  pointer-events: auto;
}

.courses .owl-nav button:hover {
  background-color: rgba(0, 90, 180, 1);
}

/* Left Arrow */
.courses .owl-nav .owl-prev {
  position: absolute;
  left: -20px;
}

/* Right Arrow */
.courses .owl-nav .owl-next {
  position: absolute;
  right: -20px;
}

/* Card Styling */
.course__card {
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
}

.course__card:hover {
  transform: translateY(-5px);
}

.course__card .thumbnail img {
  transition: transform 0.3s ease;
}

.course__card:hover .thumbnail img {
  transform: scale(1.05);
}
/* Opportunities section end */

/* Invest in Your Future with BIM section starts */
.h2 span{
    color: #0097fb;
}
.Why-BIM{
    margin-bottom: 80px;
}
.whyBimCarousel .card {
  border: 1px solid #ddd; /* Light border */
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  background: #fff;
}

.whyBimCarousel .card:hover {
  border-color: #0097fb; /* Highlight border on hover */
}

.whyBimCarousel img {
  border-radius: 8px;
  height: 220px; /* Set your desired height */
  object-fit: cover; /* Crop and center without distortion */
  width: 100%;
}
/* Navigation Buttons */
.whyBimCarousel .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.whyBimCarousel .owl-nav button {
  background-color: rgb(64 123 163) !important;
  color: #fff !important;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.3s ease;
}

.whyBimCarousel .owl-nav button:hover {
  background: #005f9e;
}

.whyBimCarousel .owl-nav button svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.whyBimCarousel .owl-nav .owl-prev {
    position: absolute;
    left: -20px;
}
.whyBimCarousel .owl-nav .owl-next {
    position: absolute;
    right: -20px;
}
/* Invest in Your Future with BIM section ends */

/* FAQs section starts */
.faq-section {
    /* max-width: 600px; */
    margin: auto;
    font-family: segoeuithi-Regular;
    margin: 50px 0 80px 0;
    background-image: url(../images/bg-map-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.faq-item {
  border-bottom: 1px solid #ccc;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg); /* "+" becomes "×" */
}

.faq-answer {
  display: none;
  padding: 0 15px 15px;
  color: #444;
}

.faq-answer.show {
  display: block;
}
/* FAQs section ends */

/* Certificate section starts  */
#programme-benefits{
    scroll-margin-top: 100px;
}


/* Section background */
.bg-primary-light {
    background-color: #f4f9ff; /* Light blue shade */
}

/* Main heading */
.bg-primary-light h2 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* Sub heading */
.bg-primary-light h3 {
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Paragraph */
.bg-primary-light p {
    color: #333;
}

/* Carousel images */
.bg-primary-light .carousel-inner img {
    border-radius: 10px;
    height: 400px;  /* Set height for uniformity */
    object-fit: contain; /* Prevent cropping */
    background-color: #fff;
    padding: 10px;
}

/* Carousel indicators */
.bg-primary-light .carousel-indicators [data-bs-target] {
    background-color: #1b71be; /* Primary color */
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: -55px;
}
/* Carousel controls */
.bg-primary-light .carousel-control-prev-icon,
.bg-primary-light .carousel-control-next-icon {
    background-color: rgba(27, 113, 190, 0.8); /* Primary color with opacity */
    border-radius: 50%;
    background-size: 60% 60%;
    padding: 20px;
}

/* List styling */
.check__list {
    list-style: none;
    padding-left: 0;
}

.check__list li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
}

.check__list li::before {
    content: "\2713"; /* Checkmark */
    position: absolute;
    left: 0;
    color: #1b71be; /* Primary color */
    font-weight: bold;
}

/* Gradient title highlight */
.gradient__title {
    color: #1b71be;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bg-primary-light .carousel-inner img {
        height: 250px;
    }
}
/* Certificate section ends  */

/* Testimonials section starts  */
/* Hide arrows, style dots */
.testimonial__wrapper .owl-nav {
    display: none !important;
}

.testimonial__wrapper .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.testimonial__wrapper .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.testimonial__wrapper .owl-dot.active span {
    background: #ffb400; /* active dot color */
    transform: scale(1.2);
}

/* Quote icon */
.quote-icon {
  width: 40px !important;
  height: auto;
  vertical-align: middle;
}

/* Equal height testimonial cards */
.testimonialCarousel .owl-stage {
  display: flex !important;
}

.testimonialCarousel .owl-item {
  display: flex;
}

.testimonialCarousel .testi__card {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.testi-list{
width: 100%;
  display: flex;
  align-items: center;
}
.testi-list img{
    float: left;
    max-width: 70px;
    border-radius: 100px;
    min-height: 70px;
    max-height: 70px;
    object-fit: cover;
}
.testi-list span{
float: left;
  margin: 0 0 0 20px;
  width: 60%;
}   
.testi__card .desc{
    min-height: 180px;
}
/* Testimonials section ends  */


/* footer section start */

footer {
    color: #FFF;
    position: relative;
    background-color: #005493;
    margin-top: 15px;
    /* text-align: center; */
}

.footer-mainbox {
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.footer-content .section-heading {
    color: #FFF;
    font-size: 30px;
}

.footer-content .section-heading::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 93px;
    width: 115px;
    /* border-bottom: 3px solid #0097fb; */
}

footer a {
    color: #FFF;
    text-decoration: none;
    word-wrap: break-word;
    margin: 0 3px 0 0;
}

footer a:hover {
    color: #e0a500;
}
.footer_link img{
    padding-right: 7px;
}
.contact {
    font-family: segoeuithi-Regular;
    padding-bottom: 20px;
}
.made_by_text {
    padding: 0px 0 5px 0;
    display: block;
    /* border-top: 1px solid #ddd; */
}

/* footer section end */

/* Top button start*/
#myBtn {
    display: none;
    position: fixed;
    bottom: 0;
    right: 15px;
    z-index: 99;
    border: none;
    outline: 0;
    background-color: #e0a500;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    border-radius: 40px;
    font-size: 22px;
    opacity: 0.5;
    height: 40px;
    width: 40px;
    transform: translateY(0);
    animation: bounceInDown 2s;
    -webkit-animation: bounceInDown 2s;
}
#myBtn:hover {
    opacity: 1;
}
/* Top button ends*/

/* <!-- Whatsapp chat ends--> */
.whatsapp-float {
position: fixed;
    bottom: 110px;
    right: 11px;
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
    z-index: 999;
    box-shadow: 0 0 15px #00000040;
    animation: 1.5s infinite alternate, float 3s infinite;
    transition: all 0.3s ease;
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}

/* Glow animation */
@keyframes glow {
    from {
        box-shadow: 0 0 10px #1b71be, 0 0 20px #1b71be;
    }
    to {
        box-shadow: 0 0 20px #1b71be, 0 0 40px #1b71be;
    }
}

/* Floating up-down animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px #1b71be, 0 0 50px #1b71be;
}
    /* <!-- Whatsapp chat ends--> */

/*thankyou page start*/
.thankyoutext {
    text-align: center;
    padding: 50px;
}
.thankyou_button {
    text-align: center;
}
.thankyou_button .banner-btn {
    font-family: segoeuithi-Bold;
    font-size: 28px;
    width: 86%;
    padding: 40px;
    color: #e32323;
    text-decoration: none;
}
.thankyou_banner_section{
    padding: 170px 0 100px 0;

}
.ty_btn {
    font-family: segoeuithi-Bold;
    background: linear-gradient(113deg, #093b6c 0, #093b6ca1 100%); 
    padding: 8px 20px;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    text-transform: 0.4s;
}
.ty_btn:hover {
    text-decoration: none;
    color: #093b6c;
    background: #fff;
    border: 1px solid #093b6c;
}
.btn_tysubmit a {
    font-family: segoeuithi-Bold;
    background: linear-gradient(113deg, #093b6c 0, #093b6ca1 100%);
    padding: 8px 20px;
    border-radius: 20px;
    color: #fff;
    text-transform: 0.4s;
    text-decoration: none;
}
.btn_tysubmit a:hover {
    text-decoration: none;
    color: #093b6c;
    background: #fff;
    border: 1px solid #093b6c;
}

/*thankyou page end*/

/* Responsive Section starts */
@media screen and (min-width:1601px) and (max-width:2000px) {
    .banner_box {
        background-size: contain;
        min-height: 800px;
        background-color: #629dd2;
    }
    .opportunities_card {
        min-height: 510px;
    }
    .cstm-list li img {
        width: 15%;
    }
    .content-box .cstm-list li p {
        margin: -45px 0px 25px 85px;
    }
    .g-recaptcha {
        transform:scale(0.87);
        transform-origin:0 0;
    }
    .reg-desk{
        width: 13%;
        bottom: 212px;
        left: 113px;
    }
    .about-box {
        background: #fff;
        color: #000;
        padding: 50px 40px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        transition: 0.3s;
        position: absolute;
        z-index: 1;
        left: 270px;
        top: 80px;
    }   
    .about-box p{
        font-size: 20px;
    }
    .banner-form {
        max-width: 440px;
    }
    .call-btn-animated {
        padding: 0px 18px;
    }
    .hero{
        position: relative;
        color: #fff;
        width: 100%;
        min-height: 110vh;
    }
    .hero-content {
        position: relative;
        z-index: 2;
        /* padding: 40px; */
        /* padding: 50px 0px 0 100px; */
        margin: 0 auto;
    }
    .banner-form {
        margin: 0 auto;
    }
}
@media screen and (max-width:1600px) {
    .main-navigation ul li {
        padding: 10px 8px;
    }
    .main-navigation ul li a {
        font-size: 14px;
        font-family: 'segoeuithi-Regular';
    }
    .main-navigation {
        text-align: right;
    }
    .banner_box {
        background-size: contain;
        /* min-height: 610px; */
    }
    .content-box .cstm-list li p {
        margin: -45px 0px 25px 70px;
    }
    .about-box {
        top: 50px;
    }   
    .hero-content {
        position: relative;
        z-index: 2;
        /* padding: 40px; */
        /* padding: 50px 0px 0 100px; */
        margin: 0 auto;
    }
    .banner-form {
        margin: 0 auto;
    }
}
@media screen and (min-width:1201px) and (max-width:1599px) {  
    .g-recaptcha {
        transform:scale(0.67);
        transform-origin:0 0;
    }
    .main-navigation ul li a {
        font-size: 14px;
        font-family: 'segoeuithi-Regular';
    }
    .reg-desk{
        bottom: 140px;
        left: 130px;
    }
    .about-box {
        top: 50px;
    }   
    .hero-content h1 {
        font-size: 50px;
        padding: 0 30px 0 0;
    }
    .hero-content h1 img{
        width: 80%;
    }
    .hero {
        position: relative;
        color: #fff;
        width: 100%;
        min-height: 145vh;
    }
    .hero-content {
        position: relative;
        z-index: 2;
        /* padding: 40px; */
        /* padding: 50px 0px 0 100px; */
        margin: 0 auto;
    }
    .banner-form {
        margin: 0 auto;
    }
    .hero-content h1 {
        font-size: 56px;
    }
}


@media screen and (min-width:992px) and (max-width:1200px) {
    .opportunities_card {
        min-height: 600px;
    }
    .admission_mainbox_after::after{
        display: none;
    }
    .contact_num .btn-text {
        font-size: 12px;
    }
    .main-navigation ul li a {
        font-size: 12px;
    }
    .main-navigation ul li {
        padding: 10px 4px;
    }
    .banner_box {
        padding: 0 ;
        /* min-height: auto; */
        background-size: contain;
    }
    .banner-form-wrap {
        padding-top: 0;
    }
    .footer_box1 {
        width: 35%;
    }
    .footer_box2 {
        float: left;
        width: 30%;
    }
    .footer_heading {
        font-size: 22px;
    }
    .footer_content {
        font-size: 16px;
    }
    .programme_structure_box h4 {
        font-size: 14px;
    }
        .cta-btn, .req-btn-animated{
        font-size: 14px;
    }
    .hero-content h1 img{
        width: 82%;
    }
    .hero-content h1 {
        font-size: 43px;
    }
}
@media screen and (min-width:1025px) and (max-width:1300px) { 
    .reg-desk{
        bottom: 140px;
        left: 84px;
    }
    .about-box {
        top: -30px;
    }   
    .about-box p{
        font-size: 14px;
    }
}
@media screen and (max-width:1024px) {
   .top_leftbox {
        width: 90%;
    }
    .nav-trigger {
        display: block;
        right: 20px;
        cursor: pointer;
        height: 22px;
        width: 28px;
        padding: 0;
        opacity: 1;
        position: absolute;
        top: 28px;
        -webkit-transition: all .2s ease-in 0s;
        transition: all .2s ease-in 0s;
        z-index: 999;
    }
    .nav-trigger .bars {
        background-color: #fff;
        height: 4px;
        margin-bottom: 5px;
        width: 100%;
        -webkit-transition: all .2s ease-in 0s;
        transition: all .2s ease-in 0s;
    }
    .nav-trigger .bars:last-child {
        margin-bottom: 0;
    }
    .main-menu--open .bars:first-child {
        -webkit-transform: translateY(8px) rotate(136deg);
        transform: translateY(8px) rotate(136deg);
    }
    .main-menu--open .bars:nth-child(2) {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    .main-menu--open .bars:last-child {
        -webkit-transform: translateY(-10px) rotate(-136deg);
        transform: translateY(-10px) rotate(-136deg);
    }
    .main-menu--open .nav-trigger .bars {
        background-color: #FFF;
    }
    .main-navigation ul {
        width: 90%;
        max-width: 380px;
        margin: 60px auto 30px;
        text-align: left;
        display: block;
    }
    .main-navigation ul li {
        display: block;
        border-radius: 0;
        border-bottom: dotted 1px #fff;
    }
    .main-menu--open .main-navigation {
        opacity: 1;
        pointer-events: auto;
    }
    .main-navigation ul li a {
        color: #FFF;
        font-family: 'segoeuithi-Regular';
    }
    .main-navigation ul li:hover a {
        color: #FFF;
    }
    .main-navigation {
        /* background-color: #707070e3; */
        background-color: #093b6ceb;
        height: 100%;
        right: 0;
        top: 0;
        overflow-y: auto;
        padding: 0;
        position: fixed;
        width: 40%;
        z-index: 99;
        opacity: 0;
        pointer-events: none;
        -webkit-transition: opacity .2s ease 0s;
        transition: opacity .2s ease 0s;
        border-top: 1px solid #fff;
    }
    .process_content {
        max-width: 75%;
    }
    .prcess_list,
    .prcess_list.last_list {
        width: 25%;
    }
    .reg-heading {
        font-size: 24px;
    }
    ul.custom-list {
        max-width: 94%;
        padding: 40px 0 0 0;
    }
    .reg-contentbox {
        padding: 50px 20px 50px 50px;
    }
    
    .banner_box {
        padding: 0 ;
        /* min-height: auto; */
    }
    .banner-form form {
        z-index: 2;
        position: relative;
        padding: 10px 20px 16px 20px;
    }
    .banner-form-wrap {
        padding-top: 0;
    }
    .main-navigation li a::before {
        display: none;
    }
    .form-mainbox { 
        margin: -110px 0 0px 0;
        position: relative;
    }
    .about-desk{
        display: none;
    }
    .about-mob{
        display: block;
    }
    .about-box {
        left: 200px;
        position: relative;
        margin-bottom: 30px;
    }
    .process_circle:after {
        top: 18px;
        left: 154px;
        width: 65%;
    }
    .programme_structure_box {
        max-height: 220px !important;
    }
    .programme_structure_box h4 {
        font-size: 14px;
    }    
    .g-recaptcha {
        transform:scale(0.60);
        transform-origin:0 0;
    }
    .reg-desk {
        width: 20%;
        position: absolute;
        bottom: 237px;
        left: 65px;
        font-family: 'segoeuithi-Bold';
    }
    .about {
        margin: 40px 0 0 0  !important;
    }
    .program-section {
        margin-top: 0 !important;
    }
    .about-box {
        top: 0 !important;
    }
    .header nav ul {
        padding: 0;
        list-style: none;
        display: flex;
        gap: 20px;
        flex-direction: column;
        margin: 30px auto;
    }
    .header nav ul {
        float: none;
    }
    .hero-content h1 {
    font-size: 40px;
    }
    .autodesk_logo {
        max-width: 100%;
    }
    .cta-btn {
        background: #FFB601;
        color: #000;
        padding: 12px 10px;
    }
    .hero-content p {
        font-size: 17px;
    }
    .courses {
        padding: 50px 0 0 0;
    }
    .Why-BIM {
        margin-bottom: 18px;
    }
}


@media screen and (max-width:992px) {
    .top_leftbox {
        width: 90%;
    }
    .nav-trigger {
        display: block;
        right: 20px;
        cursor: pointer;
        height: 22px;
        width: 28px;
        padding: 0;
        opacity: 1;
        position: absolute;
        top: 28px;
        -webkit-transition: all .2s ease-in 0s;
        transition: all .2s ease-in 0s;
        z-index: 999;
    }
    .nav-trigger .bars {
        background-color: #e0a500;
        height: 4px;
        margin-bottom: 5px;
        width: 100%;
        -webkit-transition: all .2s ease-in 0s;
        transition: all .2s ease-in 0s;
    }
    .nav-trigger .bars:last-child {
        margin-bottom: 0;
    }
    .main-menu--open .bars:first-child {
        -webkit-transform: translateY(8px) rotate(136deg);
        transform: translateY(8px) rotate(136deg);
    }
    .main-menu--open .bars:nth-child(2) {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    .main-menu--open .bars:last-child {
        -webkit-transform: translateY(-10px) rotate(-136deg);
        transform: translateY(-10px) rotate(-136deg);
    }
    .main-menu--open .nav-trigger .bars {
        background-color: #FFF;
    }
    .main-navigation ul {
        width: 90%;
        max-width: 380px;
        margin: 60px auto 30px;
        text-align: left;
        display: block;
    }
    .main-navigation ul li {
        display: block;
        border-radius: 0;
        border-bottom: solid 1px #fff;
    }
    .main-menu--open .main-navigation {
        opacity: 1;
        pointer-events: auto;
    }
    .main-navigation ul li a {
        color: #FFF;
        font-family: 'segoeuithi-Regular';
    }
    .main-navigation ul li:hover a {
        color: #FFF;
    }
    .banner-section {
        background-position: right center;
        background-size: 68% 100%;
    }
    .opportunities_card {
        min-height:fit-content;
    }
    .process_content {
        padding: 10px 20px;
        max-width: 100%;
        text-align: left;
        display: flex;
        gap: 20px;
        align-items: center;
    }
    .form-banner-mainbox {
        margin: 0;
    }
    .banner-form {
        margin: 10px 0 20px 0;
    }
    
    .footer_box1,
    .footer_box2 {
        width: 100%;
    }
    .footer_list {
        border-right: none;
        min-height: auto;
        margin: 0 0 30px;
        padding: 0;
        text-align: left;
    }
    .footer_list:first-child {
        padding: 0;
    }
   
    .cstm-list li img {
        width: 6%;
    }
    .content-box .cstm-list li {
        margin: 20px 0;
    }
    .content-box .cstm-list li p {
       margin: -35px 0px 0px 77px;
    }
    
    .py-120 {
        padding-block-start: 120px !important;
        padding-block-end: 120px !important;
    }
    .ps-lg-5 {
        padding-left: 3rem !important;
    }
    .main-navigation li a::before {
        display: none;
    }
    
    .form-mainbox {
        margin: -153px 0 0px 0;
        position: relative;
    }
    .g-recaptcha {
        transform:scale(0.67);
        transform-origin:0 0;
    }
    .reg-closing {
        /* margin-top: 68px; */
        align-items: center;
        text-align: center;
        position: absolute;
        top: 0px;
    }
    .slide-content h1, .slide-content h1 span{
        font-size: 33px;
    }
    .autodesk-tr-logo {
        padding: 20px 0 0 0;
        position: relative;
    }
    .logo-divider::after {
        content: "";
        position: absolute;
        width: 2px;
        height: 55px;
        background-color: #1b71be;
        left: 223px;
        top: 20%;
    }
    .autodesk-tr-logo img{
        width: 100%;
    }
    .program-section .section-heading {
        color: #000;
        padding: 55px 0 0 40px;
    }
    .prog-content {
        line-height: 30px;
        /* padding: 35px 25px 38px;
        margin: 20px 0px 0 -60px; */
    }
    .program-section {
        margin: 0 !important;
    }
    .slides {
       height: 600px;
    }
}

@media screen and (max-width:768px) {
   
    .banner-text {
        color: #FFF;
    }
    .bold-content {
        color: #FFF;
    }
    .form-mainbox {
        padding: 20px;
    }
    .about-section {
        padding: 20px 0 50px 0;
    }
    .about-content-mainbox::after {
        display: none;
    }
    .about-imgbox {
        margin: 0 0 20px 0;
    }
    .program-section .section-heading {
        padding: 0 0 25px 0;
    }
    .tabs-wrapper .tab-content {
        margin: 20px 0;
    }
    .nav-item,
    .nav-pills .nav-link {
        width: 100%;
    }
    .process_list_mainbox {
        display: block;
        padding: 0;
    }
    .prcess_list,
    .prcess_list.last_list {
        background-image: none;
        width: 100%;
    }
    .prcess_list.last_list .process_content {
        max-width: 100%;
    }
    .opportunities-mainbox {
        flex-direction: column;
    }
    .opportunities-list {
        padding: 10px 0;
        width: 100%;
    }
    .opportunities-mainbox.list-box {
        margin: 0px 0 0 0;
    }
    ul.custom-list {
        max-width: 100%;
        padding: 0px 0;
    }
    .reg-section {
        padding: 0px 0 50px 0;
    }
    .reg-contentbox {
        padding: 30px 20px;
    }
    .reg-imgbox img {
        position: relative;
    }
    .reg-heading {
        line-height: 40px;
    }
    .banner-form {
        margin: 525px auto 0 auto;
    }
    .content-box .cstm-list li {
        margin: 25px 0;
    }
    .cstm-list li img {
        width: 8%;
    }
    .content-box .cstm-list li p {
        margin: -44px 0px 0px 77px;
    }
    .prog-section-title h4 {
        font-size: 18px;
    }
    .prog-box {
        padding: 50px 65px 50px 80px;
    }  
    .about-box {
        left: 50px;
        width: 89%;
        position: relative;
        margin-bottom: 30px;
    }  
    .objective-box {
        padding: 30px 0;
    }
    .process_box_wrapper .process_box:after, .process_circle:after {
        display: none !important;
    }
    .int_process_wrapper .process_box p {
        padding-bottom: 20px;
    }
    .adm-process {
        margin: 20px 0 0 0;
    }
    .programme_structure_section {
        margin: 0px 0;
    }
    .g-recaptcha {
        transform:scale(1);
        transform-origin:0 0;
    }
    .banner-form {
       margin: 80px auto 20px auto !important;
    }
    .banner-form-wrap {
        padding: 0 0;
        justify-content: center;
    }
    .slide-content {
        position: relative;
        max-width: 600px;
        color: #fff;
        padding: 164px 0 0 45px;
    }
    .prog-content {
        line-height: 23px;
        /* padding: 20px 25px 20px;
        margin: 20px 0px 0 -60px; */
    }
    .prog-content p {
        color: #000;
        font-size: 14px;
    }
    .subtitle {
        font-size: 22px;
    }
    .diagonal-section::before{
        display: none;
    }
    .diagonal-section {
        padding: 30px 0;
    }
    .custom-list li {
        font-size: 12px;
        margin-top: 20px;
    }
    .program-section {
        margin: 50px 0 20px 0 !important;
    }
    .section-heading, .program-section .section-heading, #software-logos .section-heading {
        font-size: 30px;
    }
    .subtitle, .content h4{
        display: none;
    }
    .mob-headings h2{
        display: inline-block;
        color: #222222;
        font-family:'segoeuithi-Bold';
        font-size: 25px;
        line-height: 14px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 15px;
        padding: 15px 25px;
        /* border: 1px solid #CDD0CD; */
        border-radius: 50px;   
        width: 50%; 
    }
    .mob-headings{
        text-align: center;
        width: max-content;
    }
    .mob-headings h4{
        display: block;
        width: max-content;
    }
    .content ul li {
        list-style: circle;
        line-height: 40px;
        font-size: 14px;
    }
    .step__card h3 {
        color: #fff;
        font-size: 14px !important;
    }
    .slides {
       height: auto;
    }
    .logo {
        text-align: left;
    }
    .hero-content h1 , .hero-content p {
        text-align: center;
    }
    .autodesk_logo {
        max-width: 100%;
    }
    .hero-content {
        text-align: center;
        padding: 50px 0 0 0;
        margin: 0 auto;
    }
     .logo-divider::after {
        content: "";
        position: absolute;
        width: 2px;
        height: 55px;
        background-color: #1b71be;
        left: 316px;
        top: 20%;
    }
    .content .section-heading{
        display: none;
    }
    .hero-content h1 img{
        width: 55%;
    }
}
@media screen and (max-width: 580px){
   .banner-form {
        margin: 60px auto 20px auto !important;
    }
    .how-it-work-wrapper {
        margin-bottom: 24px;
    }
    .how-it-work-wrapper div[class*=col]:nth-child(even) > div {
        transform: translateY(24px);
    }
    .programme_structure_box {
        margin: 10px 0;
    }
    #footer .footer-top .social-links a {
        margin-bottom: 25px;
    }
    .footer-links strong {
        font-size: 16px !important;
        line-height: 12px !important;
    }
    .footer-links h1 {
        color: #fff;
        font-size: 11px !important;
        margin-top: 10px !important;
    }
    .form-mainbox {
        margin: 0 0;
    }
    .prog-content {
        margin: 0 0 0 0;
        width: 100%;
    }
    .objective-box{
        display: flex;
        flex-direction: column;
    }
    .obj-text {
        padding: 20px 50px;
    }
    .objective-box {
        padding: 30px 0 0 0;
    }
    .objective-section {
        padding: 40px 0 0 0;
    }
    .objective-content{
        padding-bottom: 20px;
    }
    .about-box {
        width: 80%;
    }
    .programme_structure_inner {
        margin: 10px 0 0px 0;
    }
    .programme_structure_box {
        max-height: 190px !important;
    }
    .programme_structure_box h4 {
        font-size: 16px;
    }
    .reg-desk {
        width: 27%;
        position: absolute;
        bottom: 47px;
        left: 23px;
    }
     .reg-closing {
        align-items: center;
        text-align: center;
        position: absolute;
        top: -30px;
    }
    .slide-content h1 img{
        width: 60%;
    }
    .slide-content {
        padding: 164px 30px 0 30px;
        text-align: center;
    }
    .slide-content p {
        /* text-align: left; */
        font-size: 14px;
    }
    .cta {
        /* justify-content: center; */
        margin:10px 0;
    }
    .autodesk-tr-logo img {
        padding-bottom: 20px;
    }
    .logo-divider::after {
        content: "";
        position: absolute;
        width: 225px;
        height: 2px;
        background-color: #1b71be;
        left: 86px;
        top: 48%;
    }
    .program-section .section-heading {
        padding: 15px 0 15px 0;
        text-align: center;
    }
    .mob-headings {
        text-align: left;
        width: max-content;
    }
    .mob-headings h4 {
        display: block;
        width: 50%;
        text-align: center;
    }
    .mob-headings h2{        
        width: 50%;
        text-align: center;
    }
    .content {
        position: relative;
        color: #000;
        z-index: 1;
        max-width: 100%;
        padding: 0 0 0 30px;
    }
    .content ul li {
        list-style: circle;
        line-height: 30px;
        font-size: 13px;
    }
    #walk-away .subtitle {    
        font-size: 21px;
    }
    .why li::before {       
        height: 15px;
        width: 15px;
    }
    .parallax, .parallax .text {
        height: 510px;
    }
    .custom-list li {
        margin-bottom: 10px;
    }
    .footer-mainbox, .footer_content {
        text-align: center;
    }
    .footer_right_mainbox img, .autodesk-footer-logos img{
        width: 50%;
        padding: 15px 0;
    }
    .g-recaptcha {
        transform: scale(1);
        transform-origin: 0 0;
    }
     .slide-content h1, .slide-content h1 span {
        font-size: 30px;
        margin-bottom: 15px;
    }
    .slide-content p.arrow-dn {
        position: relative;
        padding-left: 30px;
        margin-bottom: 10px;
    }
    .hero-content h1 img {
        width: 80%;
    }
    .cta-btn, .req-btn-animated{
        font-size: 14px;
    }
    .marquee-title {
        border-bottom: 1px solid #fff;
    }
    .banner_section {
        margin: 80px 0 0 0 !important;
    }
    /* .video-modal-content {
        max-width: 90%;
    }
    .video-modal .close {
        position: absolute;
        top: -17px;
        right: -16px;
        padding: 6px 8px;
        font-size: 32px; 
    } */
    .main-navigation{
        width: 82%;
    }
    .prog-content{
        padding: 0px 15px 38px;
    }
    .courses .owl-nav .owl-next {
        position: absolute;
        right: -10px;
    }
    .courses .owl-nav .owl-prev {
        position: absolute;
        left: -10px;
    }
    .courses .owl-nav{
        top: 44%;
    }
    .brand__card {
        width: 44%;
        margin: 5px;
        overflow: hidden;
    }
    .whyBimCarousel .owl-nav .owl-next {
        position: absolute;
        right: -10px;
    }
    .whyBimCarousel .owl-nav .owl-prev {
        position: absolute;
        left: -10px;
    }
    .place_blink {
        font-size: 17px;
    }
}
@media screen and (max-width:380px) {
      
    .thankyou_button {
        text-align: center;
        font-size: 12px;
    }
    .banner-form .form-control{
        max-height: 40px;
    }
    .prog-box {
        padding: 50px 20px 50px 25px;
    }
    .g-recaptcha {
        transform:scale(0.77);
        transform-origin:0 0;
    }
    .about-box {
        width: 78%;
    }
    .logo-divider::after{
        display: none;
    }
    .banner-form {
        max-width: 290px;
    }
    .g-recaptcha {
        transform: scale(0.67);
        transform-origin: 0 0;
    }
    .mob-headings h2 {
        width: 38%;
        text-align: center;
        font-size: 18px;
    }
    .mob-headings h4 {
        display: block;
        width: 38%;
        text-align: center;
    }
    .section-heading, .program-section .section-heading, #software-logos .section-heading {
        font-size: 25px;
    }
    #walk-away .subtitle {
        font-size: 21px;
        line-height: 22px;
    }
    .parallax, .parallax .text {
        height: 573px;
    }
    .cta-btn {
        margin-bottom: 0;
    }
    .banner-form {
        margin: 55px auto 20px auto !important;
    }
    .slide-content h1, .slide-content h1 span {
        font-size: 30px;
        margin-bottom: 15px;
    }
    .slide-content h1 img {
        width: 77%;
    }
    .slide-content p.arrow-dn {
        position: relative;
        padding-left: 30px;
        margin-bottom: 10px;
    }
    .hero-content h1 {
        font-size: 30px;
    }
    .cta-btn, .req-btn-animated {
        font-size: 10px;
    }
	.place_blink {
        font-size: 16px;
    }
}



@media screen and (max-width:320px) {
    .reg-desk {
        width: 28%;
        position: absolute;
        bottom: 45px;
        left: 9px;
        padding: 2px 5px;
    }
   	 .place_blink {
        font-size: 15px;
    }
}