/* ------------------------------------------ */
/*             TABLE OF CONTENTS
/* ------------------------------------------ */


/*   01 - General & Basic Styles    */

/*   02 - Navbar CSS  */

/*   03 - Main Banner CSS   */

/*   04 - About Us   */

/*   05 - Course Section style    */

/*   06 - why-choose Section style    */

/*   07 - Teachers  Section     */

/*   08 - Price  Section       */

/*   09 - Testimonial Section   */

/*   10 - The fun facts    */

/*   11 - Recent Blog post      */

/*   12 -  Contact us     */

/*   13 -  Footer Style     */

/*   14 - Others Elements    */


/* ==========================================================================
   01. General & Basic Styles
   ========================================================================== */
/* ===== BLUE BRAND SYSTEM ===== */

/* ===== BLUE BRAND SYSTEM ===== */
:root {
  --primary-blue: #2563eb;      /* Main Blue */
  --primary-blue-dark: #1e40af; /* Dark Blue */
  --accent-blue: #3b82f6;       /* Hover / Accent */
  --soft-blue: #eaf2ff;         /* Light backgrounds */

  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --border-light: #e5e7eb;
}



body {
	font-family: 'Roboto', sans-serif;
	font-size: 110%;
    line-height: 1.9;
    background: #ffffff;
    color: #777777;
}
a {
    color: #fff;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
a:focus,
a:hover {
    text-decoration: none;
    outline: 0;
    color: #555555;	
}

img {
    width: 240px;
    max-width: 50%;
    height: auto;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
h1,
h2 {
	color: #383f45;
	font-size: 263%;
	line-height: 1.3;
	font-weight: 300;
    margin: 0 0 10px;
}
h3{
	font-family: 'Dosis', sans-serif;
	font-weight: 600;
    font-size: 30px;
	color: #555555;
}
h5 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 27px;
    color: var(--text-dark);;
    text-transform: uppercase;
}
p {
    margin-bottom: 0;
}
strong {
    color: #0BC560;
}
@media (max-width:1199px) {
    h1,
	h2 {
		font-size: 45px;
	}
}

.ptb-100 {
    padding-top: 90px;
    padding-bottom: 100px;
}
.pt-100 {
    padding-top: 100px;
}
.pb-100 {
    padding-bottom: 100px;
}
ul li{
	list-style: none;
}
.bg-f9faff {
    background: #f9faff;
}
.d-table {
	width: 100%;
	height: 100%;
}
.d-table-cell {
	vertical-align: middle;
}
button {
	outline: 0 !important;
}
.mt-30 {
    margin-top: 30px;
}

/* Btn Primary */
.btn {
	position: relative;
	color: #ffffff;
	z-index: 1;
	overflow: hidden;
	border: 1px solid var(--primary-blue);
	border-radius: 35px;
	padding: 11px 30px;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 14px;
}


.btn::after {
	content: '';
	position: absolute;
	height: 100%;
	z-index: -1;
	bottom: auto;
    background: var(--primary-blue);
    background: linear-gradient(
  135deg,
  #1e40af 0%,
  #2563eb 45%,
  #3b82f6 100%
);
;
	top: 0;
	left: 0;
	width: 100%;
	-moz-transition: .3s;
	-o-transition: .3s;
	-ms-transition: .3s;
	-webkit-transition: .3s;
	transition: .3s;
}
.btn:hover::after, .btn:focus::after {
	height: 0;
}
.btn:hover {
	color: #fff;
	border-color: var(--primary-blue);
}
.btn.focus, .btn:focus {
	box-shadow: unset;
    color: var(--primary-blue);
	border-color: var(--primary-blue);
}
.btn.disabled, .btn:disabled {
	opacity: 1;
}

/* Owl Carousel Btn */
.main-banner .owl-theme .owl-nav {
	margin-top: 0;
}
.main-banner .owl-theme .owl-dots {
	position: absolute;
	left: 1px;
	bottom: -20px;
}
.main-banner .owl-theme .owl-dots .owl-dot span {
	width: 35px;
	height: 5px;
	margin: 0 8px 0 0;
	background: var(--primary-blue);
	position: relative;
	border-radius: 3px;
	-moz-transition: .3s;
	-o-transition: .3s;
	-ms-transition: .3s;
	-webkit-transition: .3s;
	transition: .3s;
}
.main-banner .owl-theme .owl-dots .owl-dot span::before, .main-banner .owl-theme .owl-dots .owl-dot.active span::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	border-radius: 3px;
	background: var(--primary-blue);
	background: -webkit-linear-gradient(to right, var(--primary-blue-dark), var(--primary-blue));
	background: linear-gradient(to right, var(--primary-blue-dark), var(--primary-blue));
	opacity: 0;
	visibility: hidden;
	-moz-transition: .3s;
	-o-transition: .3s;
	-ms-transition: .3s;
	-webkit-transition: .3s;
	transition: .3s;
}
.main-banner .owl-theme .owl-dots .owl-dot.active span::before {
	width: 100%;
	opacity: 1;
	visibility: visible;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-blue);
}
.owl-theme .owl-nav {
    margin-top: 18px;
}
.main-banner .owl-theme .owl-dots .owl-dot.active span, .main-banner .owl-theme .owl-dots .owl-dot:hover span {
	background: var(--primary-blue);
}
.main-banner .owl-theme .owl-dots .owl-dot span:hover::before {
	opacity: 1;
	width: 100%;
	visibility: visible;
}

.form-group {
    margin-bottom: 25px;
}

