


  
  
#bannerbtn1 {
   display: none; 
 }
 
 @media (max-width: 768px) {
   #bannerbtn1 {
     display:inline-block; 
   }
 }

 #headingtext {
   display: none; 
 }
 
 @media (max-width: 768px) {
   #headingtext {
     display: block; 
   }
 }

 #bannercontent {
   display: none; 
 }
 
 @media (max-width: 768px) {
   #bannercontent {
     display: block; 
   }
 }


   #active-menu3{
   color:#175cff;
   }
   #about-banner1{
   background-image: url('../../assets/image/Education/edu1.jpg');
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   background-attachment: fixed;
   margin-top: 100px;
   padding: 60px 0 ;
   height: 400px;
   }
   @media only screen and (max-width: 767px) {
      #about-banner1 {
         padding: 10px 0;
         background-image: url('../../assets/image/Education/edu1.jpg');
         background-attachment: scroll;
         height: 250px; 
         background-size: cover; 
      }
    }
   .intl-tel-input.separate-dial-code .selected-dial-code {
   display: table-cell;
   vertical-align: middle;
   padding-left: 8px;
   }
   .travel-parallax-bg1{
   background-image: url(../../assets/image/Education/educationscroll.jpg) !important;
   }
   .why-solution-sec {
   background-position: left;
   background-attachment: fixed;
   background-size: 50% auto;
   background-repeat: no-repeat;
   height:580px;
   }
   @media only screen and (max-width: 480px) {
   #img{
   display: none;
   }
   }
   .ibg-1-1{
   background-image: url(../../assets/image/Education/education1.jpg);
   }
   .ibg-1-1, .ibg-3-1, .ibg-5-1 {
   padding: 170px 0;
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
   }
   .ibg-3-1{
   background-image: url(../../assets/image/Education/education2.jpg);
   }
   .ibg-5-1 {
   background-image: url(../../assets/image/Education/education3.jpg);
   }
   .lead{
   text-align: justify;
   /* word-spacing:3.5px; */
   font-size: 15.8px;
   color: white;
   }
   #textalign {
      text-align: justify;
      word-spacing: 0;
      text-align-last: left;  
      word-break: break-word; 
      hyphens: none;         
  }
   #fs-30{
      font-size: 23px;
   }
   #para{
      font-size: 16.5px;text-align:justify
   }
   #list{
      line-height: 44px;
   }
   #menu{
      font-size: 16px;
   }
   #headingtext{
      font-size: 30px;
   }
   #liststyle{
      line-height: 44px;
   }

   .cta-button {
      background-color: #f39c12;
      color: white;
      font-size: 1.1rem;
      padding: 15px 40px;
      border-radius: 50px;
      text-decoration: none;
      text-transform: uppercase;
      font-weight: 600;
      transition: all 0.3s ease-in-out;
    }
    
    .cta-button:hover {
      background-color: #e67e22;
      transform: translateY(-5px);
    }
    
    /* Features Section */
    .features {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      padding: 30px 40px;
      background-color: #ffffff;
      text-align: center;
    }
    
    .feature-card {
      background-color: #ecf0f1;
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }
    
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }
    
    .feature-card h2 {
      font-size: 1.3rem;
      font-weight: 600;
      color: #032d60;
      margin-bottom: 20px;
    }
    
    .feature-card p {
      font-size: 1rem;
      color: #000;
      line-height: 1.7;
    }



/* Intro Section */
.intro {
   background-color: #fff;
   padding: 40px 0;
   text-align: center;
}

.intro h2 {
   font-size: 28px;
   margin-bottom: 20px;
}

.intro p {
   font-size: 15px;
   line-height: 1.6;
   max-width: 800px;
   margin: 0 auto;
}

/* Services Section */
.services {
   background-color: #ffffff;
   padding: 40px 0;
}

.services h2 {
   font-size: 28px;
   text-align: center;
   margin-bottom: 30px;
}

.service-item {
   background-color: #fafafa;
   margin-bottom: 20px;
   padding: 20px;
   border-radius: 8px;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
   font-size: 22px;
   color: #032d60;
   margin-bottom: 15px;
}

