*     {

  margin: 0;
        padding: 0;
    box-sizing: border-box;


}

body {
  font-family: 'Roboto', Arial, sans-serif;
    color: #777;
         font-size    :  15px;
	line-height: 1.7;
}

.container-fluid {


   width: 100%;
	padding-right: 15px;
    padding-left   :     15px;
					margin-right: auto;
    margin-left: auto;
}

.container {
    width: 100%;
   padding-right: 15px;
  padding-left: 15px;
    margin-right: auto;
   margin-left: auto;
}@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}.row {
    display: flex;
   flex-wrap: wrap;
   margin-right: -15px;
   margin-left: -15px;
}

.col-12, .col-md-3, .col-md-5, .col-md-6, .col-md-9, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-8, .col-lg-10, .col-xl-5, .col-xl-6, .col-xl-12 {
  position: relative;
   width: 100%;
	padding-right: 15px;
  padding-left: 15px;
}

.col-12 
 {


    flex  :        0 0 100%;
  max-width: 100%;
	
	}@media (min-width: 768px) {
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-lg-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .offset-lg-1 {
        margin-left: 8.333333%;
    }
    .offset-lg-6 {
        margin-left: 50%;
    }
}

@media (min-width: 1200px) {
    .col-xl-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .offset-xl-7 {
        margin-left: 58.333333%;
    }
}h1, h2, h3, h4 {
  color: #222;
  font-family: 'Rubik', sans-serif;
}

h1 {
    font-size: 48px;
  font-weight: 500;
}

h2 {

		 font-size: 38px;
   font-weight     :    500;}

h3 {
   font-size: 24px;
  font-weight: 500;
	text-transform: uppercase; 

}

h4     {
    font-size: 18px;
  font-weight: 500;

}

p


{

	   margin-bottom: 15px;
	}

a
{

       text-decoration   :  none;
	 color: inherit;
       transition: all 0.3s;
    -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
     }

img {
    max-width: 100%;
   height: auto;
}

.header-section {
  background: #2c3e50;
  padding: 28px 0;
  position: fixed;
  left: 0;
   width: 100%;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.inner-header {

	   display: flex;
   align-items: center;
  justify-content: space-between;
	 flex-wrap: wrap;
   padding: 0 20px;

}

.inner-header .logo {
  margin-right: 30px;
}

.inner-header .logo img {

		height: 45px; 
  filter: brightness(0) invert(1); 
    width: auto;

}

.inner-header .main-menu {
  -ms-flex: 1;
        flex: 1;
    -webkit-flex: 1;
}

.inner-header .main-menu ul
{
	list-style: none;

	    padding: 0;

	   margin: 0;

	    display: flex;
}

.inner-header .main-menu ul li {
  position: relative;
	    margin-right: 35px;
}

.inner-header .main-menu ul li a{

	    font-size: 16px;
	font-weight: 400;
   color: #ffffff;
  letter-spacing: 0.5px;
   padding: 10px 0;
   display: block;}

.inner-header .main-menu ul li:hover a {
   color: #3498db;
}  

.inner-header .top-info {
    display: flex;
	align-items :   center;
    gap: 12px;
}

.inner-header .top-info img
{
        width: 22px;
   height: 22px;
  filter: brightness(0) invert(1);
}

.inner-header .top-info span {
    font-size  :  13px;
  color: #ffffff;
  max-width: 180px;
    line-height: 1.4;
}

.burger-menu {
	    display: none;
  flex-direction: column;
	 gap: 5px;
	 cursor: pointer;
    padding   :   10px;
   background: transparent;
  border: none;
	}

.burger-menu span {
   width: 28px;
  height: 3px;
	background: #fff;
    display: block;
    transition :    0.3s;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);


}

.burger-menu.active span:nth-child(2) {
		opacity: 0;




}

.burger-menu.active span:nth-child(3) {

	  transform: rotate(-45deg) translate(7px, -7px);
	}@media (max-width: 991px) {
    .inner-header .main-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #2c3e50;
        padding: 20px;
    }

    .inner-header .main-menu.active {
        display: block;
    }

    .inner-header .main-menu ul {
        flex-direction: column;
    }

    .inner-header .main-menu ul li {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .burger-menu {
        display: flex;
    }

    .inner-header .top-info {
        display: none;
    }
}.welcome-area {
    position: relative;
  width: 100%;
   margin-top: 70px;
	
}

.welcome-slides {
  position: relative;
}

.single-welcome-slide {
    position: relative;
   width: 100%;
   height: 650px;
	background-color    : #000000;
    display: none;

}

.single-welcome-slide.active {
  display :block;
}

.single-welcome-slide.bg-img {
  background-position: center center;
  background-size: cover;
   background-repeat: no-repeat;
}