/* Form Control */
.form-control {
    height: 59px;
    padding: 10px;
    font-size: 16px;
	color: #fff;
    background-color: transparent;
    border: 1px solid #eee;
    border-radius: 3px;
}
.form-control:focus {
	color: #fff;
	background-color: transparent;
	border-color: #eee;
	outline: 0;
	box-shadow: unset;
}
.contactForm .form-control::placeholder {
	color: #fff !important;
}

/* Section Title */
.section-title {
    text-align: center;
    padding-bottom: 35px;
    position: relative;
    display: block;
}
.section-title h3 {
	font-size: 37px;
	margin-bottom: 10px;
}
.section-title span {
	display: inline-block;
	color: var(--primary-blue);
	font-size: 18px;
	margin-bottom: 14px;
}
.section-title p {
	max-width: 520px;
	margin: 0 auto;
}

/* ==========================================================================
   02. Navbar CSS
   ========================================================================== */
.set-color,
.navbar-nav .nav-item,
.navbar-brand img,
.navbar-dark .navbar-nav .nav-link,
.show{
	-moz-transition: .3s;
	-o-transition: .3s;
	-ms-transition: .3s;
	-webkit-transition: .3s;
	transition: .3s;
}
.navbar-nav .nav-item {
	margin: 25px 8px;
}
.color-set .navbar-brand img {
		 width: 240px;
}
.color-set.navbar-expand-lg{
	-webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,.1); 
	box-shadow: 0 5px 10px 0 rgba(0,0,0,.1); 
}
.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    border-radius: 50px;
    padding: 2px 10px;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
    border-radius: 50px;
    padding: 2px 10px;
}
.navbar-dark .navbar-nav .nav-link.active{
	color: #fff;
	background: linear-gradient(
  135deg,
  #1e40af 0%,
  #2563eb 45%,
  #3b82f6 100%
);
;
}
.color-set{
	background: #fff;
}
.color-set .navbar-nav .nav-item{
		margin: 8px;
}
.color-set .navbar-nav .nav-item .nav-link {
		color: var(--primary-blue);
}
.color-set .navbar-nav .nav-item .nav-link.active{
	/* color: #fff; */
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
	background: linear-gradient(
  135deg,
  #1e40af 0%,
  #2563eb 45%,
  #3b82f6 100%
);
;
}
.show{
	background: #fff;
	margin-top: 9px;
}
.show .navbar-nav .nav-link{
	color: var(--primary-blue);
}
/* .navbar-toggler{
	background: linear-gradient(
  135deg,
  #1e40af 0%,
  #2563eb 45%,
  #3b82f6 100%
);
;
} */
.color-set .show{
	margin-top: 0;
}
.navbar-dark .navbar-toggler {
    border: none;
}
/* ==========================================================================
   03. Main Banner CSS
   ========================================================================== */

.main-banner {
	background-image: url(../../assets/img/body-bg.png);
	position: relative;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
    z-index: 1;
    height: 950px;
}
.hero-content{
	padding-top: 20px;
}

.hero-content h3 {
    color: #ffffff;
    margin-bottom: 22px;
}
.hero-content h3 span {
    color: #ffffff;
    font-weight: bold;
}
.hero-content p {
	margin-bottom: 33px;
	color: #ffffff;
	max-width: 600px;

}
.hero-video {
	position: relative;
	width: 100%;
    text-align: center;
    line-height: normal;
}

.hero-video .video-play-btn {
    position: absolute;
    left: 50%;
    font-size: 100px;
    color: #fff;
    top: 50%;
    transform: translate(-50% , -50%);
}

/* ==========================================================================
   03. Brand Carousel
   ========================================================================== */

 .brand-carousel {
  padding: 40px 0;
  overflow: hidden;
  background: white;
}

.marquee-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  /* Premium fade effect on edges */
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-inner {
  display: flex;
  gap: 30px; /* Exact spacing between cards */
  animation: scroll-infinitely 30s linear infinite;
}

.logo-card {
  /* 1. Set fixed, identical dimensions for the "frame" */
  width: 200px; 
  height: 100px;
  background: white;
  border-radius: 12px;
  
  /* 2. FLEXBOX CENTERING - This is the magic part */
  display: flex;
  align-items: center;      /* Centers vertically */
  justify-content: center;   /* Centers horizontally */
  
  padding: 20px;            /* Acts as a "safety gutter" */
  margin: 0 15px;
  box-sizing: border-box;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.logo-card img {
  /* 3. SIZE CONSTRAINTS */
  max-width: 100%;
  max-height: 100%;
  
  /* 4. PRESERVE RATIO */
  width: auto;
  height: auto;
  object-fit: contain; 
  
  /* 5. FIX OFFSET */
  display: block;
  margin: auto; /* Final push to absolute center */
}

/* Specific fix for your Academy logo if it has text */
.logo-card img[alt="Ecom Storm Academy"] {
  transform: scale(1.1); /* Slightly larger to account for text readability */
}

@keyframes scroll-infinitely {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 15px)); } /* Adjusts for the gap */
}

/* Stop animation on hover so users can read the logos */
.marquee-wrapper:hover .marquee-inner {
  animation-play-state: paused;
}

/* ==========================================================================
   04. Why Choose US
   ========================================================================== */
   .journey-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px 18px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
  position: relative;
}

.journey-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.journey-icon {
  font-size: 28px;
  color: #0d6efd;
  margin-bottom: 15px;
  display: inline-block;
}

.journey-card h6 {
  font-weight: 600;
  margin-bottom: 8px;
}

.journey-card p {
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 0;
}

