:root {
  --primary-blue: #3185FC;
  --secondary-blue: #3943B7;
  --black-color: #000000;
  --white-color: #ffffff;
  --text-gray: #727272;
  --dark-text: #1F1F1F;
  --gradient-start: #3185FC;
  --gradient-end: #3943B7;
}

* {
  margin: 0;
  padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Zalando Sans Expanded', sans-serif;
   font-weight: 400;
  line-height: 1.6;
  color: var(--dark-text);
   overflow-x: hidden;
}

.container-main {
   max-width: 1200px;
   margin: 0 auto;
         padding: 0 20px;
}

.header-wrapper {
  position: fixed;
    top: 0;
    left: 0;
   right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
    transition: all 0.3s ease;
  border-bottom: 1px solid rgba(49, 133, 252, 0.1);
}

.header-wrapper.scrolled {

	  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
	}

.nav-container {
   display: flex;
    align-items: center;
    justify-content: space-between;
   padding: 1rem 0;
   position: relative;
}

.logo-center {
  -ms-transform: translateX(-50%);
   position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.main-logo {
   height: 45px;
  width: auto;
    transition: transform 0.3s ease;
}

.main-logo:hover
	{
  transform: scale(1.05);
}

.nav-link {
   text-decoration: none;
  color: var(--dark-text);
    font-weight: 500;
    font-size: 16px;
   padding: 10px 20px;
    border-radius: 25px;
  transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
  color: var(--primary-blue);
  background: rgba(49, 133, 252, 0.1);
  transform: translateY(-2px);
}

.mobile-menu-btn {
   display: none;
    flex-direction: column;
  cursor: pointer;
  padding: 10px;
  z-index: 1001; 

}

.hamburger-line {
    width: 25px;
    height: 3px;
  background: var(--primary-blue);
  margin: 3px 0;
   transition: 0.3s;
  border-radius: 2px;
}

.mobile-nav-overlay {
  display: none;
    position: fixed;
    top: 0;
   left    :    0;
   right: 0;
   bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  opacity: 0;
	 visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
   top: 50%;
    left: 50%;
  transform: translate(-50%, -50%);
   background: white;
   border-radius: 15px;
  padding: 40px;
    text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.mobile-nav-item {
  display: block;
   padding: 15px 30px;
    margin: 10px 0;
  text-decoration: none;
  color: var(--dark-text);
   font-weight: 500;
  font-size: 18px;
   border-radius: 10px;
   transition: all 0.3s ease;
}

.mobile-nav-item:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateX(10px);
}

.hero-section {
  min-height     :  100vh;
  display: flex;
  align-items: center;
   position: relative;
    overflow: hidden;
  background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
}

.hero-background {
   position: relative;
    width: 100%;
   z-index: 1;
}

.hero-background::before {
  content: '';
  position: absolute;
    top: -50%;
   right: -20%;
  width: 80%;
  height: 200%;
  background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50% 0 50% 0;
    opacity: 0.05;
    z-index: -1;
   animation: floatShape 20s ease-in-out infinite;
}@keyframes floatShape {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(10deg) scale(1.1); }
}.hero-content {
   padding: 120px 0 60px;
       max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
  font-size: 14px;
   font-weight: 500;
    margin-bottom: 25px;
   text-transform: uppercase;
   letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
   font-weight: 300;
    line-height: 1.2;
  margin-bottom: 25px;
  color: var(--dark-text);
}

.title-highlight {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
   background-clip: text;
   font-weight: 700;
}

.hero-description {
   font-size: 1.2rem;
  color: var(--text-gray);
    margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta-wrapper {
   display: flex;
  gap: 20px;
    align-items: center;
}

.cta-button {
  text-decoration: none;
   padding: 15px 35px;
   border-radius: 50px;
   font-weight: 500;
    font-size: 16px;
   transition: all 0.3s ease;
    display: inline-flex;
  align-items: center;
    gap: 10px;
   position: relative;
  overflow: hidden;
}

.cta-button.primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
   color: white;
  box-shadow: 0 10px 30px rgba(49, 133, 252, 0.3);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(49, 133, 252, 0.4);
}