.service-item p {
   font-size: 16px;
   line-height: 1.5;
   text-align: justify;
}
/* Section for Benefits */
.benefits {
   background-color: #fff;
   padding: 50px 20px;
   text-align: center;
}

.benefits h2 {
   font-size: 2.5rem;
   margin-bottom: 40px;
   color: #333;
   text-transform: uppercase;
   letter-spacing: 2px;
}

/* Container for benefit items */
.benefits-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 30px;
   max-width: 1200px;
   margin: 0 auto;
}

/* Individual Benefit Item */
.benefit-item {
   background-color: #f9f9f9;
   padding: 20px;
   border-radius: 8px;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
}

.benefit-item:hover {
   transform: translateY(-5px);
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.benefit-item h3 {
   font-size: 1.6rem;
   color: #ffcc00;
   margin-bottom: 10px;
}

.benefit-item p {
   font-size: 0.9rem;
   color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
   .hero h1 {
       font-size: 2.5rem;
   }

   .benefits h2 {
       font-size: 2rem;
   }

   .benefit-item h3 {
       font-size: 1.4rem;
   }
}

#color1{

   color: #032d60;
   font-size: 20px;
   font-weight: 500;
}

/* Header Styles */
#header3 {
   background: linear-gradient(135deg, #5bd6ff, #55d4ff); 
   color: white;
   padding: 80px 0;
   text-align: center;
   border-radius: 10px;
}



#header3 h1 {
   font-size: 3.5rem;
   font-weight: bold;
   margin-bottom: 10px;
}

#header3 p {
   font-size: 1.25rem;
   margin-top: 0;
}

/* Content Section Styles */
#content {
   padding: 60px 0;
   background-color: #ffffff;
}

#content .container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 15px;
}

#content h2 {
   font-size: 2rem;
   font-weight: bold;
   margin-bottom: 20px;
   color: #333;
}

#content p {
   font-size: 0.9rem;
   margin-bottom: 30px;
   color: #000;
   line-height: 1.8;
   font-weight: 500;
}

/* Button Styles */
.cta-buttons {
   display: flex;
   gap: 20px;
   justify-content: center;
}

.cta-buttons .btn {
   background-color: #3b5998;
   color: white;
   text-decoration: none;
   padding: 15px 30px;
   font-size: 1.1rem;
   border-radius: 30px;
   transition: background-color 0.3s ease;
   text-align: center;
}

.cta-buttons .btn:hover {
   background-color: #8b9dc3;
}

.cta-buttons .btn.secondary {
   background-color: #f4f4f4;
   color: #3b5998;
   border: 2px solid #3b5998;
}

.cta-buttons .btn.secondary:hover {
   background-color: #3b5998;
   color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
   #header h1 {
       font-size: 2.5rem;
   }

   #content h2 {
       font-size: 2rem;
   }

   .cta-buttons {
       flex-direction: column;
       align-items: center;
   }

   .cta-buttons .btn {
       width: 100%;
       text-align: center;
       padding: 12px 0;
   }

   .cta-buttons .btn.secondary {
       margin-top: 10px;
   }
}

@media (max-width: 480px) {
   #header h1 {
       font-size: 2rem;
   }

   #content h2 {
       font-size: 1.8rem;
   }
}
/* General Styles for the Features Section */
#features {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   padding: 20px;
   gap: 20px;
 }
 
 .feature-card {
   background-color: #f4f4f4;
   border: 1px solid #ccc;
   border-radius: 8px;
   padding: 20px;
   width: 22%; /* Adjust width for larger screens */
   box-sizing: border-box;
 }
 
 .feature-card h6 {
   margin-top: 0;
   font-size: 1.1em;
 }
 
 .feature-card p {
   font-size: 0.95em;
   color: #555;
 }
 
 /* Mobile Responsiveness */
 @media (max-width: 768px) {
   /* For tablets and below */
   .feature-card {
     width: 100%; /* Stacks the cards vertically on mobile */
   }
 }
 
 @media (max-width: 480px) {
   /* For smaller screens (phones) */
   .feature-card {
     padding: 15px;
   }
 
   .feature-card h6 {
     font-size: 1em;
   }
 
   .feature-card p {
     font-size: 0.9em;
   }
 }
 