.step {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(13,110,253,0.3);
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .journey-card {
    padding: 20px 15px;
    border-radius: 16px;
  }
  .journey-icon {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .step {
    font-size: 12px;
    top: 10px;
    right: 12px;
  }
  .col-12.mb-4 {
    margin-bottom: 20px; /* Ensures spacing between stacked cards */
  }
}

/* ==========================================================================
   04. Certification Section
   ========================================================================== */
   .certification-section {
  padding: 80px 20px;
  background: #fcfcfc; /* Light grey to distinguish from hero */
  display: flex;
  justify-content: center;
  align-items: center;
}

.cert-container {
  max-width: 900px;
  width: 100%;
}

.cert-card {
  background: white;
  border-radius: 24px;
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

/* The Logo Frame */
.cert-icon-wrap {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  background: #f8f9fa;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-icon-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Typography & Content */
.cert-badge {
  color: #0056b3; /* Your Academy Blue */
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.cert-title {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.2;
}

.cert-desc {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.cert-divider {
  width: 50px;
  height: 3px;
  background: #FFD700; /* Your Academy Yellow accent */
  margin-bottom: 15px;
}

.cert-footer {
  font-size: 0.9rem;
  color: #999;
  font-style: italic;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .cert-card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 30px;
  }
  
  .cert-icon-wrap {
    width: 140px;
    height: 140px;
  }
  
  .cert-divider {
    margin: 0 auto 15px auto;
  }
}


/* ==========================================================================
   04. About us
   ========================================================================== */

.boxes-area {
    z-index: 3;
    padding-top: 52px;
    position: relative;
    background: #F9FAFF;
}
.single-box {
	box-shadow: 0 0 38px rgba(0, 0, 0, 0.11);
	text-align: center;
    padding: 35px 20px 40px;
	background: #fff;
    position: relative;
	-moz-transition: .3s;
	-o-transition: .3s;
	-ms-transition: .3s;
	-webkit-transition: .3s;
	transition: .3s;
}
.single-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(
  135deg,
  #1e40af 0%,
  #2563eb 45%,
  #3b82f6 100%
);
;
    opacity: 0;
    visibility: hidden;
}

.single-box:hover::before {
	opacity: 1;
    height: 100%;
    visibility: visible;
}
.single-box i {
	font-size: 40px;
	color: var(--primary-blue);
}
.single-box h3 {
	font-size: 17px;
	margin-top: 10px;
    margin-bottom: 15px;
	font-weight: 600;
}
.single-box h3, .single-box p, .single-box i {
    position: relative;
	-moz-transition: .3s;
	-o-transition: .3s;
	-ms-transition: .3s;
	-webkit-transition: .3s;
	transition: .3s;
}
.single-box i {
    font-size: 54px;
    height: 100px;
    width: 100px;
    line-height: 75px;
    border-radius: 10px;
}
.single-box:hover h3, .single-box:hover p, .single-box:hover i {
	color: #fff;
}

/* ==========================================================================
   05. Our Courses CSS
   ========================================================================== */
.tabs {
	list-style-type: none;
	margin-bottom: 40px;
	padding-left: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}
.tabs li {
	-ms-flex: 0 0 16.6666666667%;
	flex: 0 0 16.6666666667%;
	max-width: 16.6666666667%;
	padding-right: 15px;
	padding-left: 15px;
	text-align: center;
}
.tabs li a {
	display: block;
	box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
	background: #fff;
	border-radius: 3px;
	padding: 25px 12px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	color: #3b566e;
	position: relative;
	z-index: 1;
}
.tabs li a:hover, .tabs li a:hover i, .tabs li.current a, .tabs li.current a i  {
    color: #fff;
}

.tabs li.current a svg, .tabs li a:hover svg{
    fill: #fff;
}
.tabs li a i {
	color: var(--primary-blue);
	font-size: 40px;
	margin-bottom: 15px;
	display: inline-block;
    -moz-transition: .4s;
    -webkit-transition: .4s;
    transition: .4s;
}

.tabs li a svg {
	fill: var(--primary-blue);
	font-size: 50px;
	margin-bottom: 15px;
	display: inline-block;
    -moz-transition: .4s;
    -webkit-transition: .4s;
    transition: .4s;
}
.tabs li:first-child a {
	border-radius: 30px 0 0 0;
}
.tabs li:last-child a {
	border-radius: 0 30px 0 0;
}
.tabs li a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-blue);
    background: linear-gradient(
  135deg,
  #1e40af 0%,
  #2563eb 45%,
  #3b82f6 100%
);
;
	z-index: -1;
    opacity: 0;
    border-radius: 3px;
    -webkit-transform: scale(.9);
    transform: scale(.9);
    visibility: hidden;
    -moz-transition: .4s;
    -webkit-transition: .4s;
    transition: .4s;
}
.tabs li:first-child a::before {
	border-radius: 30px 0 0 0;
}
.tabs li:last-child a::before {
	border-radius: 0 30px 0 0;
}
.tabs li a:hover::before, .tabs li.current a::before {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.tabs_item:first-child {
	display: block;
}
.tabs_item {
	display: none;
	background: #fff;
	box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
}
.tabs_item_content {
	padding: 30px 20px;
}
.tabs_item_content h3 {
    font-size: 20px;
    font-weight: 700;
    /* margin-bottom: 19px; */
}
.tabs_item_content p {
	/* margin-bottom: 25px; */
}
.tabs_item_content ul {
	padding: 0;
	margin: 10px 0 27px 0;
	list-style-type: none;
}
.tabs_item_content ul li {
	position: relative;
	margin-bottom: 12px;
	padding-left: 25px;
}
.tabs_item_content ul li:last-child {
    margin-bottom: 0;
}
.tabs_item_content ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	width: 15px;
	height: 15px;
	background: var(--primary-blue);
	background: -webkit-linear-gradient(to right, var(--primary-blue-dark), var(--primary-blue));
	background: linear-gradient(to right, var(--primary-blue-dark), var(--primary-blue));
	-webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.timeline-item {
                display: flex;
                gap: 10px;
                padding: 10px 12px;
                background: #ffffff;
                border-radius: 10px;
                border: 1px solid rgba(0, 0, 0, 0.04);
                transition: 0.25s ease;
            }

            .timeline-item:hover {
                transform: translateY(-2px);
            }

            .timeline-item i {
                width: 34px;
                height: 34px;
                background: var(--primary-blue);
                color: #fff;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 13px;
                flex-shrink: 0;
            }

            .timeline-item h6 {
                margin: 0;
                font-weight: 600;
                font-size: 0.85rem;
                line-height: 1.2;
            }

            .timeline-item p {
                margin: 2px 0 0;
                font-size: 0.75rem;
                line-height: 1.35;
                color: #6c757d;
            }

            .readmore-btn {
                --blue: var(--primary-blue, #1f6fff);

                background: transparent;
                color: var(--blue);
                border: 1.5px solid var(--blue);
                border-radius: 50px;
                padding: 10px 22px;
                font-size: 14px;
                font-weight: 500;
                display: inline-flex;
                align-items: center;
                gap: 8px;
                transition: all 0.3s ease;
            }

            .readmore-btn:hover {
                background: var(--blue);
                color: #fff;
                box-shadow: 0 10px 24px rgba(31, 111, 255, 0.25);
                transform: translateY(-2px);
            }

            .readmore-btn .arrow {
                transition: transform 0.3s ease;
            }

            .readmore-btn.active .arrow {
                transform: rotate(180deg);
            }
      
            #upcoming-batches{
              background-color: white;
            }

/* ==========================================================================
   06. Why choose us
========================================================================== */
.why-choose-us {
    position: relative;
    padding: 120px 0px 73px;
    background-image: url(../../assets/img/banner_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 115, 255, 0.6), rgba(0, 180, 255, 0.6));
    z-index: 0;
}




.why-choose-us h2 {
    color: #fff;
}
.why-choose-us .section-title {
    text-align: left;
    margin-bottom: 0px;
    padding-top: 99px;
}

.why-choose-us .section-title h1 {
    color: #ffffff;
    font-size: 40px;
    margin-bottom: 15px;
    line-height: 50px;
}

.why-choose-us .section-title p {
    margin-bottom: 52px;
    float: left;
    color: #fff;
}

.why-choose-us .section-title .btn-transition {
    background: transparent;
}

.why-choose-us .section-title .btn-transition:hover {
    color: #00030b;
    background: #fff;
}

.why-choose-us .why-choose-us-wrapper {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    width: 100%;
    padding: 45px 0px;
}

.why-choose-us .why-choose-us-wrapper-top {
    position: relative;
}

.why-choose-us .why-choose-us-wrapper-top h2{
    margin-bottom: 18px;
}

.why-choose-us .why-choose-us-wrapper-top .container {
    display: table;
    height: 235px;
}

.why-choose-us .why-choose-us-wrapper-top .why-choose-us-wrapper {
    padding-right: 25%;
}

.why-choose-us .why-choose-us-wrapper-top .why-choose-img {
    position: absolute;
    width: 23%;
    right: 40px;
    bottom: 0px;
    min-width: 250px;
}
.single-choose {
    overflow: hidden;
    min-height: 100px;
    text-align: left;
    margin-bottom: 30px;
    box-shadow: 0 0 38px rgba(0, 0, 0, 0.11);
    background: rgba(30, 64, 175, 0.7)
}
/* .single-choose-left {
    font-size: 50px;
} */

.single-choose-left i {
    font-size: 50px;
    color: #9ecbff;              /* soft sky-blue accent */
    line-height: 1;
    display: inline-block;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.why-choose-options{
	position: relative;
}
.why-choose-options:before{
	position: absolute;
	top: -415px;
	right: 0;
	content: url(../../assets/img/teacher-image.png);
}
.single-choose .single-choose-left,
.single-choose .single-choose-right {
    float: left;
    display: inline-block;
	padding: 25px 15px;
}
.single-choose .single-choose-left img {
    padding-top: 4px;
    padding-left: 16px;
}
.single-choose .single-choose-right h3 {
    line-height: 29px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}   
.why-choose-options .col-md-4 {
    padding: 0;
}
.why-choose-options .single-course {
    min-height: 100px;
}
/* ==========================================================================
   07. Teachers
========================================================================== */
#ecomstorm-teacher {
  background-color: white;
}
#ecomstorm-teacher .section-title{
	padding-bottom: 5px;
}
.teacher-inner {
    position: relative;
}
#ecomstorm-teacher .col-lg-3{
	margin-top: 30px;
}
.teacher-member {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
}