.cta-button.secondary {
   background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.cta-button.secondary:hover {
  background: var(--primary-blue);
   color: white;
  transform: translateY(-3px);
}

.features-section {
   padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
   margin-top: 60px;
}

.feature-card {
    text-align: center;
	padding: 40px 30px;
   border-radius: 20px;
  background: white;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
   position    :        relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
    position: absolute;
    top: 0;
    left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
	border-radius: 50%;
    display: flex;
    align-items: center;
  justify-content: center;
    margin: 0 auto 25px;
    color: white;
  font-size: 2rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.feature-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

.footer-area {
  background: var(--dark-text);
   color: white;
}

.footer-main-section {
   padding: 80px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
   gap: 60px;
}

.footer-brand .brand-title {
  font-size: 1.8rem;
  font-weight: 700;
    margin-bottom: 20px;
  color: var(--primary-blue);
}

.footer-brand .brand-description {
   color: #b0b0b0;
  line-height: 1.7;
   font-size: 16px;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.footer-menu {
    list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
   color: #b0b0b0;
    text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-menu a:hover {
  color: var(--primary-blue);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 30px 0;
  background: var(--black-color);
}

.footer-bottom-content {
   text-align: center;
}

.copyright-info p {
  color: #888;
   margin-bottom: 8px;
   font-size: 14px;
}

.address-info {
    font-size: 13px !important; 

}@media (max-width: 991px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-left, .nav-right {
    display: none;
  }
  
  .mobile-nav-overlay {
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .container-main {
    padding: 0 15px;
  }
  
  .hero-content {
    padding: 100px 0 40px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .footer-main-section {
    padding: 60px 0 40px;
  }
}body.menu-open {
  overflow: hidden;
}

.menu-open .mobile-menu-btn .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-open .mobile-menu-btn .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-open .mobile-menu-btn .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.courses-about-section {
   padding: 90px 0;
    background: #ffffff;
	position: relative;
}

.courses-about-section::before {
  content: '';
  position: absolute;
   top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(135deg, rgba(49, 133, 252, 0.03) 0%, rgba(57, 67, 183, 0.05) 100%);
  z-index: 0;
}

.section-header-area {
   text-align: center;
   margin-bottom: 70px;
   position: relative;
    z-index: 1;
}

.main-section-title {
    font-size: 2.8rem;
  font-weight: 300;
   color: #1F1F1F;
    margin-bottom: 20px;
    line-height: 1.3;
}

.title-accent {
  background: linear-gradient(135deg, #3185FC, #3943B7);
    background-clip: text;
    font-weight: 700;
}

.section-subtitle {
       font-size: 1.2rem;
    max-width: 600px;
    font-weight: 400;
  color: #727272;
  margin: 0 auto;
   line-height: 1.6;
}

.courses-main-content {
  position: relative;
  z-index: 1;
}

.content-grid-wrapper {


   grid-template-columns     :  1fr 1fr;
  align-items: center;
   display:      grid;
    gap: 80px;
}

.course-img-container {
    position: relative;
  overflow: hidden;
   border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.course-main-image {
    width: 100%;
   height: auto;
   display: block;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.course-img-container:hover .course-main-image {
  transform: scale(1.05);
}

.image-overlay-badge	{
  position: absolute;
  top: 25px;
   left: 25px;
  background: linear-gradient(135deg, #3185FC, #3943B7);
   color: white;
    padding: 12px 24px;
  border-radius: 50px;
   font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
   letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(49, 133, 252, 0.3);
}

.course-description-area {
   padding-left: 20px;
}

.content-heading {
  font-size: 2.2rem;
  font-weight: 600;
    color: #1F1F1F;
    margin-bottom: 25px;
    line-height: 1.3;
}

.content-text {
  font-size: 1.1rem;
   color: #727272;
  line-height: 1.7;
    margin-bottom: 25px;
   font-weight: 400;
}

.course-highlights-list {

	   margin: 40px 0;
  padding-left: 0;

}

.highlight-item {
   display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
   padding: 15px 0;
}

.highlight-icon


{
    margin-right: 15px;
    margin-top: 2px;
  flex-shrink: 0;
}

.highlight-icon i {
   color: #3185FC;
  font-size :    1.2rem;
}

.highlight-text {
   font-size: 1rem;
   color: #1F1F1F;
   line-height: 1.6;
}

.highlight-text strong {

  color: #3185FC;
    font-weight: 600;

}

.course-cta-area {
   margin-top: 45px;
  display: flex;
   gap: 20px;
}

.course-btn {
   text-decoration: none;
    padding: 16px 32px;
   border-radius: 50px;
   font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  border: 2px solid transparent;
}

.primary-btn {
  background: linear-gradient(135deg, #3185FC, #3943B7);
  color: white;
  box-shadow: 0 10px 30px rgba(49, 133, 252, 0.25);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(49, 133, 252, 0.35);
}

.secondary-btn {
  background: transparent;
  color: #3185FC;
    border: 2px solid #3185FC;
}

.secondary-btn:hover {
   background: #3185FC;
    color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(49, 133, 252, 0.2);
}@media (max-width: 991px) {
  .content-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .course-description-area {
    padding-left: 0;
    text-align: center;
  }
  
  .main-section-title {
    font-size: 2.2rem;
  }
  
  .content-heading {
    font-size: 1.8rem;
  }
  
  .courses-about-section {
    padding: 70px 0;
  }
  
  .course-cta-area {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .courses-about-section {
    padding: 50px 0;
  }
  
  .section-header-area {
    margin-bottom: 50px;
  }
  
  .main-section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .content-heading {
    font-size: 1.5rem;
  }
  
  .content-text {
    font-size: 1rem;
  }
  
  .course-cta-area {
    flex-direction: column;
    align-items: center;
  }
  
  .course-btn {
    width: 100%;
    max-width: 280px;
  }
  
  .image-overlay-badge {
    top: 15px;
    left: 15px;
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .courses-about-section::before {
    display: none;
  }
}.course-pricing-area {
    padding: 95px 0 85px;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
   position: relative;
}

.pricing-header-section {
  text-align: center;
   margin-bottom: 65px;
}

.pricing-main-title {
   font-size: 2.9rem;
   font-weight: 300;
  color: #1F1F1F;
    margin-bottom: 22px;
    line-height: 1.2;
}

.title-highlight {
  background: linear-gradient(135deg, #3185FC, #3943B7);
  background-clip: text;
   font-weight: 700;
}

.pricing-subtitle {
 font-size: 1.15rem;
  color: #727272;
  max-width: 650px;
   margin: 0 auto;
    line-height: 1.65;
  font-weight: 400;
}

.pricing-cards-wrapper {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
   margin-bottom: 60px;
}

.price-card {
    background: #ffffff;
   border-radius: 18px;
   padding: 35px 25px 30px;
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.08);
  position:     relative;
   transition: all 0.35s ease;
  border : 2px solid transparent;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 65px rgba(0, 0, 0, 0.12);
}

.popular-card {
    border: 2px solid #3185FC;
  transform: scale(1.05);
}

.popular-card:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
   top: -15px;
   left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3185FC, #3943B7);
  color: white;
    padding: 8px 25px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
    text-transform   : uppercase;
  letter-spacing: 0.8px;
}

.course-type-badge {
   display: inline-block;
  background: rgba(49, 133, 252, 0.1);
   color: #3185FC;
   padding: 6px 16px;
    border-radius: 25px;
   font-size: 12px;
	 font-weight: 500;
   text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.course-name {
    font-size: 1.6rem;
  font-weight: 600;
    color: #1F1F1F;
  margin-bottom: 12px;
    line-height: 1.3;
}

.course-desc {
  font-size: 15px;
  color: #727272;
   line-height: 1.5;
    margin-bottom: 30px;
}

.price-section {
  text-align: center;
  margin-bottom: 35px;
	 padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.price-amount {
   display: flex; 
  align-items: flex-start; 
    justify-content: center; 
  margin-bottom   :       8px;
}

.currency {
    font-size: 1.2rem;
  font-weight: 600;
    color: #3185FC;
    margin-right: 5px;
   margin-top: 8px;
}  

.price-number {
  font-size: 3.2rem;
   font-weight: 700;
    color: #1F1F1F;
  line-height: 1;
}

.price-note {
  margin: 0;
    font-size: 13px;
  color: #727272;
}

.course-features {
    margin-bottom: 35px;
}

.features-list {
    list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
   display: flex;
    align-items: center;
   margin-bottom: 14px;
  font-size: 15px;
    color: #1F1F1F;
    line-height: 1.4;
}

.check-icon {
   font-weight: bold;
   color: #3185FC;
   margin-right: 12px;
    font-size: 16px;
}

.card-cta-area {
    text-align: center;
}

.pricing-btn {
   display: inline-block;
   text-decoration: none;
  padding: 14px 28px;
    border-radius: 50px;
   font-weight: 500;
  font-size: 15px;
   transition: all 0.3s ease;
   width: 100%;
  text-align: center;
    border: 2px solid transparent;
}

.basic-btn {
  background: rgba(49, 133, 252, 0.1);
    color: #3185FC;
    border: 2px solid #3185FC;
}

.basic-btn:hover {
    background: #3185FC;
   color: white;
}

.popular-btn {
  background: linear-gradient(135deg, #3185FC, #3943B7);
  color: white;
  box-shadow: 0 8px 25px rgba(49, 133, 252, 0.3);
}

.popular-btn:hover {
     transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(49, 133, 252, 0.4);
}

.premium-btn {
  background: #1F1F1F;
   color: white;
  border: 2px solid #1F1F1F;
}

.premium-btn:hover {
    background: transparent;
    color: #1F1F1F;
   border: 2px solid #1F1F1F;
}

.pricing-footer-info {
    text-align: center;
   max-width: 700px;
    margin: 0 auto;
    padding: 30px 20px;
  background: rgba(49, 133, 252, 0.05);
    border-radius: 15px;
  border-left: 4px solid #3185FC;
}

.guarantee-text {
    font-size: 16px;
    color: #1F1F1F;
    line-height: 1.6;
   margin: 0;
}

.guarantee-text strong
	{
  color: #3185FC;
    font-weight: 600;
}

@media (max-width: 991px) {
  .pricing-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .popular-card {
    transform: none;
  }
  
  .popular-card:hover {
    transform: translateY(-8px);
  }
  
  .pricing-main-title {
    font-size: 2.3rem;
  }
  
  .course-pricing-area {
    padding: 75px 0 65px;
  }
}

@media (max-width: 767px) {
  .price-card {
    padding: 30px 20px 25px;
  }
  
  .pricing-main-title {
    font-size: 2rem;
  }
  
  .pricing-subtitle {
    font-size: 1rem;
  }
  
  .course-name {
    font-size: 1.4rem;
  }
  
  .price-number {
    font-size: 2.8rem;
  }
  
  .course-pricing-area {
    padding: 60px 0 50px;
  }
  
  .pricing-header-section {
    margin-bottom: 50px;
  }
  
  .pricing-footer-info {
    padding: 25px 15px;
  }
  
  .guarantee-text {
    font-size: 15px;
  }
}.logos-examples-section {
   padding: 80px 0 70px;
    background: #ffffff;
    position: relative;
}

.examples-header-area {
   text-align: center;
   margin-bottom: 65px;
    max-width: 700px;
        margin-left: auto;
    margin-right: auto;
}

.examples-title {
   font-size: 2.7rem;
  font-weight: 300;
         color: #1F1F1F;
   margin-bottom: 20px;
   line-height: 1.25;
}

.highlight-text {
  background: linear-gradient(135deg, #3185FC, #3943B7);
   background-clip: text;
  font-weight: 700;
}

.examples-description {
    font-size: 1.1rem;
	 color: #727272;
  line-height: 1.65;
   font-weight: 400;
}

.logos-gallery-wrapper {
  margin-bottom: 80px;
}

.logo-showcase-item {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items: center;
    margin-bottom: 70px;
    padding: 0 20px;
}

.logo-showcase-item.reverse-layout {
   direction: rtl;
}

.logo-showcase-item.reverse-layout > * {
   direction: ltr;
} 

.logo-image-container {
  position: relative;
  overflow: hidden;
	border-radius: 15px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
   background: #f8f8f8;
}

.showcase-image {
   width: 100%;
    height: auto;
    display: block;
  transition: transform 0.4s ease;
}

.logo-image-container:hover .showcase-image {
  transform: scale(1.03);
}

.showcase-info {
   padding: 20px 0;
}

.showcase-heading {
  font-size: 1.8rem;
    font-weight: 600;
   color: #1F1F1F;
  margin-bottom: 18px;
   line-height: 1.3;
}

.showcase-text {
   font-size: 1.05rem;
    color: #727272;
   line-height: 1.7;
   font-weight: 400;

}

.examples-bottom-section {
   text-align:      center;
}

.bottom-cta-box {
	  background: linear-gradient(135deg, rgba(49, 133, 252, 0.08) 0%, rgba(57, 67, 183, 0.05) 100%);
  padding: 45px 35px;
  border-radius: 20px;
  max-width: 600px;
   margin: 0 auto;
  border: 1px solid rgba(49, 133, 252, 0.1);


}

.cta-heading {
   font-size: 1.7rem;
   font-weight: 600;
  color    :  #1F1F1F;
  margin-bottom: 15px;
    line-height: 1.3;
}

.cta-text {
    font-size: 1rem;
   color: #727272;
    margin-bottom: 30px;
  line-height: 1.6;
}

.examples-cta-btn {
    display: inline-block;
  background: linear-gradient(135deg, #3185FC, #3943B7);
   color: white;
    text-decoration: none;
   padding: 16px 35px;
  border-radius: 50px;
   font-weight: 500;
   font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(49, 133, 252, 0.25);
}

.examples-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(49, 133, 252, 0.35);
}@media (max-width: 991px) {
  .logo-showcase-item {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .logo-showcase-item.reverse-layout {
    direction: ltr;
  }
  
  .examples-title {
    font-size: 2.2rem;
  }
  
  .showcase-heading {
    font-size: 1.6rem;
  }
  
  .logos-examples-section {
    padding: 60px 0 55px;
  }
}

@media (max-width: 767px) {
  .logos-examples-section {
    padding: 50px 0 45px;
  }
  
  .examples-header-area {
    margin-bottom: 50px;
  }
  
  .examples-title {
    font-size: 1.9rem;
  }
  
  .examples-description {
    font-size: 1rem;
  }
  
  .logo-showcase-item {
    margin-bottom: 50px;
    padding: 0 10px;
    gap: 30px;
  }
  
  .logos-gallery-wrapper {
    margin-bottom: 60px;
  }
  
  .showcase-heading {
    font-size: 1.4rem;
  }
  
  .showcase-text {
    font-size: 1rem;
  }
  
  .bottom-cta-box {
    padding: 35px 25px;
  }
  
  .cta-heading {
    font-size: 1.5rem;
  }
}.student-testimonials-area {
    padding: 85px 0 75px;
  background: linear-gradient(135deg, #f8faff 0%, #eef5ff 100%);
    position: relative;
}

.testimonials-header {
  text-align: center;
   margin-bottom: 60px;
   max-width: 650px;
   margin-left: auto;
   margin-right: auto;
}

.testimonials-main-title {
  font-size: 2.8rem;
   font-weight: 300;
   color: #1F1F1F;
  margin-bottom: 22px;
    line-height: 1.2;
}

.title-accent {
  background: linear-gradient(135deg, #3185FC, #3943B7);
    background-clip: text;
   font-weight: 700;
}

.testimonials-subtitle {
  font-size: 1.1rem;
    color: #727272;
    line-height: 1.6;
  font-weight: 400;
}

.testimonials-content-wrapper {
	display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 40px;
   margin-bottom: 70px;
}

.testimonial-card {
    background: #ffffff;
  border-radius: 18px;
  padding: 35px 30px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  position: relative;
   transition: all 0.3s ease;
   border-top: 4px solid transparent;
   background-clip: padding-box;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -4px;
    left: 0;
    right: 0;
   height: 4px;
  background: linear-gradient(135deg, #3185FC, #3943B7);
    border-radius: 18px 18px 0 0;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.12);
}

.testimonial-text-area {
    margin-bottom: 30px;
}

.quote-icon {
  font-size: 4rem;
  color: rgba(49, 133, 252, 0.15);
  font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-quote {
    font-size: 1.05rem;
	 color: #1F1F1F;
    line-height: 1.7;
    margin-bottom: 25px;
   font-weight: 400;
    font-style: italic;
}

.testimonial-rating {
     margin-bottom: 20px;}

.star {
    color: #FFD700;
    font-size: 1.2rem;
  margin-right: 3px;
}

.testimonial-author-section {
    display: flex;
    align-items: center;
    gap: 18px;
}

.author-image-wrapper {
    flex-shrink: 0;
}

.author-photo {
  width: 65px;
   height: 65px;
    border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(49, 133, 252, 0.1);
}

.author-info {


    flex: 1;}

.author-name {
   font-size: 1.1rem;
    font-weight: 600;
    color: #1F1F1F;
                    margin-bottom: 5px;
  line-height: 1.2;
}

.author-title {
    font-size: 14px;
    color: #727272;
  margin-bottom: 3px;
    font-weight: 400;
}

.course-taken {
    font-size: 13px;
   color: #3185FC;
  font-weight: 500;
   margin: 0;
}

.testimonials-footer-area {
    text-align: center;
}

.social-proof-box {
  background: rgba(255, 255, 255, 0.7);
	border-radius: 15px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(49, 133, 252, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.stats-wrapper {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
	 gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
   color: #3185FC;
    line-height: 1.2;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
  color: #727272;
    font-weight: 500;
    text-transform: uppercase;
  letter-spacing: 0.5px;
}@media (max-width: 991px) {
  .testimonials-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .testimonials-main-title {
    font-size: 2.3rem;
  }
  
  .student-testimonials-area {
    padding: 65px 0 60px;
  }
  
  .stats-wrapper {
    gap: 25px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .student-testimonials-area {
    padding: 55px 0 50px;
  }
  
  .testimonials-header {
    margin-bottom: 45px;
  }
  
  .testimonials-main-title {
    font-size: 2rem;
  }
  
  .testimonials-subtitle {
    font-size: 1rem;
  }
  
  .testimonial-card {
    padding: 25px 20px;
  }
  
  .testimonials-content-wrapper {
    margin-bottom: 50px;
  }
  
  .testimonial-quote {
    font-size: 1rem;
  }
  
  .author-photo {
    width: 55px;
    height: 55px;
  }
  
  .social-proof-box {
    padding: 30px 20px;
  }
  
  .stats-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 13px;
  }
}.company-details {
    font-size: 12px !important;
   color: #999 !important;
   margin-top: 8px;
  line-height: 1.4;
}

.domain-link {
    color: #3185FC;
   text-decoration: none;
      transition: color 0.3s ease;
}

.domain-link:hover {
  color: #3943B7;
    text-decoration: underline;
}

.address-info {
   font-size: 13px !important;
   margin-bottom: 5px;
}@media (max-width: 767px) {
  .company-details {
    font-size: 11px !important;
    line-height: 1.5;
  }
  
  .address-info {
    font-size: 12px !important;
  }
}.legal-page-wrapper {
  padding: 120px 0 60px;
  background: #ffffff;
  min-height: 70vh;
}

.legal-content {
  max-width: 800px;
   margin: 0 auto;
}

.page-title

{
  font-size: 2.5rem;
  font-weight: 300;
    color: #1F1F1F;
   margin-bottom: 40px;
  text-align: center;
    line-height: 1.3;
}

.content-text h2 {
    font-size: 1.4rem;
    font-weight: 600;
  color :   #3185FC;
  margin: 35px 0 15px 0;
  line-height: 1.4;
}

.content-text p {
   font-size: 15px;
   color: #1F1F1F;
   line-height: 1.7;
    margin-bottom: 20px;
   font-weight: 400;
}

.content-text p strong {
   font-weight: 600;
    color: #3185FC;
}

.content-text a


{
    color  :   #3185FC;
  text-decoration: underline;
   transition: color 0.3s ease;
}

.content-text a:hover {
  color: #3943B7;
}

.content-text a[target="_blank"] {
  color: #727272;
}

.content-text a[target="_blank"]:hover {
   color: #3185FC;
}

.content-text h2:first-of-type {
    margin-top: 20px;
}

.content-text p:last-child {
  margin-top: 40px;
   padding-top  :  20px;
    border-top: 1px solid #f0f0f0;
    font-size: 14px;
  color: #727272;
   font-style: italic;
}@media (max-width: 991px) {
  .legal-page-wrapper {
    padding: 100px 0 50px;
  }
  
  .page-title {
    font-size: 2.2rem;
  }
  
  .content-text h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .legal-page-wrapper {
    padding: 90px 0 40px;
  }
  
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .content-text {
    padding: 0 10px;
  }
  
  .content-text h2 {
    font-size: 1.2rem;
    margin: 30px 0 12px 0;
  }
  
  .content-text p {
    font-size: 14px;
    margin-bottom: 18px;
  }
}.about-hero-section {
    padding: 140px 0 80px;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
   text-align: center;
}

.about-main-title {
  font-size: 3.2rem;
   font-weight: 300;
  color: #1F1F1F;
   margin-bottom: 15px;
  line-height: 1.2;
}

.name-highlight {
  background: linear-gradient(135deg, #3185FC, #3943B7); 
	   background-clip: text; 
	   font-weight: 700;
}

.about-subtitle {
  font-size: 1.3rem;
    color: #3185FC;
   margin-bottom: 30px;
   font-weight: 500;
}

.about-intro-text {
               font-size: 1.1rem;
    color: #727272;
  line-height: 1.7;
    max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

.about-story-section {
   padding  :     90px 0;
    background: #ffffff;
}

.story-grid-wrapper {
    display: grid; 
	    grid-template-columns: 1fr 1fr; 
	   gap: 70px; 
	   align-items: center;
}

.designer-image-container {
  position: relative;
    border-radius: 20px;
   overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.designer-photo {
   width: 100%;
     height: auto;
     display: block;
       transition: transform 0.4s ease;
}

.designer-image-container:hover .designer-photo {
  transform: scale(1.03);
}

.experience-badge {
   position: absolute;
    bottom: 25px;
   right: 25px;
  background: linear-gradient(135deg, #3185FC, #3943B7);
    color: white;
  padding: 20px;
    border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(49, 133, 252, 0.3);
}

.badge-years {
    display: block;
   font-size: 1.8rem;
    font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.badge-label {
   letter-spacing: 1px;
    font-weight: 500;
	text-transform: uppercase;
  font-size: 12px;
}

.story-heading {
  font-size: 2.4rem;
   font-weight: 600;
    color: #1F1F1F;
    margin-bottom: 30px;
   line-height: 1.3;
}

.story-paragraph {
  font-size: 1.05rem;
  color: #727272;
    line-height: 1.7;
  margin-bottom: 25px;
   font-weight: 400;
}

.about-work-showcase {
    padding: 85px 0;
  background: linear-gradient(135deg, #f8faff 0%, #eef5ff 100%);
}

.showcase-header {
   text-align: center;
  margin-bottom: 60px;
}

.showcase-title {
   font-weight: 300;
   color: #1F1F1F;
   line-height: 1.2;
  margin-bottom: 20px;
  font-size: 2.6rem;
}

.showcase-desc {
    font-size: 1.1rem;
                    color: #727272;
    max-width: 650px;
   margin: 0 auto;
   line-height    :       1.6;
}

.work-image-section {
  margin-bottom: 70px;
   text-align: center;
}

.work-image-container {
   display: inline-block;
  border-radius: 15px;
    overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  background: #f8f8f8;
}

.work-process-image {
   width: 100%;
    max-width: 800px;
    height: auto;
   display:     block;
    transition: transform 0.4s ease;
}

.work-image-container:hover .work-process-image {
  transform: scale(1.02);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 40px;
   max-width: 900px;
  margin: 0 auto;
}

.process-step {
   text-align: center;
   padding: 30px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.step-number {
  width: 60px;
   height: 60px;
  background: linear-gradient(135deg, #3185FC, #3943B7);
   color: white;
  border-radius: 50%;
    display: flex;
  align-items: center;
   justify-content: center;
    font-size: 1.5rem;
   font-weight: 700;
    margin: 0 auto 20px;
}

.step-title {
  font-size: 1.3rem;
   font-weight: 600;
	color: #1F1F1F;
   margin-bottom: 15px;
}

.step-desc {
    font-size: 15px;
    color: #727272;
  line-height: 1.6;
   margin: 0;
}

.about-cta-section {
   padding: 90px 0;
  background: #ffffff;
}

.cta-content-wrapper {
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items: center;
}

.cta-main-heading {
   font-size: 2.3rem;
   font-weight: 600;
   color: #1F1F1F;
  margin-bottom: 25px;
   line-height: 1.3;
}

.cta-description {
  font-size: 1.05rem;
    color: #727272;
  line-height: 1.7;
  margin-bottom: 30px;
}

.cta-features-list {
    display: flex;
  flex-direction: column;
    gap: 15px;
}

.cta-feature {
  display: flex;
  align-items: center;
    gap: 12px;
    font-size: 16px;
  color: #1F1F1F;
}

.cta-feature i {
   color: #3185FC;
   font-size: 1.2rem;
}

.cta-box {
  background: linear-gradient(135deg, rgba(49, 133, 252, 0.08) 0%, rgba(57, 67, 183, 0.05) 100%);
  padding: 40px 35px;
    border-radius: 20px;
   text-align: center;
  border: 1px solid rgba(49, 133, 252, 0.1);
}

.cta-box-title {
   font-size: 1.6rem;
   font-weight: 600;
    color: #1F1F1F;
   margin-bottom: 15px;
}

.cta-box-text {
    font-size: 16px;
  color: #727272;
  line-height: 1.6;
    margin-bottom: 30px;
}

.main-cta-button {
    display: inline-flex;
   align-items: center;
    gap: 12px;
  background: linear-gradient(135deg, #3185FC, #3943B7);
   color: white;
  text-decoration    :       none;
    padding: 18px 35px;
  border-radius: 50px;
   font-weight: 500;
  font-size: 16px;
    transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(49, 133, 252, 0.3);
    margin-bottom: 15px;
}

.main-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(49, 133, 252, 0.4);
}  

.cta-note {
    font-size: 13px;
   color: #727272;
    font-style: italic;
    margin: 0;
}

@media (max-width: 991px) {
  .about-main-title {
    font-size: 2.5rem;
  }
  
  .story-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .showcase-title {
    font-size: 2.2rem;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cta-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .about-hero-section {
    padding: 120px 0 60px;
  }
}

@media (max-width: 767px) {
  .about-hero-section {
    padding: 100px 0 50px;
  }
  
  .about-main-title {
    font-size: 2rem;
  }
  
  .about-subtitle {
    font-size: 1.1rem;
  }
  
  .about-intro-text {
    font-size: 1rem;
  }
  
  .about-story-section {
    padding: 60px 0;
  }
  
  .story-heading {
    font-size: 2rem;
  }
  
  .story-paragraph {
    font-size: 1rem;
  }
  
  .about-work-showcase {
    padding: 60px 0;
  }
  
  .showcase-title {
    font-size: 1.9rem;
  }
  
  .showcase-desc {
    font-size: 1rem;
  }
  
  .work-image-section {
    margin-bottom: 50px;
  }
  
  .process-step {
    padding: 25px 15px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .step-title {
    font-size: 1.2rem;
  }
  
  .step-desc {
    font-size: 14px;
  }
  
  .about-cta-section {
    padding: 60px 0;
  }
  
  .cta-main-heading {
    font-size: 1.8rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .cta-box {
    padding: 30px 25px;
  }
  
  .cta-box-title {
    font-size: 1.4rem;
  }
  
  .main-cta-button {
    padding: 16px 30px;
    font-size: 15px;
  }
  
  .experience-badge {
    bottom: 15px;
    right: 15px;
    padding: 15px;
  }
  
  .badge-years {
    font-size: 1.5rem;
  }
}.contact-main-section {

	  padding: 120px 0 80px;
  background :       #ffffff;
	}

.contact-header-area {
    text-align: center;
  margin-bottom: 70px;
  max-width: 700px;
   margin-left: auto;
    margin-right: auto;
}

.contact-page-title {
      font-size: 3rem;
  font-weight: 300;
  color: #1F1F1F;
   margin-bottom: 25px;
    line-height: 1.2;
}

.contact-subtitle {
  font-size: 1.15rem;
  color: #727272;
   line-height: 1.6;
  font-weight    :     400;
}

.contact-content-wrapper {
   display: grid;
   grid-template-columns: 1fr 1.5fr;
  gap: 70px;
  align-items: flex-start;
}

.contact-info-section {
    display     :      flex;
  flex-direction: column;
   gap: 30px;
}

.contact-info-box {
  background: linear-gradient(135deg, #f8faff 0%, #eef5ff 100%);
    padding: 35px 30px;
    border-radius: 18px;
  border: 1px solid rgba(49, 133, 252, 0.1);
}

.info-heading {
  font-size: 1.5rem;
  font-weight: 600;
    color: #1F1F1F;
   margin-bottom: 25px;
}

.contact-details {
   display: flex;
  flex-direction: column;
   gap: 25px;
}

.contact-item {
   display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
  width: 45px;
   height: 45px;
  background: linear-gradient(135deg, #3185FC, #3943B7);
   border-radius: 50%;
  display: flex;
   align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-text h3 {
   font-size: 1.1rem;
   font-weight: 600;
   color: #1F1F1F;
  margin-bottom: 5px;
}

.contact-text p {
   font-size: 15px;
    color: #727272;
    margin: 0;
   line-height: 1.5;
	}

.contact-text a {
  color: #3185FC;
   text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
   color: #3943B7;
   text-decoration: underline;
}

.response-info-box {
    background: white;
    padding  :       25px;
    border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #3185FC;
}

.response-heading {
    font-size: 1.2rem;
  font-weight: 600;
    color: #1F1F1F;
    margin-bottom: 20px;
}

.response-times {
    display: flex;
  flex-direction: column;
    gap: 12px;
}

.time-item {
    display: flex;
   justify-content: space-between;
	align-items: center;
    padding: 8px 0;
}

.time-label {
    font-size: 14px;
  color: #727272;
   font-weight: 500;
}

.time-value {
  font-size: 14px;
   color: #1F1F1F;
  font-weight: 600;
}

.form-container {
   background: white;
      padding: 40px 35px;
   border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-heading {
  font-size: 1.8rem;
  font-weight: 600;
   color: #1F1F1F;
    margin-bottom: 15px;
}

.form-description {
    font-size: 15px;
  color: #727272;
    line-height: 1.6;
  margin-bottom: 35px;
}

.contact-form {
    display: flex;
   flex-direction: column;
    gap: 25px;
}

.form-row {
    gap: 20px;
   display: grid;
  grid-template-columns: 1fr 1fr;


}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {

	  font-size: 14px;
   font-weight: 500;
   color: #1F1F1F;
}

.form-group input,
.form-group select,
.form-group textarea {
  -o-transition: border-color 0.3s ease;
  padding: 12px 15px;
    border: 2px solid #f0f0f0;
   border-radius: 8px;
    font-size: 15px;
  font-family: 'Zalando Sans Expanded', sans-serif;
   transition: border-color 0.3s ease;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
  border-color: #3185FC;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
   margin-top: 15px;
}

.checkbox-label {
  display: flex;
    align-items: flex-start;
   gap: 12px;
    cursor: pointer;
   font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
          display: none;
}

.checkmark {
   width: 20px;
     height: 20px;
   border: 2px solid #f0f0f0;
   border-radius: 4px;
    display: flex;
  align-items: center;
   justify-content: center;
    flex-shrink: 0;
  transition: all 0.3s ease;
   margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(135deg, #3185FC, #3943B7);
    border-color: #3185FC;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-label a {
   color: #3185FC;
   text-decoration: underline;
}

.checkbox-label a:hover {
    color: #3943B7;
}

.error-message {
  color: #e74c3c;
   font-size: 13px;
    display: none;
    margin-top: 5px;
}

.form-submit-area{
   margin-top: 20px;
  text-align: center;
}

.submit-button {
  background: linear-gradient(135deg, #3185FC, #3943B7);
  color: white;
    border: none;
  padding: 16px 40px;
   border-radius: 50px;
   font-size: 16px;
   font-weight: 500;
  font-family: 'Zalando Sans Expanded', sans-serif;
   cursor: pointer;
  transition: all 0.3s ease;
 display: inline-flex;
    align-items: center;
   gap: 10px;
  box-shadow: 0 10px 30px rgba(49, 133, 252, 0.3);
  margin-bottom: 15px;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(49, 133, 252, 0.4);
}

.form-note {
  font-size: 13px;
   color: #727272;
    font-style: italic;
    margin: 0;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
    z-index: 2000;
}

.popup-content {
    background: white;
  border-radius: 20px;
  max-width: 500px;
   width: 90%;
    max-height: 90vh;
    overflow-y: auto;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    position: relative;
}

.popup-header {
  padding: 30px 30px 20px;
  border-bottom:        1px solid #f0f0f0;
   display: flex;
    justify-content: space-between;
  align-items: center;
}

.popup-title	{
   font-size: 1.5rem;
   font-weight: 600;
   color: #1F1F1F;
    margin: 0;
}

.popup-close {
  background: none;
   border: none;
    font-size: 1.5rem;
  color: #727272;
   cursor: pointer;
   padding: 5px;
    transition: color 0.3s ease; 

}

.popup-close:hover {
   color: #1F1F1F;
}

.popup-body {
  padding: 30px;
   text-align: center;
}

.success-icon {
    width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3185FC, #3943B7);
    border-radius: 50%;
	display: flex;
  align-items: center;
  justify-content: center;
   margin: 0 auto 25px;
    color: white;
  font-size: 2.5rem;
}

.popup-message	{
    font-size: 16px;
    color: #1F1F1F;
   line-height: 1.6;
   margin-bottom: 15px;
}

.popup-sub-message {
      font-size: 14px;
  color: #727272;
    line-height: 1.5;
    margin: 0;}

.popup-footer {
   padding: 20px 30px 30px;
   text-align: center;
}

.popup-button {
  background: linear-gradient(135deg, #3185FC, #3943B7);
  color: white;
   border: none;
  padding: 12px 30px;
  border-radius  : 25px;
    font-size: 15px;
   font-weight: 500;
  cursor: pointer;
    transition: all 0.3s ease;
  font-family: 'Zalando Sans Expanded', sans-serif;
}

.popup-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(49, 133, 252, 0.3);
}@media (max-width: 991px) {
  .contact-content-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .contact-page-title {
    font-size: 2.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact-main-section {
    padding: 100px 0 60px;
  }
}

@media (max-width: 767px) {
  .contact-main-section {
    padding: 90px 0 50px;
  }
  
  .contact-header-area {
    margin-bottom: 50px;
  }
  
  .contact-page-title {
    font-size: 2rem;
  }
  
  .contact-subtitle {
    font-size: 1rem;
  }
  
  .contact-content-wrapper {
    gap: 40px;
  }
  
  .contact-info-box {
    padding: 25px 20px;
  }
  
  .form-container {
    padding: 30px 25px;
  }
  
  .form-heading {
    font-size: 1.5rem;
  }
  
  .contact-details {
    gap: 20px;
  }
  
  .contact-item {
    gap: 12px;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .response-info-box {
    padding: 20px;
  }
  
  .popup-content {
    width: 95%;
  }
  
  .popup-header {
    padding: 25px 25px 15px;
  }
  
  .popup-body {
    padding: 25px;
  }
  
  .popup-footer {
    padding: 15px 25px 25px;
  }
  
  .success-icon {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}.blog-main-section {
   padding: 120px 0 80px;
   background: #ffffff;
}

.blog-header-area {
  text-align: center;
    margin-bottom: 70px;
  max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blog-page-title {
    font-size: 3.2rem;
  font-weight: 300;
   color: #1F1F1F;
  margin-bottom: 25px;
  line-height: 1.2;
}

.title-highlight {
  background: linear-gradient(135deg, #3185FC, #3943B7);
    background-clip: text;
    font-weight: 700;
}

.blog-subtitle {
   font-size: 1.15rem;
   color: #727272;
  line-height: 1.65;
   font-weight: 400;
}

.blog-articles-grid {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
        gap: 40px;
  max-width: 1100px;
   margin: 0 auto;
}

.blog-article-card {
   background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f8f8f8;
}

.blog-article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.article-image-wrapper {
   position: relative;
   overflow: hidden;
    height: 220px;
}

.article-image {
  width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-article-card:hover .article-image {
  transform: scale(1.05);
}

.article-category {
    position: absolute;
   top: 20px;
   left: 20px;
}

.category-tag {
  background: linear-gradient(135deg, #3185FC, #3943B7);
    color: white;
    padding:        6px 16px;
   border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
	 text-transform     :       uppercase;
  letter-spacing: 0.8px;
}

.article-content-area {
    padding: 30px 25px 25px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
  align-items: center;
    margin-bottom: 15px;
  font-size: 13px;
    color: #727272;
}

.article-date {
   font-weight: 500;
}

.reading-time {
   color: #999;
}

.article-title {
    margin-bottom: 15px;
}

.article-title a {
   font-size  :    1.4rem;
  font-weight: 600;
    color: #1F1F1F;
  text-decoration: none;
    line-height: 1.3;
  transition: color 0.3s ease;
}

.article-title a:hover {
   color: #3185FC;
}

.article-excerpt {
   font-size: 15px;
  color: #727272;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
}

.article-footer {
    border-top: 1px solid #f5f5f5;
   padding-top: 20px;
}

.read-more-link {
   display: inline-flex;
   align-items: center;
    gap: 8px;
   color: #3185FC;
   text-decoration: none;
   font-size: 14px;
  font-weight: 500;
    transition: all 0.3s ease;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

.read-more-link:hover {
  color: #3943B7;
  transform: translateX(5px);
}

.read-more-link i {
  font-size: 12px;
       transition: transform 0.3s ease;
}

.read-more-link:hover i {
  transform: translateX(3px);
}@media (max-width: 991px) {
  .blog-articles-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
  }
  
  .blog-page-title {
    font-size: 2.6rem;
  }
  
  .blog-main-section {
    padding: 100px 0 60px;
  }
  
  .article-image-wrapper {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .blog-main-section {
    padding: 90px 0 50px;
  }
  
  .blog-header-area {
    margin-bottom: 50px;
  }
  
  .blog-page-title {
    font-size: 2.2rem;
  }
  
  .blog-subtitle {
    font-size: 1rem;
  }
  
  .blog-articles-grid {
    gap: 25px;
  }
  
  .article-content-area {
    padding: 25px 20px 20px;
  }
  
  .article-title a {
    font-size: 1.25rem;
  }
  
  .article-excerpt {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .article-footer {
    padding-top: 15px;
  }
  
  .article-image-wrapper {
    height: 200px;
  }
  
  .category-tag {
    padding: 5px 12px;
    font-size: 11px;
  }
  
  .article-meta {
    font-size: 12px;
  }
}.article-page-wrapper {
    padding: 120px 0 60px;
  background: #ffffff;
    min-height: 70vh;
}

.article-content {
  max-width: 800px;
   margin: 0 auto;
}

.article-header {
  margin-bottom: 40px;
   text-align: center;
}

.breadcrumb-nav {
    font-size: 14px;
   color: #727272;
	margin-bottom: 20px;
}

.breadcrumb-nav a {
    color: #3185FC;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: #3943B7;
}

.article-main-title {
   font-size: 2.8rem;
  font-weight: 300;
   color: #1F1F1F;
  margin-bottom: 20px;
  line-height: 1.3;
}

.article-meta-info {
    display: flex;
    justify-content: center;
   gap: 20px;
  font-size: 14px;
  color: #727272;
}

.publish-date {
  font-weight: 500;
}

.read-time {
  color: #999;
}

.article-image-section {
   margin-bottom: 50px;
    text-align: center;
}

.main-article-image {
   width: 100%;
   max-width: 700px;
   height: auto;
    border-radius: 15px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.article-text-content {
    font-size: 16px;
	line-height: 1.8;
   color: #1F1F1F;
   margin-bottom: 50px;
}

.article-text-content p {
	   margin-bottom: 25px;
  font-weight: 400;}

.article-text-content p:last-child {
  margin-bottom: 0;
}

.article-cta-section {
  border-top: 1px solid #f5f5f5;
    padding-top: 40px;
    text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, rgba(49, 133, 252, 0.08) 0%, rgba(57, 67, 183, 0.05) 100%);
    padding: 35px 30px;
  border-radius: 15px;
  border: 1px solid rgba(49, 133, 252, 0.1);
  max-width :   500px;
  margin: 0 auto;
}

.cta-box h3 {
   font-size: 1.4rem;
    font-weight: 600;
   color: #1F1F1F;
    margin-bottom: 15px;
}

.cta-box p {
  font-size: 15px;
    color: #727272;
    margin-bottom: 25px;
  line-height: 1.6;
}

.article-cta-button {
   display: inline-block;
  background: linear-gradient(135deg, #3185FC, #3943B7);
    color: white;
  text-decoration: none;
    padding: 14px 30px;
  border-radius: 25px;
    font-weight: 500;
   font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(49, 133, 252, 0.25);
}

.article-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(49, 133, 252, 0.35);
}@media (max-width: 991px) {
  .article-page-wrapper {
    padding: 100px 0 50px;
  }
  
  .article-main-title {
    font-size: 2.3rem;
  }
  
  .article-content {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .article-page-wrapper {
    padding: 90px 0 40px;
  }
  
  .article-header {
    margin-bottom: 30px;
  }
  
  .article-main-title {
    font-size: 2rem;
  }
  
  .article-meta-info {
    flex-direction: column;
    gap: 5px;
  }
  
  .article-image-section {
    margin-bottom: 40px;
  }
  
  .article-text-content {
    font-size: 15px;
    margin-bottom: 40px;
  }
  
  .article-text-content p {
    margin-bottom: 20px;
  }
  
  .article-cta-section {
    padding-top: 30px;
  }
  
  .cta-box {
    padding: 25px 20px;
  }
  
  .cta-box h3 {
    font-size: 1.25rem;
  }
  
  .cta-box p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}