.single-welcome-slide.bg-overlay::after {
  content: ""; 
	    position: absolute; 
	   height  : 100%; 
	                    width: 100%; 
	   top: 0; 
		left  :  0; 
	    z-index: 1; 
	  background-color: rgba(0, 0, 0, 0.5);

}

.single-welcome-slide .container {
  height: 100%;
  position: relative;
   z-index :    2;
}

.single-welcome-slide .row {
  height: 100%;


}

.h-100 {
    height  :        100%;
}

.align-items-center {
  align-items: center;
}

.welcome-text h1, .welcome-text h2    {
	 font-size: 48px;
	margin-bottom     :       28px;
	color    :     #ffffff;
  line-height     :        1.2;
}

.welcome-text p {
   font-size: 17px;
    color: #ffffff;
    margin-bottom: 42px;
   line-height: 1.6;
}

.hero-btn-group {
     display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items :      center;
}

.alime-btn     {

	   min-width: 165px;
	height: 48px;
   line-height: 44px;
	font-size: 14px;
   font-weight: 500;
  padding: 0 28px;
   text-align  : center;
        text-transform: uppercase;
   color     :#ffffff;
    border: 2px solid #3498db;
    border-radius: 25px;
  transition: 0.4s;
         background: transparent;
     display: inline-block;


}

.alime-btn:hover {
    background-color: #3498db;
   color: #ffffff;
  box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
}@media (max-width: 767px) {
    .welcome-text h1, .welcome-text h2 {
        font-size: 32px;
    }

    .welcome-text p {
        font-size: 15px;
    }

    .single-welcome-slide {
        height: 500px;
    }
}.service-area {
  background-color: #95a5a6;
  background-image: url("../downloads/color_palette_swatches_web_design_tools_materials_2.webp");
    background-repeat: no-repeat;
        background-position:        center left;
    background-size: cover;
        position: relative;
}


.service-area:after {
  content: '';
	position: absolute;
    top     : 0;
    right: 0;
		width:   55%;
  height: 100%;
  background: rgba(52, 152, 219, 0.25);
  z-index: 1;
}

.service-area .container {
     position: relative;
   z-index   :       2;


}

.service-area h2,
.service-area h3 {
  color    :     #fff;
}

.section-padding {
  padding: 100px 0;
}

.section-top {
	margin-bottom   :     60px;
}

.single-service {
  margin-bottom :  35px;
}

.serv-icon {
   flex-shrink:    0;
}

.serv-icon img {
   width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
}

.serv-text h3 {
   margin-bottom    :   12px;
}

.serv-text p {
  color: rgba(255,255,255,0.9);
          line-height: 1.7;
}

.d-flex {
    display  :       flex;
}

.mb-4		{
   margin-bottom: 1.5rem;
}

.mr-4    {
    margin-right :    1.5rem;
}@media (max-width: 991px) {
    .service-area:after {
        width: 100%;
        background: rgba(52, 152, 219, 0.3);
    }

    .offset-xl-7, .offset-lg-6 {
        margin-left: 0;
    }
}.text-image-area {
   background: #fff;
}

.text-image-area h2  {
   margin-bottom   :  25px;
}


.text-image-area p {
      margin-bottom: 18px;
}

.template-btn {
	  color :        #fff;
  background: #3498db;
  font-family: 'Rubik', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
   font-weight: 500;
  border: 2px solid #3498db;
    display: inline-block;
	 padding    :       12px 26px;
    border-radius: 3px;
    transition: 0.4s;
	}  

.template-btn:hover {
    color: #3498db;
   background: transparent;
    border: 2px solid #3498db;
}

.mt-4 {


        margin-top: 1.5rem;


}

.mb-5 {
  margin-bottom: 3rem;
}

.mb-lg-0 {
                    margin-bottom: 0;
}@media (min-width: 992px) {
    .mb-lg-0 {
        margin-bottom: 0;
    }
}.img-fluid {

		max-width: 100%;
  height: auto;
}



.align-self-center	{
    align-self: center;
}

.about-room {
   padding    :     90px 0;
	 background: #f8f9fa;
}



.about-room h2 {
    text-align: center;
    font-size: 42px;
   font-weight: 400;
  line-height: 1.3;
  color: #242424;
    margin-bottom    :35px;
}

.about-para {
    margin-bottom: 25px;
}

.about-para p {
  color     :      #242424;

   line-height: 1.8;

    font-size: 15px;

   margin-bottom: 20px;
}

.about-btn {
    text-align: center;
    margin-top: 35px;
}