.teacher-img-text,
.teacher {
    position: relative;
    z-index: 0;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.teacher-member img{
	/*max-width: 300px;*/
	width: 100%;
	height: 100%;

}

.teacher:hover {
    transform: scale(1.15);
    z-index: 99;
    cursor: crosshair;
}

.overlay {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
/*    max-width: 300px;*/
    height: 100%;
    width: 100%;
    transition: .5s ease;
    background: linear-gradient(to top, rgba(29, 78, 216, 0.7) 0%, rgba(59, 130, 246, 0.7) 100%);  
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
}

.teacher:hover .overlay {
    opacity: 1;
}

.teacher .text {
    color: white;
    font-size: 20px;
    position: absolute;
    left: 50%;
    bottom: -35px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    width: 200px;

}

.teacher .text h3 {
    font-size: 19px;
    color: #fff;
    line-height: 24px;
    font-weight: 400;
    text-transform: capitalize;
    cursor: auto;
    margin-bottom: 0;
}

.teacher .text p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid #fff;
    padding: 5px 0 10px;
    cursor: auto;
}

.teacher .text .insdesc p{
    font-size: 12px;
}

.teacher .text ul {
    text-align: center;
    display: block;
    margin: 0;
    padding: 0;
}

.teacher .text ul li {
    float: none;
    margin: 8px 9px;
    position: relative;
    width: 15px;
    text-align: center;
    display: inline-block;
}

