 



             /* our services */

 /* Ensure section takes full width and height available */
.section-container {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;     /* Center vertically */
  min-height: 50vh;      
  padding: 20px;          /* Padding to keep content from touching edges */
  box-sizing: border-box; /* Include padding in width and height */
  margin-top: 150px;      /* Add margin to push section below the navbar */
}

.centered-div {
  width: 80%;             /* Responsive width */
  max-width: 600px;      /* Prevent it from getting too wide */
  padding: 20px;         /* Internal padding */
  background-color: white; /* Background color for contrast */
  border-radius: 8px;   /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow for depth */
  text-align: center;   /* Center text inside */
  box-sizing: border-box; /* Include padding and border in the total width/height */
}

/* Adjustments for responsiveness */
@media (max-width: 768px) {
  .section-container {
      margin-top: 115px; /* Adjust the margin for smaller screens */
  }

  .centered-div {
      width: 90%;       /* Slightly wider on smaller screens */
  }
}


  /* new service cards */


  .ag-format-container {
    width: 1142px;
    margin: 0 auto;
  }
  
  
  body {
    background-color:#fff;
  }
  .ag-courses_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 50px 0;
  }
  .ag-courses_item {
    -ms-flex-preferred-size: calc(33.33333% - 30px);
    flex-basis: calc(33.33333% - 30px);
  
    margin: 0 15px 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    overflow: hidden;
    
    border-radius: 28px;
  }
  .ag-courses-item_link {
    display: block;
    padding: 30px 20px;
    background-color: #fff;
  
    overflow: hidden;
  
    position: relative;
  }

  @keyframes slideUp {
    from {
      transform: translateY(20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* Define the class that triggers the animation */
  .animate {
    animation: slideUp 0.5s ease-out forwards; /* Faster animation */
  }
  
  /* Initially hide the elements off-screen */
  .ag-courses_item {
    opacity: 0;
    transform: translateY(20px);
  }
  

  .ag-courses-item_link:hover,
  .ag-courses-item_link:hover .ag-courses-item_date {
    text-decoration: none;
    color: #FFF;
  }
  
  /* More specific selectors targeting h1 and p inside the .ag-courses-item_title */
 
/* Hover effect for icon color change */
.ag-courses_item .ag-courses-item_link:hover .ag-courses-item_title i {
    color: #000 !important; /* Change icon color to black on hover */
}


/* Force removal of text-decoration on the h1 and p within .ag-courses-item_title */
.ag-courses_item .ag-courses-item_title h1,
.ag-courses_item .ag-courses-item_title p {
    text-decoration: none !important;
    color: black; /* Keep the text color black */
}

/* If the issue persists, try resetting all styles */
.ag-courses_item .ag-courses-item_title * {
    text-decoration: none !important;
}

/* Additional reset in case of inherited styles */
.ag-courses_item .ag-courses-item_link:hover .ag-courses-item_title * {
    text-decoration: none !important;
    color: black !important; /* Ensure all text is black with no decoration */
}


  .ag-courses-item_link:hover .ag-courses-item_bg {
    -webkit-transform: scale(10);
    -ms-transform: scale(10);
    transform: scale(10);
  }
  .ag-courses-item_title {
    min-height: 87px;
    margin: 0 0 25px;
    
    overflow: hidden;
  
    color: #FFF;
  
    z-index: 2;
    position: relative;
  }
  .ag-courses-item_date-box {
    font-size: 18px;
    color: #FFF;
  
    z-index: 2;
    position: relative;
  }
  .ag-courses-item_date {
    font-weight: bold;
    color: #f9b234;
  
    -webkit-transition: color .5s ease;
    -o-transition: color .5s ease;
    transition: color .5s ease
  }
  .ag-courses-item_bg {
    height: 128px;
    width: 128px;
    background-color: #c19b5c;
  
    z-index: 1;
    position: absolute;
    top: -75px;
    right: -75px;
  
    border-radius: 50%;
  
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
  }
  .ag-courses_item:nth-child(2n) .ag-courses-item_bg {
    background-color: #c19b5c;
  }
  .ag-courses_item:nth-child(3n) .ag-courses-item_bg {
    background-color: #c19b5c;
  }
  .ag-courses_item:nth-child(4n) .ag-courses-item_bg {
    background-color: #c19b5c;
  }
  .ag-courses_item:nth-child(5n) .ag-courses-item_bg {
    background-color: #c19b5c;
  }
  .ag-courses_item:nth-child(6n) .ag-courses-item_bg {
    background-color: #c19b5c;
  }

  /* Ensure all links inside .ag-courses_item have no text decoration */
.ag-courses_item a {
  text-decoration: none !important;
}

/* Specifically target h1, p, and all elements within .ag-courses-item_title */
.ag-courses_item .ag-courses-item_title * {
  text-decoration: none !important;
}

/* Also target any parent elements in case inheritance is an issue */
.ag-courses_item a:hover, 
.ag-courses_item a:focus, 
.ag-courses-item_title, 
.ag-courses_item .ag-courses-item_title * {
  text-decoration: none !important;
}

/* If ::before or ::after pseudo-elements are causing issues */
.ag-courses_item .ag-courses-item_title::before,
.ag-courses_item .ag-courses-item_title::after {
  text-decoration: none !important;
}

/* Additional styling for ensuring no text-decoration on hover */
.ag-courses_item .ag-courses-item_link:hover {
  text-decoration: none !important;
}

  
  
  
  @media only screen and (max-width: 979px) {
    .ag-courses_item {
      -ms-flex-preferred-size: calc(50% - 30px);
      flex-basis: calc(50% - 30px);
    }
    .ag-courses-item_title {
      font-size: 24px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .ag-format-container {
      width: 96%;
    }
  
  }
  @media only screen and (max-width: 639px) {
    .ag-courses_item {
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
    }
    .ag-courses-item_title {
      min-height: 72px;
      line-height: 1;
  
      font-size: 24px;
    }
    .ag-courses-item_link {
      padding: 22px 40px;
    }
    .ag-courses-item_date-box {
      font-size: 16px;
    }
  }




  /* you ur next */
  /* whats ur */

	/* Main section styling */
  /* Main Container */
  .main-container {
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Section Styling */
  .main-section, .main-section1 {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    background-color: #fff;
  }
  
  /* Responsive div inside the section */
  .responsive-div {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #fff;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .responsive-div {
    opacity: 0;
    transform: translateY(50px); /* Move text 50px down */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Smooth transition */
}

/* Add active class when section is in view */
.responsive-div.active {
    opacity: 1;
    transform: translateY(0); /* Bring text to its original position */
}
  /* Responsive text */
  .responsive-text {
    font-size: 8vw; /* Base responsive font size */
    line-height: 1.2;
    margin: 0;
  }
  
  .responsive-text span {
    font-size: 12vw; /* Responsive font size for highlighted words */
  }
  
  /* Media Queries for smaller screens */
  @media (max-width: 768px) {
    .responsive-text {
        font-size: 6vw; /* Decrease base font size for tablets */
    }
  
    .responsive-text span {
        font-size: 10vw; /* Adjust span font size for tablets */
    }
  }
  
  @media (max-width: 480px) {
    .responsive-text {
        font-size: 5vw; /* Decrease base font size further for small screens */
    }
  
    .responsive-text span {
        font-size: 8vw; /* Adjust span font size for small screens */
    }
  }
  
  /* Container Styling */
  .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    gap: 20px;  
    background-color: #fff;
  }
  
  /* Left and Right Div Styling */
  .left-div, .right-div {
    flex: 1;  
    padding: 10px;
    box-sizing: border-box;
    background-color: #fff;  
  }

  /* Initial state for left-div and right-div animation */
.left-div, .right-div {
  opacity: 0;
  transform: translateY(50px); /* Move the div down by 50px */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Smooth transition */
}

/* Add active class when the divs are in view */
.left-div.active, .right-div.active {
  opacity: 1;
  transform: translateY(0); /* Bring the div back to its original position */
}

  
  /* Left div styling */
  .left-div {
    display: flex;
    align-items: flex-start; /* Align text to the top of the div */
  }
  
  /* Text content styling */
  .text-content {
    text-align: right; /* Default for larger screens */
    font-size: 20px;
    padding-top: 85px;
    color: rgb(77, 74, 74);
  }
  
  /* Right div styling with vertical buttons aligned to the left */
  .right-div {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    align-items: flex-start; /* Align buttons to the left */
    padding-left: 50px; /* Add left padding */
    gap: 10px; /* Space between buttons */
  }
  
  /* Button styling */
  .btn {
    padding: 10px 20px;
    font-size: 16px;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
  }
  
  /* Specific button styles */
  .btn-phone {
    background-color: #c19b5c;
    height: 65px;
    width: 200px;
    margin-top: 40px;
  }
  
  .btn-email {
    background-color: #c19b5c;
    height: 65px;
    width: 290px;
    margin-top: 15px;
    margin-bottom: 70px;
  }
  
  .btn i {
    color: white;
    padding-right: 10px;
    font-size: 20px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack divs vertically on smaller screens */
        gap: 10px; /* Adjust space between divs */
    }
  
   
  
    .left-div, .right-div {
        width: 100%; /* Both divs take full width when stacked */
        padding: 10px; /* Ensure padding is consistent */
    }
  
    .right-div {
        padding-left: 10px;  
        justify-content: center;  
        margin-top: 10px;  
    }
  
    .text-content {
        text-align: center; /* Center text on mobile screens */
        padding-top: 20px; /* Adjust padding for mobile */
    }
  
    .btn {
        width: 100%;  
        max-width: 100%;  
    }
  
    .btn-phone, .btn-email {
        width: 100%;  
    }
  }
  
  @media (max-width: 480px) {
    .btn-phone, .btn-email {
        width: 100%;
    }
  
    .text-content {
        text-align: center; /* Ensure it's centered on smaller screens */
        padding-top: 10px; /* Adjust padding further for smaller screens */
    }
  }
  


  /* footer */


  @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,500,300,700);

		 * {
		   font-family: Open Sans;
		 }
		 
		  
		 .footer-distributed{
			 background: #c19b5c;
			 box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
			 box-sizing: border-box;
			 width: 100%;
			 text-align: left;
			 font: bold 16px sans-serif;
			 padding: 25px 50px;
		 }
		 
		 .footer-distributed .footer-left,
		 .footer-distributed .footer-center,
		 .footer-distributed .footer-right{
			 display: inline-block;
			 vertical-align: top;
		 }
		 
		 /* Footer left */
		 
		 .footer-distributed .footer-left{
			 width: 40%;
			 
		 }
		 
		 /* The company logo */
		 
		 .footer-distributed h3{
			 color:  #ffffff;
			 font: normal 36px 'Open Sans', cursive;
			 margin: 0;
		 }
		 
		 .footer-distributed h3 span{
			 color:  lightseagreen;
		 }
		 
		 /* Footer links */
		 
		 .footer-distributed .footer-links{
			 color:  #ffffff;
			 margin: 20px 0 12px;
			 padding: 0;
		 }
		 
		 .footer-distributed .footer-links a{
			 display:inline-block;
			 line-height: 1.8;
		   font-weight:400;
			 text-decoration: none;
			 color:  inherit;
		 }
		 
		 .footer-distributed .footer-company-name{
			 color:  #222;
			 font-size: 14px;
			 font-weight: normal;
			 margin: 0;
		 }
		 
		 /* Footer Center */
		 
		 .footer-distributed .footer-center{
			 width: 35%;
		 }
		 
		 .footer-distributed .footer-center i{
			 background-color:  #33383b;
			 color: #ffffff;
			 font-size: 25px;
			 width: 38px;
			 height: 38px;
			 border-radius: 50%;
			 text-align: center;
			 line-height: 42px;
			 margin: 10px 15px;
			 vertical-align: middle;
		 }
		 
		 .footer-distributed .footer-center i.fa-envelope{
			 font-size: 17px;
			 line-height: 38px;
		 }
		 
		 .footer-distributed .footer-center p{
			 display: inline-block;
			 color: #ffffff;
		   font-weight:400;
			 vertical-align: middle;
			 margin:0;
		 }
		 
		 .footer-distributed .footer-center p span{
			 display:block;
			 font-weight: normal;
			 font-size:14px;
			 line-height:2;
		 }
		 
		 .footer-distributed .footer-center p a{
			 color:  rgb(245, 247, 246);
			 text-decoration: none;;
		 }
		 
		 
		 
		 /* Footer Right */
		 
		 .footer-distributed .footer-right{
			 width: 20%;
		 }
		 
		 .footer-distributed .footer-company-about{
			 line-height: 20px;
			 color:  #fff;
			 font-size: 13px;
			 font-weight: normal;
			 margin: 0;
		 }
		 
		 .footer-distributed .footer-company-about span{
			 display: block;
			 color:  #ffffff;
			 font-size: 14px;
			 font-weight: bold;
			 margin-bottom: 20px;
		 }
		 
		 .footer-distributed .footer-icons{
			 margin-top: 25px;
		 }
		 
		 .footer-distributed .footer-icons a{
			 display: inline-block;
			 width: 35px;
			 height: 35px;
			 cursor: pointer;
			 background-color:  #33383b;
			 border-radius: 2px;
		 
			 font-size: 20px;
			 color: #ffffff;
			 text-align: center;
			 line-height: 35px;
		 
			 margin-right: 3px;
			 margin-bottom: 5px;
		 }
		 
		 @media (max-width: 880px) {
		 
			 .footer-distributed{
				 font: bold 14px sans-serif;
			 }
		 
			 .footer-distributed .footer-left,
			 .footer-distributed .footer-center,
			 .footer-distributed .footer-right{
				 display: block;
				 width: 100%;
				 margin-bottom: 40px;
				 text-align: center;
			 }
		 
			 .footer-distributed .footer-center i{
				 margin-left: 0;
			 }
		 
		 }


     .whatsapp-section {
      width: 100%;
      padding: 20px; /* Adjust as needed for spacing */
    }
    
    .whatsapp-container {
      display: flex;
      justify-content: flex-end; /* Align content to the right */
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .whatsapp-link {
      display: inline-block;
    }
    
    .whatsapp-icon {
      width: 50px; /* Default size */
      height: auto;
    }
    
    /* Adjust size for smaller screens */
    @media (max-width: 768px) {
      .whatsapp-icon {
        width: 40px; /* Smaller size for mobile screens */
      }
    }
    
    /* Increase size for larger screens */
    @media (min-width: 1200px) {
      .whatsapp-icon {
        width: 70px; /* Larger size for big screens */
      }
    }


    .nav-link:hover {
      background-color: #555; /* Change background color on hover */
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Add shadow on hover */
      color: white !important;
      border-radius: 10px;
    }
    
    /* On larger screens */
    @media (min-width: 992px) {
      .nav-link {
        color: white;
      }
    }
    
    /* Add this custom CSS for mobile screens when toggle is open */
    @media (max-width: 991px) {
      .navbar-nav {
          background-color: #1f1b1b;
      }
      .nav-link {
          color: white !important; /* Ensure the text is visible on black */
      }
    }
    
    
    