.primary-btn {
	 transition: 0.3s;
	display: inline-block;
	 text-transform: uppercase;
    padding  :       14px 28px;
	font-weight: 600;
  border: 2px solid #3498db;
   color: #3498db;
     position: relative;
    font-size: 13px;
}

.primary-btn:hover {
  background: #3498db;
   color: #ffffff; 
	
}@media (max-width: 767px) {
    .about-room h2 {
        font-size: 28px;
    }
}.features-area


{
    padding: 100px 0;
}

.features-area h2 {
  font-size:40px;
    margin-bottom: 15px;
}  

.feature-box {
  background     :   #fff;
   padding     :  35px 25px;
          border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
    text-align: center;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.feature-icon {
   margin-bottom: 20px;
}

.feature-icon img {
 width: 55px;
    height: 55px;
  filter: invert(47%) sepia(68%) saturate(2087%) hue-rotate(187deg);
}

.feature-box h3 {
    margin-bottom:        15px;
 color: #2c3e50;
}

.feature-box p {
   color: #777;
   line-height: 1.7;
       margin: 0;
}

.justify-content-center {
    justify-content  :      center;
}

.text-center  
  {
  text-align    : center;
}

.accordion_area {
  background: #fff;
  padding: 90px 0;
}

.accordion_thumb {
      border-radius: 8px;
    overflow: hidden;
  margin-bottom: 30px;
     }

.accordion_thumb img {
    width: 100%;
  transition: 0.4s;
}  

.accordion_thumb:hover img {
  transform: scale(1.05);
}  

.faq_ask h2 {
     margin-bottom: 45px;
    font-weight: 400;
  color: #001D38;
    font-size: 40px;


}

.accordion {

	    width: 100%;}

.accordion .card 
 {
	 background   :      #fff;
   border-bottom: 1px solid #e0e0e0;
   border-radius: 0;
    margin-bottom: 12px;
  border: none;
}

.accordion .card-header {
   background: transparent;
   padding: 15px 20px;
                    border: none;
}

.accordion button {

  text-align: left;
               padding: 0;
  transition: 0.3s;
    color: #001D38;
    font-weight: 400;
	 width: 100%;
   font-size: 15px;
    position:   relative;
  cursor: pointer;
  background   :        transparent;
   border:       none;
     }

.accordion button:focus {
  outline:     none;
}

.accordion button span {
    color: #3498db;
  font-weight: 600;
	margin-right: 10px;
}

.accordion button::after 
 {
  transform: translateY(-50%);
    font-size    :24px;
  color :       #001D38;
    right: 0;
  content: "+";
  position: absolute;
    transition: 0.3s;
         top: 50%;
}

.accordion button.collapsed::after {


  content: "+";}

.accordion button:not(.collapsed)::after {
  content: "-"; 

}

.accordion button:hover {
    color :        #3498db;
}

.accordion .card-body

{
                    padding: 10px 20px 25px;
   color :   #727272;
   line-height: 1.7;
          font-size   :    14px;
}

.accordion .collapse {
         display: none;
}

.accordion .collapse.show {
   display: block;
}

.mb-0
	{
  margin-bottom: 0;
}@media (max-width: 991px) {
    .accordion_thumb {
        margin-bottom: 40px;
    }

    .faq_ask h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
}.cta-section {
   padding: 80px 0;
}

.cta-button {
   background: #fff;
    color: #667eea;
   padding :        15px 40px;
    font-size: 15px;
   font-weight: 600;
    text-transform     :   uppercase;
   border-radius: 30px;
    display: inline-block;
       transition: 0.3s;
    border: 2px solid #fff;
}

.cta-button:hover {
     background:      transparent;
       color: #fff;
  box-shadow: 0 5px 20px rgba(255,255,255,0.3);
}

.site-footer {
    padding   :    60px 0;

	  background :#3b4752;

	  color: rgba(255,255,255,0.7);
}@media (min-width: 768px) {
    .site-footer {
        padding: 80px 0;
    }
}.site-footer .border-top {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.site-footer p {
  color: rgba(255,255,255,0.7);
}

.site-footer h2 {
    color: #fff;
	font-size: 17px;
	text-transform  :        none;
}

.site-footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.site-footer a:hover {
               color  :   #fff;}

.site-footer ul {


    padding: 0;
   list-style: none;
}

.site-footer ul li {
               margin-bottom: 10px;
}

.footer-heading

{
   font-size    :        17px;
   color: #fff;
  margin-bottom :   20px;
}

.footer-subscribe .form-control {
                    border-color: #fff;
      background: transparent;
       color   :       #fff;
}

.footer-subscribe .form-control::placeholder {
  color: rgba(255,255,255,0.5);
   font-style : italic;
}

.footer-subscribe .btn  {
   height: 42px;
  border : 1px solid #fff;
	background: #fff;
       color: #000;
  font-weight: 500;
}

.footer-subscribe .btn:hover {

       background: #3498db;
  border-color: #3498db;
	color: #fff;}

.form-control {
   height: 42px;
	border-radius: 25px;
   padding: 8px 18px;
  border:    1px solid #ddd;
}

.input-group {
	 display: flex;
}

.input-group-append {
		margin-left: -1px;
}

.mb-3 {
   margin-bottom: 1rem;
}

.list-unstyled {
  padding-left: 0;

    list-style :        none;
}

.ml-auto {
   margin-left: auto; 

}

.pt-5 {
    padding-top: 3rem;
}

.mt-5 {
	 margin-top: 3rem; 

}

.copyright {
				 font-size: 14px;
	  color: rgba(255,255,255,0.5);
	   margin: 0;
}@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }

    .about-room {
        padding: 60px 0;
    }

    .features-area {
        padding: 60px 0;
    }

    .accordion_area {
        padding: 60px 0;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }
}.page-hero {
	 padding: 150px 0 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   text-align: center;
}

.page-hero h1 {
    margin-bottom: 15px;
   font-weight: 600;
    font-size: 52px;
   color: #fff;
}



.page-hero .hero-subtitle	{
  color: rgba(255,255,255,0.9);
   font-size: 19px;
  margin     :     0;
}@media (max-width: 767px) {
    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .page-hero .hero-subtitle {
        font-size: 16px;
    }
}.section-label {
    letter-spacing: 1.5px;
    font-weight: 600;
  text-transform: uppercase;
  display: block;
   color: #3498db;
    margin-bottom: 12px;
    font-size: 13px;
}

.section-title-main {
	  line-height: 1.3;
  font-size: 38px;
   font-weight: 500;
	 color: #222;
   margin-bottom     :      25px;

}@media (max-width: 767px) {
    .section-title-main {
        font-size: 28px;
    }
}.about-intro {
   background     :        #fff;
}

.about-intro .rounded {
  border-radius    :10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-intro p {
  font-size: 16px;
	   line-height: 1.8;
	    color: #555;
	    margin-bottom: 20px;
}

.stats-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
}

.stat-box {
  text-align: center;
 padding: 30px 20px;
  background: rgba(255,255,255,0.15);
   border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.stat-box:hover {
     transform: translateY(-5px);
  background: rgba(255,255,255,0.2);
}

.stat-box .stat-icon {
  margin-bottom: 20px; 

}

.stat-box .stat-icon img {
  filter: brightness(0) invert(1);
}

.stat-box .stat-number {
  display: block;
  font-size: 42px;
   font-weight: 700;
  color: #fff;
  line-height: 1;
    margin-bottom: 10px;
}

.stat-box .stat-label {
	display: block;
   font-size:  15px;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
   letter-spacing: 1px;
}@media (max-width: 767px) {
    .stat-box {
        margin-bottom: 20px;
    }
}.mission-section {
    background: #fff;
}

.mission-card {
  background: #fff;
  padding: 35px 30px;
   border-radius: 10px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  height: 100%;


}

.mission-card:hover
	{
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

.mission-card .mission-icon  
  {
  margin-bottom  :     20px;
}

.mission-card .mission-icon img {
  filter: invert(47%) sepia(68%) saturate(2087%) hue-rotate(187deg);
}

.mission-card h3 {
    font-size  :   22px;
	font-weight: 600;
  color: #2c3e50;
   margin-bottom: 15px;
}

.mission-card p	{

	  font-size: 15px;
   line-height: 1.7;
    color: #666;
   margin: 0; 
	
}

.values-section .lead-text
	{
	font-size  :        17px;
    line-height:    1.8;
    color:        #555;
    margin-bottom :      25px;
	
}

.value-item		{
                    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
   gap: 20px;
    padding-bottom: 30px;
               display: flex;
} 

.value-item:last-child {
    border-bottom: none;
	margin-bottom: 0;
  padding-bottom: 0;
}

.value-item .value-icon {


      flex-shrink: 0;

}

.value-item .value-icon img {
     filter: invert(47%) sepia(68%) saturate(2087%) hue-rotate(187deg);
}

.value-item .value-content h4 {
  font-size: 20px;
   font-weight: 600;
  color: #2c3e50;
	margin-bottom: 10px;
}

.value-item .value-content p	{
   font-size: 15px;
  line-height: 1.7;
 color: #666;
  margin: 0;

}


.contact-cta {
  background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
  padding: 80px 0;
}

.contact-cta .cta-button {
  transition: 0.3s;
      font-size: 15px;
    background: #fff;
  font-weight    :     600;
    border-radius: 30px;
  padding: 15px 35px;
       display:      inline-block;
    text-transform   : uppercase;
  color   :       #3498db;
    border: 2px solid #fff;
                    margin: 0 10px;
}

.contact-cta .cta-button:hover {
  background: transparent;
     color: #fff;
  box-shadow: 0 5px 20px rgba(255,255,255,0.3);
}

.contact-cta .cta-button-outline

{
  background: transparent;
    color   :       #fff;
   padding :      15px 35px;
    font-size: 15px;
  font-weight    :      600;
    text-transform: uppercase;
	border-radius: 30px;
  display: inline-block;
		transition: 0.3s;
         border: 2px solid #fff;
          margin: 0 10px;
}

.contact-cta .cta-button-outline:hover  {
   background:     #fff;
  color: #3498db;
}@media (max-width: 767px) {
    .contact-cta .cta-button,
    .contact-cta .cta-button-outline {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
}.intro-section {
   background   : #fff;
}

.intro-section .main-heading {
	font-size: 40px;
   font-weight: 500;
  color: #222;
 margin-bottom: 25px;
}

.intro-section .intro-text {
   font-size: 17px;

	  line-height: 1.8;

	  color: #555;
}@media (max-width: 767px) {
    .intro-section .main-heading {
        font-size: 28px;
    }
}.benefits-section .section-heading

{
   color: #222;
    margin-bottom : 20px;
			font-weight: 500;
    font-size: 38px;
}@media (max-width: 767px) {
    .benefits-section .section-heading {
        font-size: 28px;
    }
}.benefit-card {
   	 background:      #fff;
   padding: 35px 30px;
  border-radius: 10px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
	height: 100%;
  display     :      flex;
   gap: 25px;
	}

.benefit-card:hover {
     box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transform: translateY(-5px);


}

.benefit-card .benefit-icon     {

    flex-shrink: 0;

}

.benefit-card .benefit-icon img {
  filter: invert(47%) sepia(68%) saturate(2087%) hue-rotate(187deg);
}

.benefit-card .benefit-content h3 {

    font-size: 22px;
   font-weight:       600;
    color   :   #2c3e50;
    margin-bottom: 15px;
	}

.benefit-card .benefit-content p {
  font-size: 15px;
	line-height: 1.7;
   color: #666;
   margin     : 0;
}@media (max-width: 767px) {
    .benefit-card {
        flex-direction: column;
        text-align: center;
    }
}.comparison-section {
    background:#fff;
}

.comparison-table {
   border     :       1px solid #e0e0e0;
  border-radius: 8px;
    overflow :       hidden;
  background: #fff;
}

.comparison-row {
   display: grid;
   grid-template-columns :       2fr 1fr 1fr;
	 border-bottom: 1px solid #e0e0e0;
}

.comparison-row:last-child    {
    border-bottom     :     none;
}

.comparison-row.header-row {

	    background: #f8f9fa;

	    font-weight: 600;

}

.comparison-row.header-row .comp-cell {
    font-size: 18px;
  color: #222;
    padding: 20px 15px;
}

.comp-cell {
    padding: 18px 15px;
	    text-align: center;
	   display: flex;
	  align-items    :     center;
	    justify-content: center;
}

.comp-cell.feature-label {
  text-align: left;
  justify-content: flex-start;
   gap: 12px;
   font-size: 15px;
  color: #555;
}

.comp-cell.feature-label img    {
  filter: invert(47%) sepia(68%) saturate(2087%) hue-rotate(187deg);
   flex-shrink: 0;
}



.comp-cell.highlight-col{
  background: rgba(52, 152, 219, 0.05);
}

.comp-cell img {
  filter: invert(47%) sepia(68%) saturate(2087%) hue-rotate(187deg); 

}@media (max-width: 767px) {
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comp-cell:first-child {
        border-bottom: 1px solid #e0e0e0;
        background: #f8f9fa;
        font-weight: 600;
    }
}.testimonial-section .section-heading {
    color:     #222;
	margin-bottom     :20px;
   font-weight: 500;
	font-size: 38px;
}@media (max-width: 767px) {
    .testimonial-section .section-heading {
        font-size: 28px;
    }
}.testimonial-card {
   background: #fff;
  padding: 35px 30px;
   border-radius    :     10px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
  height: 100%;
}

.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}

.testimonial-card .testimonial-icon
	{
    margin-bottom: 20px;
}

.testimonial-card .testimonial-icon img {
  filter: invert(47%) sepia(68%) saturate(2087%) hue-rotate(187deg);
}

.testimonial-card .testimonial-text {
 font-size    :   15px;
   line-height: 1.7;
	color: #555;
    font-style:        italic;
  margin-bottom: 20px;
	
}

.testimonial-card .testimonial-author


{
   border-top: 1px solid #e0e0e0;
   padding-top: 15px;


}

.testimonial-card .testimonial-author strong {
          display: block;
   font-size: 16px;
    color: #2c3e50;
   margin-bottom: 5px;
}

.testimonial-card .testimonial-author span 
 {
  font-size: 14px;
   color: #999;
}


.cta-section-why {
  background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); 
   padding: 80px 0;
}

.courses-intro {
    background: #fff;
}

.courses-intro .intro-text {


   font-size: 17px;
  line-height  :     1.8;
               color: #555;
    margin-top: 20px;}

.pricing-section {
    padding: 100px 0;
}

.pricing-card {
    background: #fff;
	border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    padding: 40px 35px;
  position: relative;
  transition: 0.3s;
  height: 100%;
  display  :       flex;
   flex-direction: column;
} 

.pricing-card:hover

{
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.pricing-card.featured {
   border: 3px solid #3498db;
  box-shadow: 0 8px 35px rgba(52, 152, 219, 0.2);
}

.pricing-card.featured:hover


{
  box-shadow: 0 15px 50px rgba(52, 152, 219, 0.3);
}

.popular-badge	{
   position: absolute;
      top: -15px;
  right: 30px;
  background: #3498db;
   color: #fff;
  padding: 8px 20px;
         border-radius: 20px;
    font-size: 13px;
  font-weight: 600;
   text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-header {
    border-bottom: 2px solid #f0f0f0;
	padding-bottom   :      25px;
				 margin-bottom: 30px;
}

.pricing-header h3   {
  font-size: 28px;
   font-weight: 600;
    color: #2c3e50;
   margin-bottom: 12px;


}

.pricing-tag {
	 display  :   inline-block;
	background     :    #f8f9fa;
   color: #555;
  padding:      6px 16px;
   border-radius   :    15px;
    font-size: 13px;
   font-weight: 500;
   text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card.featured .pricing-tag {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
}

.pricing-price {
   text-align: center;
   margin-bottom: 35px;
}

.pricing-price .currency {
   font-size: 28px;
    color: #999;
  vertical-align: top;
         margin-right: 5px;
}

.pricing-price .amount {


	 font-size: 56px; 
	font-weight: 700; 
        color: #2c3e50; 
  line-height: 1;
}

.pricing-card.featured .pricing-price .amount {
   color: #3498db;
}

.pricing-price .period {
  display: block;
  font-size: 15px;
  color: #999;
        margin-top: 8px;
}

.pricing-features {
  margin-bottom: 30px; 

} 

.feature-list {
      list-style: none;
        padding: 0;
      margin: 0;
     }

.feature-list li  
  {
    font-size: 15px;
  gap: 12px;
   margin-bottom: 16px;
    display :     flex;
   color: #555;
    line-height   :       1.6;
       align-items: flex-start;
}

.feature-list li img {

	          flex-shrink: 0;
   margin-top: 2px;
  filter: invert(47%) sepia(68%) saturate(2087%) hue-rotate(187deg);


}

.feature-list li.feature-unavailable {
  color: #ccc;
    text-decoration: line-through;
}

.feature-list li.feature-unavailable img {
	filter: none;
  opacity: 0.3;


}

.pricing-description {
    margin-bottom: 30px;
       border-top: 2px solid #f0f0f0;
  padding-top: 25px;
}

.pricing-description h4 {
    font-size: 18px;
   font-weight: 600;
				 color: #2c3e50;
    margin-bottom : 12px;
}

.pricing-description p {
  font-size: 14px;
  line-height: 1.7;
    color: #666;
    margin: 0;
}

.pricing-cta {


    margin-top: auto;


}

.btn-pricing {


    display: block;
  width: 100%;
    text-align     :center;
  padding   :        15px 30px;
  background: #f8f9fa;
  color: #2c3e50;
          font-size    :   15px;
    font-weight: 600;
	text-transform: uppercase;
	 border-radius: 8px;
   transition: 0.3s;
               border    :  2px solid #e0e0e0;
     }



.btn-pricing:hover {
		 background   :#2c3e50;
	color: #fff;
  border-color: #2c3e50;
  transform: translateY(-2px);
}

.btn-pricing.primary {
       background: #3498db;
  color: #fff;
  border-color: #3498db; 
	
     }

.btn-pricing.primary:hover {
      background: #2980b9;
    border-color: #2980b9;
	}@media (max-width: 991px) {
    .pricing-card {
        margin-bottom: 30px;
    }
}.course-benefits {
    background: #fff; 

}

.benefit-item {
    text-align: center;
   padding: 25px 20px;
}

.benefit-item .benefit-icon
{
    margin-bottom: 20px;
}

.benefit-item .benefit-icon img {
	  filter: invert(47%) sepia(68%) saturate(2087%) hue-rotate(187deg);
     }

.benefit-item h4


{


	font-size     :      18px;
      font-weight: 600;
    color: #2c3e50;
   margin-bottom    :   12px;
}

.benefit-item p {
   font-size: 14px;
   line-height: 1.6;
    color: #666;
	margin: 0;
}

.faq-courses {
   padding: 90px 0;
	
}

.faq-courses .accordion .card

{
   background: #fff;
  border: none;
  border-bottom:       1px solid #e0e0e0;
  margin-bottom: 12px;
  border-radius: 0;
}

.faq-courses .accordion .card-header {
   background: transparent;
   padding: 15px 20px;
   border: none;

}

.faq-courses .accordion button {
	 font-size   :      15px;
  color: #001D38;
    font-weight: 400;
   text-align: left;
	width: 100%;
    background: transparent;
  border: none;
   padding: 0;
	position  :        relative;
	transition: 0.3s;
   cursor: pointer;
}

.faq-courses .accordion button:focus {
  outline: none;
	
}

.faq-courses .accordion button span {
	 color: #3498db;
   font-weight: 600;
   margin-right: 10px;
}


.faq-courses .accordion button::after {
               position: absolute;
  content: "+";
    right    :        0;
  top: 50%;
  transform: translateY(-50%);
  font-size   :        24px;
  color: #001D38;
  transition: 0.3s;
}

.faq-courses .accordion button.collapsed::after {
  content: "+";
}

.faq-courses .accordion button:not(.collapsed)::after {
     content: "-";

} 

.faq-courses .accordion button:hover {


   color    :       #3498db;}

.faq-courses .accordion .card-body    {
    font-size: 14px;
   line-height: 1.7;
  color: #727272;
   padding: 10px 20px 25px;
}

.faq-courses .accordion .collapse {
   display: none;
}

.faq-courses .accordion .collapse.show    {
  display: block;
}

.cta-courses {
     background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);

  padding: 80px 0;

}

.cta-courses .cta-button {
      border: 2px solid #fff;
  padding: 15px 40px;
   color:      #3498db;
   font-size: 15px;
    background: #fff;
   text-transform: uppercase;
    display: inline-block;
   transition: 0.3s;
   border-radius: 30px;
   font-weight   :       600;


}

.cta-courses .cta-button:hover {
   background: transparent;
          color: #fff;
  box-shadow: 0 5px 20px rgba(255,255,255,0.3);
}@media (max-width: 767px) {
    .pricing-header h3 {
        font-size: 24px;
    }

    .pricing-price .amount {
        font-size: 42px;
    }

    .popular-badge {
        top: -12px;
        right: 20px;
        font-size: 11px;
        padding: 6px 15px;
    }
}.blog-content {
   padding: 120px 0 80px;
 background  :   #fff;
}

.blog-header {
    margin-bottom: 50px;
        text-align: center;
}

.blog-header h1 {
    font-size: 42px;
  margin-bottom    :   20px;
	color   :     #2c3e50;
      line-height: 1.3;
}

.blog-meta {
   color: #777;
    font-size: 14px;
   margin-bottom: 30px;
}



.blog-meta span {
  margin: 0 15px;
}

.blog-body {
  font-size: 16px;
    line-height: 1.8;
  color: #555;
}

.blog-body h2 {
   font-size: 32px;
   margin: 40px 0 20px;
    color: #2c3e50;
}

.blog-body h3 {
   font-size: 24px;
  margin: 30px 0 15px;
    color: #2c3e50;
  text-transform :   none;

}

.blog-body p {
    margin-bottom: 20px;
}

.blog-body strong {
  color: #2c3e50;
  font-weight: 600;
}

.blog-cta{
  background: #f8f9fa;
   padding: 40px;
    border-radius: 8px;
   margin: 50px 0;
  text-align: center;
    border-left: 4px solid #3498db;
}

.blog-cta p {

  font-size: 15px;
   color: #555;
  margin-bottom     :   20px;}

.blog-cta a   {
    color: #3498db; 
	    font-weight: 600; 
		text-decoration    :     underline;
}

.blog-cta a:hover   {
                    color    :      #2c3e50;
}@media (max-width: 767px) {
    .blog-header h1 {
        font-size: 28px;
    }
    .blog-body h2 {
        font-size: 24px;
    }
    .blog-content {
        padding: 100px 0 60px;
    }
}.course-overview {
  background: #fff;
}

.course-content {
}

.course-content .lead-text {
     font-size: 17px;
  line-height: 1.8;
    color: #555;
  margin-bottom: 25px;
}

.course-content h3 {
  font-size: 26px;
   font-weight: 600;
   color: #2c3e50;
}

.course-content p

{
   font-size: 15px; 
	    line-height: 1.8; 
	  color: #666;
}  

.course-modules {
}

.module-item {
    background: #f8f9fa;
   padding: 30px 25px;
  border-radius: 8px;
	 margin-bottom: 25px;
  border-left: 4px solid #3498db;
}

.module-header {

	  display: flex;
   align-items: center;
   gap: 15px;
		 margin-bottom: 20px;
}

.module-header h4
	{
   color: #2c3e50;
    font-weight: 600;
   margin: 0;
      font-size: 20px;
	
}

.module-item ul{
    list-style: none;
 padding: 0;
   margin  : 0;
}

.module-item ul li {
   padding-left: 25px;
  position: relative;
      margin-bottom: 10px;
   font-size: 15px;
   color: #555;
  line-height: 1.6;
}



.module-item ul li:before {
  content: "▹";
  position: absolute;
  left: 0;
   color: #3498db;
  font-size: 18px;
}  

.course-sidebar {
}

.sidebar-card {
  background: #fff;
                    border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  padding: 35px 30px;
    position: sticky;
         top: 100px;
}

.course-price-box {
	text-align: center;
    border-bottom   :        2px solid #f0f0f0;
  padding-bottom: 25px;
   margin-bottom: 30px;
}

.course-price-box .price-amount {
  margin-bottom: 15px;
} 

.course-price-box .price-amount .currency {
                    font-size    :   24px;
   color: #999;
    vertical-align  :  top;
}

.course-price-box .price-amount .amount {
    font-size: 48px;
   font-weight: 700;
  color: #3498db;
}

.course-price-box .price-note  
  {
   color: #666;
               margin: 0;
   font-size: 14px;
}

.course-features-box {
          margin-bottom: 30px;
}

.course-features-box h4{
      font-size: 18px;
    font-weight: 600;
  color     :  #2c3e50;
  margin-bottom: 20px;

}

.sidebar-features {
         list-style: none;
   padding: 0;
  margin: 0;
}

.sidebar-features li     {
	display: flex;
                    align-items     : center;
          gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #555;
	
}

.sidebar-features li img {

  filter: invert(47%) sepia(68%) saturate(2087%) hue-rotate(187deg);
    flex-shrink: 0;

}

.btn-sidebar-cta {
	display: block;
   width: 100%;
  text-align: center;
  padding: 15px 30px;
         background: #3498db;
  color: #fff;
   font-size: 15px;
 font-weight: 600;
	text-transform: uppercase;
    border-radius: 8px;
    transition: 0.3s;
  margin-bottom: 15px;
}

.btn-sidebar-cta:hover     {
   background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.guarantee-text {
   text-align: center;
   font-size: 13px;
	color: #666;
  margin    :0;
        display: flex;
	align-items: center;
    justify-content: center;
   gap: 8px;
}@media (max-width: 991px) {
    .sidebar-card {
        position: static;
        margin-top: 40px;
    }
}.cookie-alert {
   position: fixed;
   bottom: 0;
    left     :      0;
      right: 0;
   background: #2c3e50;
        color: #fff;
   padding: 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 9999;
   display: none;
		animation: slideUp 0.4s ease-out; 

}

.cookie-alert.show {
	   display: block;
}@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}.cookie-alert-container {
	max-width: 1140px; 
	   margin: 0 auto; 
	   display: flex; 
	  align-items: center; 
	   justify-content: space-between; 
	   gap: 30px; 
	   flex-wrap     :        wrap;
}

.cookie-alert-content h3 {
  color: #fff;
    font-size: 18px;
    margin: 0 0 10px 0;
  font-weight: 600; 

}

.cookie-alert-content p {
  margin: 0; 
	   font-size: 14px; 
	  line-height: 1.6; 
	  color: rgba(255,255,255,0.9);
}


.cookie-alert-actions


{
    flex-shrink :       0;
	gap   :     15px;
  display     :        flex;
}

.cookie-btn {
  padding  :     12px 30px;
   border: none;
   border-radius: 5px;
  font-size: 14px;
	font-weight    :        600;
   cursor: pointer;
   transition:      all 0.3s;
   text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn-accept {
	  background: #3498db;
    color: #fff;
	}

.cookie-btn-accept:hover {
  background    :       #2980b9;
  box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
}

.cookie-btn-decline {
 background: transparent;
    color     :    #fff;
  border :2px solid #fff;
}

.cookie-btn-decline:hover {
  background: rgba(255,255,255,0.1);
}@media (max-width: 768px) {
    .cookie-alert-container {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cookie-alert-actions {
        justify-content: center;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}