.teacher .text ul li i {
    font-size: 14px;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.teacher .text ul li i:hover {
    font-size: 18px;
    cursor: pointer;
}


/* ==========================================================================
   08. Pricing Table
========================================================================== */

#ecomstorm-pricing{
	background: #F8F9FE;
}
.single-pricing-table {
    min-height: 450px;
    padding: 30px 40px;
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 9px 16px 0 rgba(224, 229, 238, .5);
    box-shadow: 0 9px 16px 0 rgba(224, 229, 238, .5);
    border: solid 1px #e5eaed;
    position: relative;
    padding: 30px 50px;
    text-align: center;
}

.pricing-table-plan {
    text-align: center;
}

.pricing-content-price sup {
    font-size: 19px;
    letter-spacing: -0.9px;
    text-align: center;
    color: var(--primary-blue);
    top: -1em;
}

.pricing-content-price strong {
    font-size: 65px;
    letter-spacing: -2px;
    text-align: center;
    color: var(--primary-blue);
}
.pricing-content-price {
    padding: 5px 0 0px;
}
.pricing-content-price sub {
    font-size: 18px;
    line-height: 1.67;
    color: #637282;
}
.pricing-content-btn {
    padding: 30px 0px 0px;
}
.pricing-content-btn a.btn:hover, 
.tabs_item_content a.btn:hover {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    background: transparent;
}

.pricing-table-content ul li {
    color: #637282;
    display: block;
    font-size: 18px;
    line-height: 42px;
}

.pricing-table-content ul {
    padding: 0;
}

.pricing-content-btn a {
    padding: 10px 30px;
    font-size: 14px;
    border-radius: 25px;
    margin-bottom: 10px;
    display: inline-table;
    font-weight: 600;
    background: linear-gradient(
  135deg,
  #1e40af 0%,
  #2563eb 45%,
  #3b82f6 100%
);
;
    color: #ffffff;
    text-decoration: none;
    transition: all .5s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-transform: uppercase;
}

.pricing-table-plan h3 {
    font-size: 21px;
    margin-bottom: 0;
    font-weight: 600;
}
.pricing-table-plan ul.list-item .fa-check {
    color: #28a745;
}


.pricing-table-plan .list-item i.fas.fa-times {
    color:var(--primary-blue);
}

.pricing-table-plan ul.list-item li {
    font-size: 18px;
}

.pricing-table-plan ul.list-item li i {
    margin-right: 5px;
    font-size: 16px;
}
.single-pricing-center{
    border-top: 5px solid var(--primary-blue);
    border-bottom: 5px solid var(--primary-blue);
  } 

/* ==========================================================================
   09. testimonial
========================================================================== */

.testimonial {
    background-image: url(../img/testimonial-bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 0 110px;
}
.testimonial .testimonial-content {
    background: linear-gradient(to top, rgba(29, 78, 216, 0.7) 0%, rgba(59, 130, 246, 0.7) 100%);
    border-radius: 0px 0px 50% 50%;
    overflow: hidden;
}
.testimonial .testimonial-single {
    text-align: center;
    padding: 50px 20px 70px;
}
.testimonial .testimonial-single img {
    border-radius: 50%;
    border: 1px solid #fff;
    padding: 2px;
    max-width: 85px;
    height: 85px;
    margin: 0 auto;
}
.testimonial .testimonial-single h5 {
	font-weight: 500;
    color: #fff;
    margin: 32px 0 0;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
}
.testimonial .testimonial-single h6 {
    color: #fff;
    margin: 10px 0 18px;
    font-size: 14px;
}
.testimonial .testimonial-single p {
    color: #eceff3;
}
.testimonial .testimonial-carousel .owl-dots {
    position: absolute;
    left: 50%;
    margin-left: -45px;
    bottom: 58px;
}
.testimonial .testimonial-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
    margin: 0 4px;
    border-radius: 50%;
    display: inline-block;
    outline: 0
}
.testimonial .testimonial-carousel .owl-dots .owl-dot.active {
    background-color: var(--primary-blue-dark);
    color: var(--primary-blue-dark);
    border: 1px solid var(--primary-blue-dark);
    -webkit-box-shadow: 0 0 0 1px var(--primary-blue-dark);
    box-shadow: 0 0 0 1px var(--primary-blue-dark);
}
.testimonial .testimonial-carousel .owl-dots .owl-dot.active span {
	background-color: var(--primary-blue-dark);
    color: var(--primary-blue-dark);
}
.testimonial .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0px; 
    background: var(--primary-blue);
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
    margin-top: -1px;
    margin-left: -1px;
}


/* ==========================================================================
   10. Fun Facts CSS
========================================================================== */
.fun-facts-area {
    position: relative;
    background-image: url(../../assets/img/counter-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 105px;
}
.fun-facts-area::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-blue);
    background: linear-gradient(
  to top,
  rgba(37, 99, 235, 0.8) 0%,
  rgba(30, 64, 175, 0.8) 100%
);

	opacity: .8;
}
.fun-fact {
	text-align: center;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.fun-fact:hover {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
}
.fun-fact i {
	font-size: 40px;
	color: #fff;
}
.fun-fact h3 {
	font-size: 40px;
	color: #fff;
	margin-bottom: 10px;
	line-height: 28px;
	margin-top: 30px;
}
.fun-fact span {
	font-size: 18px;
	color: #fff;
	display: block;
}
/* Fun Facts Two */
.funFact {
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	position: relative;
	padding-left: 60px;
}
.funFact:hover {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
}
.funFact i {
	font-size: 40px;
	color: #fff;
	position: absolute;
	left: 0;
	top: 0;
}
.funFact h3 {
	font-size: 40px;
	color: #fff;
	margin-bottom: 10px;
	line-height: 28px;
}
.funFact span {
	font-size: 18px;
	color: #fff;
	display: block;
}

/* ==========================================================================
   11. Authorized Partners
========================================================================== */

.partner-section {
    background: #f9fafc;
}

.partner-card {
    height: 100%;
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0,0,0,0.12);
}

 .partner-img{
            height: 60px;
        }
   .partnermin-img{
            height: 60px
        }

.partner-card h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.partner-card p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* Mobile refinement */
@media (max-width: 576px) {
    .partner-card {
        padding: 22px 18px;
    }
}

/* ==========================================================================
   11. Gallery
========================================================================== */

   :root {
  --radius: 24px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-container {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  background-color: white;
}

.gallery-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  color: #333;
}

/* The Grid Setup */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px; /* Base height for rows */
  gap: 20px;
}

/* Individual Item Styles */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f0f0f0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

/* Grid Logic */
.large { grid-column: span 2; grid-row: span 2; }
.tall  { grid-row: span 2; }
.wide  { grid-column: span 2; }

/* Overlay & Hover Effects */
.gallery-container .bento-grid .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2); /* Soft tint */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.overlay span {
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  transform: translateY(20px);
  transition: var(--transition);
  color: #2d3436;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.4);
}

.gallery-item:hover .overlay span {
  transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }
  .large, .tall, .wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}


/* ==========================================================================
   11. Recent Blog Post
========================================================================== */

.recent-blog-section {
    padding-bottom: 100px;
    background: #F8F9FE;
}
.recent-blog-section .news-grids .grid {
    position: relative;
    overflow: hidden;
}

.recent-blog-section .grid .entry-details {
    padding: 35px;
    background: #fff;
    border-top: 1px solid #fff;
    border-right: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    border-left: 1px solid #dddddd;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.recent-blog-section .grid:hover .entry-details {
    border-top: 1px solid #fff;
    border-right: 1px solid var(--primary-blue);
    border-bottom: 1px solid var(--primary-blue);
    border-left: 1px solid var(--primary-blue);
    -webkit-box-shadow: 0px 5px 20px 0px rgba(255, 71, 69, 0.2);
    box-shadow: 0px 5px 20px 0px rgba(255, 71, 69, 0.2);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.recent-blog-section .grid .entry-details h3 {
    font-size: 19px;
    margin: 1em 0 0;
    line-height: 30px;
    font-weight: 600;
    border-top: 1px solid #dddddd;
    padding-top: 20px;
    font-family: 'Poppins', sans-serif;
}

.recent-blog-section .grid .entry-details h3 a {
    color: #272063;
}

.recent-blog-section .grid .entry-details h3 a:hover {
    color: var(--primary-blue);
}

.recent-blog-section .grid .entry-details ul {
    overflow: hidden;
    padding: 0;
}

.recent-blog-section .grid .entry-details ul li {
    font-size: 14px;
    font-size: 0.875rem;
    float: left;
}

.recent-blog-section .grid .entry-details li a:hover {
    color: var(--primary-blue);
}

.recent-blog-section .grid .entry-details ul > li + li {
    float: right;
}

.recent-blog-section .grid .entry-details li i {
    display: inline-block;
    padding-right: 3px;
    color: var(--primary-blue);
}

.blog-mt-30 {
    margin-top: 30px !important;
}
#ecomstorm-blog .owl-stage-outer {
    cursor: url(../../assets/img/icons/grab.png),move;
}



/* ==========================================================================
   12. Contact CSS
========================================================================== */

#ecomstorm-contact {
    color: #fff;
    padding: 90px 70px 255px;
    background-image: url(../../assets/img/contact-us.jpg);
    position: relative;
    background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

#ecomstorm-contact h2{
    color: #fff;
}
#ecomstorm-contact:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(29, 78, 216, 0.7) 0%, rgba(59, 130, 246, 0.7) 100%);
}

#ecomstorm-contact .section-title h3, #ecomstorm-contact .section-title p{
	color: #fff;
}
#ecomstorm-contact .section-title span{
	color: #fff;
}

.get-in-touch h3, .get-in-touch p{
	color: #fff;
}
.contact-box {
	box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
	background: #fff;
	text-align: center;
	padding: 30px 20px;
    position: relative;
    z-index: 1;
	border-radius: 5px;
	margin-bottom: 60px;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.contact-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	border-radius: 14px;
    background: var(--primary-blue);
    background: linear-gradient(
  135deg,
  #1e40af 0%,
  #2563eb 45%,
  #3b82f6 100%
);
;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.contact-box:hover::before {
    opacity: 1;
    visibility: visible;
}
.contact-box h3 {
    font-size: 16px;
    margin-bottom: 13px;
    font-weight: 700;
    text-transform: uppercase;
}
.contact-box h3 i {
	color: var(--primary-blue);
	margin-right: 5px;
}
.contact-box ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
	text-align: left;
}
.contact-box ul li {
	font-size: 14px;
	color: #6f8ba4;
	margin-bottom: 4px;
	overflow: hidden;
}
.contact-box ul li span {
	float: right;
}
.contact-box h3, .contact-box h3 i, .contact-box ul li, .contact-box p a {
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

 .contact-box p a{
    color: var(--text-muted);
 }
.contact-box:hover h3, .contact-box:hover h3 i, .contact-box:hover ul li, .contact-box:hover p a {
	color: #fff;
}
.get-in-touch h3 {
	font-size: 23px;
	margin-bottom: 17px;
	padding-bottom: 10px;
}
.get-in-touch ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
	margin-top: 15px;
}
.get-in-touch ul li {
    display: inline-block;
}
.get-in-touch ul li a {
	color: #fff;
	font-size: 18px;
	margin-right: 5px;
}
.contactForm button.btn.disabled {
    /* background: transparent; */
}
.contactForm .btn:hover, .contactForm .btn:focus {
          background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));

   color: #fff;
}
.contactForm .btn:not(:disabled):not(.disabled) {
    cursor: pointer;
              background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));

}
.contactForm .btn {
    margin-top: 10px;
}
.contactForm .list-unstyled {
	padding: 0;
	margin: 0;
}
.contactForm .list-unstyled li {
	color: var(--primary-blue-dark);
}
#form-messages.alert-danger, #form-messages.alert-success {
    margin-top: 20px;
}

/* ==========================================================================
   13. Footer style
========================================================================== */

.footer {
    background: #fff;
    color: #fff;
}

.education-subscribe {
    background: #fff;
    color: #3b566e;
    padding: 45px 20px 40px;
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
    border-left: 4px dashed var(--primary-blue);
    border-radius: 2px;
    margin-top: -155px;
    margin-bottom: 30px;
   box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
}	

.subscribe-content-inner h2 {
    padding-bottom: 20px;
}

.subscribe-form-inner .form-inline {
    margin-top: 10px;
}

.section-subscribe-st .form-group {
    position: relative;
    margin: 0 auto;
}

.section-subscribe-st .form-control {
    width: 570px !important;
    padding: 0 140px 0 20px;
    background-color: transparent;
    border-color: #3b566e;
    border-radius: 10px;
    font-weight: bold;
    color: #3b566e;
    letter-spacing: 2px;
}

.subscribe-form-inner .form-control {
    width: 400px;
    height: 50px;
    margin-right: 6px;
}

.section-subscribe-st .btn {
    position: absolute;
    right: 6px;
    top: 0;
    box-shadow: none;
    border-radius: 0px 10px 10px 0px;
    background-color: transparent;
    width: 190px;
    height: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 15px;
    -webkit-transition: all 250ms ease-in;
    -moz-transition: all 250ms ease-in;
}

.section-subscribe-st .btn:hover {
       background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));

    color: lightyellow;
}

.subscribe-form-inner label {
	color: var(--primary-blue);
    padding-top: 15px;
    text-align: center;
    position: relative;
    width: 100%;
}

/*placeholder style*/
.form-control::-webkit-input-placeholder {
    color: #3b566e;
}

.form-control:-moz-placeholder {
    color: #3b566e;
}

.form-control::-moz-placeholder {
    color: #3b566e;
}

.form-control:-ms-input-placeholder {
    color: #3b566e;
}

.footer ul {
    padding: 40px 0;
}

.footer li {
    display: inline-block;
    margin: 0 5px;
    height: 50px;
    width: 50px;
    line-height: 53px;
    border-radius: 50%;
    background: #fff;
    transition: all .4s;
    box-shadow: 0px 0px 12px 0px rgba(0,0,0,.16);;
}

.footer li:hover {
    cursor: pointer;
}

.footer li a {
    color: var(--primary-blue);
}

.footer .social i {
    font-size: 22px;
    transition: all .4s;
}

.footer .social li:hover {
    background: var(--primary-blue);
}

.footer .social li:hover a i {
    color: #fff;
}

.copyright {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6c757d; /* soft gray */
    text-align: center;
    line-height: 1.6;
}

.copyright .brand {
    font-weight: 600;
    color: #1f2937; /* dark professional text */
}

.copyright a {
    color: #0d6efd; /* bootstrap primary blue */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.copyright a:hover {
    color: #0a58ca;
    text-decoration: underline;
}

/* Mobile spacing improvement */
@media (max-width: 576px) {
    .copyright {
        font-size: 13px;
        gap: 4px;
    }
}

/* ==========================================================================
   14. Others Elements
========================================================================== */
/* Popup Backdrop */
.popup-overlay {
    position: fixed;
    inset: 0;
    /* background: rgba(26, 42, 108, 0.7); Your Academy Blue with transparency */
    backdrop-filter: blur(8px);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    margin-top: 100px;
}

/* The Card */
.popup-card {
    background: white;
    width: 100%;
    max-width: 850px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    animation: popupScale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popup-split { display: flex; }

/* Left Side Styling */
.popup-image {
    flex: 1;
    background: linear-gradient( rgba(0, 115, 255, 0.6), rgba(0, 180, 255, 0.6)), 
                url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=500');
    background-size: cover;
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.popup-badge {
    background: #FFD700; /* Academy Yellow */
    color: #1a2a6c;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    width: fit-content;
    margin-bottom: 15px;
}

/* Right Side Styling */
.popup-form-content {
    flex: 1.2;
    padding: 50px;
}

.popup-form-content h2 { font-size: 1.8rem; margin-bottom: 10px; }

.input-group { margin-bottom: 15px; }

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f9f9f9;
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}

@keyframes popupScale {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .popup-split { flex-direction: column; }
    .popup-image { display: none; }
}

/* ==========================================================================
   14. Others Elements
========================================================================== */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
}

/* WhatsApp Brand Color */
.whatsapp-btn {
    background-color: #25D366;
    animation: pulse-green 2s infinite;
}

/* Call Button (Using your Academy Blue) */
.call-btn {
    background-color: var(--primary-blue);
}

/* Hover Effects */
.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

/* Animations */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
/*Go Top CSS*/
.go-top {
	position: fixed;
	cursor: pointer;
	bottom: 30px;
	right: 20px;
	font-size: 25px;
	color: #fff;
	background-color: #000;
	z-index: 1;
	display: none;
	width: 40px;
	text-align: center;
	height: 40px;
	line-height: 39px;
	border-radius: 50%;
	-moz-transition: .4s;
	-webkit-transition: .4s;
	transition: .4s;
}
.go-top:hover {
	color: #fff;
	background: var(--primary-blue);
}

/* Preloader css */
.book_preload {
  position: fixed;
  width: 100%;
  height: 100%;
  background: linear-gradient(
  135deg,
  #1e40af 0%,
  #2563eb 45%,
  #3b82f6 100%
);
;
  z-index: 999999;
}
.book {
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: relative;
  margin: 0 auto;
  border: 5px solid #ecf0f1;
  width: 100px;
  height: 60px;
}
.book__page {
  position: absolute;
  left: 50%;
  top: -5px;
  margin: 0 auto;
  border-top: 5px solid #ecf0f1;
  border-bottom: 5px solid #ecf0f1;
  border-right: 5px solid #ecf0f1;
  background: var(--primary-blue-dark);
  width: 50px;
  height: 60px;
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-animation: flip 1.2s infinite linear;
  animation: flip 1.2s infinite linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.book__page:nth-child(1) {
  z-index: -1;
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.book__page:nth-child(2) {
  z-index: -2;
  -webkit-animation-delay: 2.8s;
  animation-delay: 2.8s;
}
.book__page:nth-child(3) {
  z-index: -3;
  -webkit-animation-delay: 4.2s;
  animation-delay: 4.2s;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(600px) rotateY(0deg);
    transform: perspective(600px) rotateY(0deg);
  }
  20% {
    background: var(--primary-blue);
  }
  29.9% {
    background: var(--primary-blue);
  }
  30% {
    -webkit-transform: perspective(200px) rotateY(-90deg);
    transform: perspective(200px) rotateY(-90deg);
    background: var(--primary-blue-dark);
  }
  54.999% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  60% {
    -webkit-transform: perspective(200px) rotateY(-180deg);
    transform: perspective(200px) rotateY(-180deg);
    background: var(--primary-blue-dark);
  }
  100% {
    -webkit-transform: perspective(200px) rotateY(-180deg);
    transform: perspective(200px) rotateY(-180deg);
    background: var(--primary-blue-dark);
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(600px) rotateY(0deg);
    transform: perspective(600px) rotateY(0deg);
  }
  20% {
    background: var(--primary-blue);
  }
  29.9% {
    background: var(--primary-blue);
  }
  30% {
    -webkit-transform: perspective(200px) rotateY(-90deg);
    transform: perspective(200px) rotateY(-90deg);
    background: var(--primary-blue-dark);
  }
  54.999% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  60% {
    -webkit-transform: perspective(200px) rotateY(-180deg);
    transform: perspective(200px) rotateY(-180deg);
    background: var(--primary-blue-dark);
  }
  100% {
    -webkit-transform: perspective(200px) rotateY(-180deg);
    transform: perspective(200px) rotateY(-180deg);
    background: var(--primary-blue-dark);
  }
}



body {
	font-family: 'Roboto', sans-serif;
	font-size: 105%;
	line-height: 1.8;
	background: #ffffff;
	color: var(--text-muted);
}

h1, h2 {
	color: var(--text-dark);
	font-weight: 400;
}

h3 {
	color: var(--text-dark);
}

strong {
	color: var(--primary-blue);
}
.btn {
	position: relative;
	color: #fff;
	border-radius: 30px;
	padding: 12px 32px;
	font-weight: 600;
	font-size: 14px;
	border: none;
	background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
	transition: all 0.3s ease;
}

.btn:hover {
	background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
	color: #fff;
}
.color-set {
	background: #ffffff;
	box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.navbar-dark .navbar-nav .nav-link {
	color: #fff;
	font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover {
	background: var(--soft-blue);
	color: var(--primary-blue);
}
.navbar-light .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover {
	background: var(--soft-blue);
	color: var(--primary-blue);
}
.bg-f9faff,
#ecomstorm-pricing,
.recent-blog-section {
	background: var(--soft-blue);
}
.single-box,
.single-pricing-table,
.contact-box {
	background: #ffffff;
	border: 1px solid var(--border-light);
	box-shadow: 0 10px 30px rgba(0,0,0,0.06);
	border-radius: 14px;
}
@media (max-width: 990px){
  .btn{
    padding: 10px 15px;
    font-size: 12px;
  }
}
@media (max-width: 300px){
  .navbar-brand img {
    max-width: 115px;
}
}


