
/* General Reset */


body, html {
  width: 100%;
  height: 100%;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  font-family: Arial, sans-serif;
}

.header {
  width: 100%;
  text-align: center;
  background-color: #333;
  color: white;
  padding: 1rem;
}

.content {
  width: 100%;
  padding: 1rem;
}

.hero img {
  width: 100%; /* Full width image */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Remove inline spacing */
}

.text {
  margin-top: 1rem;
  font-size: 1rem;
  text-align: center;
}

/* Media Queries */
@media (max-width: 768px) {
  .text {
      font-size: 0.9rem;
  }
}


/* Ensure the text color is applied to h3 and p */
.home .content h3,
.home .content p {
    color: rgb(245, 245, 245);

}

.container {
    text-align: center;
    color: white;
    padding: 20px;
    z-index: 1; /* Ensures text stays above the background */
}

h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: rgb(18, 194, 185);
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.text {
    display: block;
    transition: 0.5s;
}

.text-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.text-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.btn:hover .text-2 {
    opacity: 1;
}






/* Sidebar Styles */
.navbar {
  position: fixed;
  top: 5rem; /* Move sidebar down from the top */
  left: 0;
  bottom: 0;
  width: 6rem;
  background-color: #2c3e50;
  color: white;
  transition: width 0.3s;
  padding-top: 2rem;
  border-radius: 0 1rem 1rem 0;
  box-shadow: 3px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.navbar.active {
  width: 20rem;
}

.navbar ul {
  list-style-type: none;
  padding: 0;
  margin-top: 2rem;
}

.navbar ul li {
  display: flex;
  align-items: center;
  padding: 1rem;
  transition: background-color 0.3s;
}

.navbar ul li:hover {
  background-color: #34495e;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.navbar ul li .icon {
  font-size: 2rem;
  margin-right: 1rem;
}

.navbar ul li .title {
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar.active ul li .title {
  opacity: 1;
}

/* Toggle Button Styles */
.toggle {
  position: fixed;
  top: 2rem;
  left: 2rem;
  font-size: 3rem;
  color: #2c3e50;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 101;
}

/* Media Query for Small Screens */
@media (max-width: 768px) {
  /* For smaller screens, start with a hidden sidebar */
  .navbar {
      top: 0; /* Adjust for mobile */
      left: -100%; /* Hide sidebar off-screen initially */
  }

  /* When the navbar is active, show the sidebar */
  .navbar.active {
      left: 0; /* Make the sidebar slide in */
  }

  /* Make the toggle button visible */
  .toggle {
      display: flex;
  }

  /* For mobile, hide the titles when the sidebar is collapsed */
  .navbar ul li .title {
      opacity: 0;
      font-size: 0;
  }

  /* Show titles when the sidebar is expanded */
  .navbar.active ul li .title {
      opacity: 1;
      font-size: 1rem;
  }
}

/* Mobile view adjustments */
@media (max-width: 480px) {
  .navbar ul li {
      padding: 0.8rem;
  }

  .navbar ul li .icon {
      font-size: 1.5rem;
  }

  .navbar ul li .title {
      font-size: 1.2rem;
  }
}






/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 6rem;
    right: 0;
    padding: 2rem;
    background-color: #ffffff;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header .logo {
    font-size: 2rem;
    color: #333;
    font-weight: bold;
    text-decoration: none;
}

.user-section .btn {
    padding: 0.8rem 2rem;
    background-color: #3498db;
    color: white;
    font-size: 1.5rem;
    margin-left: 1rem;
    text-decoration: none;
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.user-section .btn .text-2 {
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
}

.user-section .btn:hover .text-1 {
    opacity: 0;
}

.user-section .btn:hover .text-2 {
    opacity: 1;
}




/* Footer Styles */
.footer {
    padding: 4rem;                /* Adds padding inside the footer */
    background-color: #2c3e50;    /* Footer background color */
    color: white;                 /* Text color */
    text-align: center;           /* Center-align the text */
    width: 100%;                  /* Ensure the footer spans the full width */
    position: relative;           /* Position relative for inner elements */
    box-sizing: border-box;       /* Prevent overflow */
    margin: 0;                    /* Remove default margin */
    left: 0;                      /* Align to the left */
    right: 0;                     /* Align to the right */
    display: block;               /* Ensure it behaves like a block element */
}

/* Footer Box Container */
.footer .box-container {
    display: flex;
    justify-content: space-between;  /* Distribute space evenly */
    width: 100%;                     /* Ensure container takes full width */
    max-width: 1200px;               /* Optional: Add a max width to limit the footer content */
    margin: 0 auto;                  /* Center the container horizontally */
    gap: 2rem;                       /* Space between the boxes */
    flex-wrap: wrap;                 /* Allow wrapping of content */
    box-sizing: border-box;          /* Prevent overflow */
}

/* Footer Box Styling */
.footer .box {
    width: 30%;                      /* Box width on large screens */
    padding: 20px;                   /* Padding inside each box */
    box-sizing: border-box;          /* Prevent overflow */
    margin-bottom: 2rem;             /* Margin below the boxes */
}

/* Social Media Links Styling */
.footer .share a {
    margin: 0 1rem;                  /* Horizontal space between icons */
    font-size: 2rem;                 /* Icon size */
    color: white;                    /* Icon color */
    text-decoration: none;           /* Remove underline */
}

/* Footer Links Styling */
.footer .link {
    text-decoration: none;           /* Remove link underline */
    color: #3498db;                  /* Link color */
}

/* Credit Styling */
.footer .credit {
    margin-top: 2rem;  
    margin-right: 0px;              
    font-size: 1rem;              
    text-align: center;             
    width: 100%;                  
    padding-top: 1rem;               
}

/* Optional: Adjust for smaller screens */
@media (max-width: 768px) {
    .footer .box-container {
        flex-direction: column;      /* Stack the boxes vertically on small screens */
        align-items: center;         /* Center-align the boxes */
    }

    .footer .box {
        width: 80%;                  /* Increase box width on smaller screens */
    }
}


/* Card container styling */
.card-container {
    margin-left: 100px; 
    margin-right: 50px;  /* Adds space to the left of the entire container */
    margin-top: 50px;    /* Adds space to the top of the entire container */
    display: flex;
    flex-wrap: wrap;
    gap: 20px;           /* Adds space between the cards */
}

/* Individual card styling */
.card {
    flex: 1 1 220px;            /* Allows the card to grow, shrink, and set a base size of 220px */
    margin-left: 20px;          /* Adds space to the left of each card */
    margin-top: 20px;           /* Adds space to the top of each card */
    background-color: #172229;     /* Set background color to dark */
    color: #fff;                /* Set text color to white */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  /* Adds shadow around the card */
    transition: transform 0.3s ease, background-color 0.3s ease;  /* Smooth transition for transform and background color */
    border: 2px solid transparent; /* Default transparent border */
    position: relative;
    overflow: hidden; /* Ensures the content doesn't spill out of the card */
}

/* Glowing border effect when clicked */
.card.clicked {
    animation: borderGlow 1.5s infinite alternate;  /* Apply continuous RGB border glow effect */
}

/* Keyframes for the glowing border effect */
@keyframes borderGlow {
    0% {
        border-color: rgba(255, 0, 0, 0.7); /* Red glow at the start */
    }
    25% {
        border-color: rgba(0, 255, 0, 0.7); /* Green glow */
    }
    50% {
        border-color: rgba(0, 0, 255, 0.7); /* Blue glow */
    }
    75% {
        border-color: rgba(255, 255, 0, 0.7); /* Yellow glow */
    }
    100% {
        border-color: rgba(255, 0, 255, 0.7); /* Purple glow */
    }
}

/* Hover effect for cards: glowing shadow effect */
.card:hover {
    transform: translateY(-10px);  /* Slightly raise the card on hover */
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.7); /* Glowing shadow effect on hover */
}

/* Optional: Slight animation for content inside the card */
.card .card-content {
    transition: transform 0.3s ease;
}

.card:hover .card-content {
    transform: translateY(-5px); /* Slight movement of content inside the card */
}

/* Title text styling */
.card .card-content h3 {
    font-size: 18px;
    color: #fff; /* Set text color to white */
    font-weight: bold;
    text-align: center;
    font-size: 24px;
}







h1 {
    font-size: 36px;        /* Adjust the size of the main heading */
    color: #ffffff;            /* Set the text color */
    margin-top: 50px;       /* Space above the heading */
    margin-bottom: 20px;    /* Space below the heading */
    text-align: center;     /* Center-align the heading */
    
    
}



/* General Styles */
.contact {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .contact .heading {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
  }
  
  /* Row Layout for Image and Form */
  .contact .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    justify-content: center;
  }
  
  /* Image Styling */
  .contact .row .image {
    flex: 1 1 30rem;
  }
  
  .contact .row .image img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
 


  .contact .row{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
  }
  
  .contact .row .image{
    flex: 1 1 30rem; /* Reduced flex basis to make the image smaller */
  }
  
  .contact .row .image img{
    width: 100%;
    object-fit: cover; /* Ensures the image scales without stretching */
  }
  
  .contact .row form{
    flex: 1 1 40rem;
    border: 0.1rem solid var(--primary-color);
    padding: 2rem;
  }
  
  .contact .row form h3{
    font-size: 2.5rem;
    color: #444;
    padding-bottom: 1rem;
  }
  
  .contact .row form .box{
    width: 100%;
    font-size: 1.6rem;
    padding: 1.2rem 1.4rem;
    border: .1rem solid var(--primary-color);
    margin: .7rem 0;
  }
  
  .contact .row form .box:focus{
    color: var(--primary-color);
  }
  
  .contact .row form textarea{
    height: 15rem;
    resize: none;
  }
  
  






  

.skillBox{
    position: relative;
    width: 600px;
    padding: 50px;
    margin: 100px auto;
}

.skillBox h1{
    margin: 0 0 20px;
    padding: 0;
    color: #fff;
}

.skills{
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.skills h2{
    font-size: 14px;
    color: #fff;
}

.skills .progress{
    width: 100%;
    height: 20px;
    border-radius: 10px;
    border: 2px solid #fff;
    text-align: center;
    line-height: 22px;
    color: #fff;
    overflow: hidden;
}

.skills .progress .percent{
    text-align: right;
    color: #fff;
    padding-right: 10px;
    border-right: 2px solid #fff;
    animation: animate .5s linear infinite;
    background: linear-gradient(-45deg, rgba(255,255,255,.25) 25%,
    transparent 25%, transparent 50%, rgba(255,255,255,.25) 50%,
    rgba(255,255,255,.25) 75%, transparent 75%, transparent);
    background-size: 30px 30px;
}

@keyframes animate{
    0%{
        background-position:  0 0;
    }
    100%{
        background-position: 30px 0;
    }
}







 

/* newsletter */
.newsletter {
    background-color: white; /* Set background color to white */
}

.newsletter .row {
    display: flex;
    flex-wrap: wrap;
}

.newsletter .row .content {
    flex: 1 1 45rem;
    background: white; /* Set the background color of the content to white */
    color: var(--black); /* Change the text color to black for better contrast */
    padding: 10rem 5% 8.5rem;
    border-radius: 3rem 0 0 3rem;
}

.newsletter .row .content h6 {
    font-size: 1.7rem;
    margin: 0 auto .5rem auto;
    text-transform: uppercase;
}

.newsletter .row .content h3 {
    font-size: 4rem;
}

.newsletter .row .content p {
    font-size: 1.6rem;
    padding: 1rem 0;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.newsletter .row .content .email {
    padding: 1.2rem;
    width: 50%;
    border-radius: 5rem;
    font-size: 1.2rem;
    background: none;
    border: .1rem solid var(--black); /* Change the border color to black */
    color: var(--black); /* Change the text color to black */
}

.newsletter .row .content .btn {
    font-size: 1.6rem;
    margin-left: 3rem;
    border-radius: 5rem;
}

.newsletter .row .image {
    flex: 1 1 35rem;
}

.newsletter .row .image img {
    width: 100%;
    height: 48rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 0 3rem 3rem 0;
}

















/* General Styles for the search container */
.search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 15px; /* Border radius */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 4px 10px; /* Smaller padding */
    width: 100%;
    max-width: 200px; /* Reduced max-width */
    position: fixed; /* Fixed position for placement */
    top: 20px; /* Distance from the top of the viewport */
    right: 20px; /* Distance from the right side of the viewport */
    transition: transform 0.3s ease-in-out; /* Smooth animation for hover effect */
  }
  
  /* Search Input field styles */
  .search-input {
    width: 100%; /* Take up all available space */
    padding: 6px; /* Smaller padding */
    border: 1px solid #ccc;
    border-radius: 15px; /* Reduced border radius */
    font-size: 12px; /* Smaller font size */
    outline: none;
    transition: all 0.3s ease-in-out; /* Smooth transition for all states */
    box-sizing: border-box; /* Ensure padding is included in width */
  }
  
  /* Search input focus effect */
  .search-input:focus {
    border-color: #4CAF50; /* Green border on focus */
    box-shadow: 0 0 6px rgba(76, 175, 80, 0.6); /* Green glow effect */
    transform: scale(1.02); /* Slightly scale the input */
  }
  
  /* Search Button styles */
  .search-button {
    background-color: #4CAF50; /* Green background */
    color: white;
    border: none;
    padding: 6px 12px; /* Smaller padding */
    margin-left: 6px; /* Reduced margin */
    border-radius: 15px; /* Smaller border radius */
    font-size: 12px; /* Smaller font size */
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth transition for hover and focus */
  }
  
  /* Search Button hover effect */
  .search-button:hover {
    background-color: #45a049; /* Slightly darker green */
    transform: translateY(-2px); /* Move button up on hover */
    opacity: 1; /* Full opacity on hover */
  }
  
  /* Search Button focus effect */
  .search-button:focus {
    outline: none;
    box-shadow: 0 0 6px rgba(76, 175, 80, 0.8); /* Green glow around button */
    transform: translateY(-1px); /* Slight upward movement on focus */
  }
  


















  @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600&display=swap');

*{
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    transition: all .2s linear;
   
}

img{
    user-select: none;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
}

section{
    padding: 5rem 10%;
}

.heading{
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3.5rem;
    text-transform: capitalize;
    color: #0df5de;
}

.team .slide{
    text-align: center;
}

.team .slide:hover .image .share{
    bottom: 0;
}

.team .slide .image{
    position: relative;
    overflow: hidden;
}

.team .slide .image img{
    background-color: #f1eae9;
    width: 100%;
}

.team .slide .image .share{
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10rem;
    padding: 2rem;
    background: rgba(0,0,0,0.8);
    
}

.team .slide .image .share a{
    font-size: 3rem;
    margin: 0 1rem;
    color: #fff;
}

.team .slide .image .share a:hover{
    color: #df9084;
}

.team .slide .content h3{
    font-size: 2rem;
    text-transform: capitalize;
    color: #ffffff;
}

.team .slide .content span{
    font-size: 1.5rem;
    line-height: 2;
    color: #ffffff;
}

.team-slider .swiper-button-next{
    color: #ffffff;
}

.team-slider .swiper-button-prev{
    color: #ffffff;
}




/* General Styles for Mobile Devices */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
    }

 

    .navbar {
        display: none; /* Hide the sidebar on smaller screens */
    }

  
    .card-container {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .card {
        width: 100%; /* Stack cards vertically */
        max-width: 400px;
    }

   
}


/* Ensure the text color is applied to h3 and p */
.home .content h3,
.home .content p {
    color: rgb(245, 245, 245);

}




  
  /* services */
  
.services{
    background: url(../images/bg-2.png) no-repeat;
    background-position: center;
    min-height: 100vh;
    background-color: #00ffd5;
  }
  
  .services .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
  }
  
  .services .box-container .box{
    text-align: center;
  }
  
  .services .box-container .box img{
    margin: 1rem 0;
    height: 20rem;
    /* Shadow effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out; /* Smooth transition for hover */
  }
  
  /* Animation for image */
  @keyframes zoomIn {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .services .box-container .box img:hover{
    /* Hover effect */
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    animation: zoomIn 1.5s ease-in-out infinite; /* Animation effect */
  }
  
  .services .box-container .box h3{
    font-size: 2rem;
    padding: 1rem 0;
    color: var(--secondary);
  }
  
  .services .box-container .box p{
    font-size: 1.5rem;
    color: var(--light-color);
    line-height: 2;
  }



  .services .button-85 {
    margin-bottom: 50px;
    margin-top: 50px;
    margin-left: 390px;
      /* Adjust the value as needed to control the margin around the button */
  }
  
  .services .button-85 h3 {
    margin-top: 10px; /* Optional: Remove margin from the h3 inside the button */
  }
  

  
  /* services end */
  

  .click-here-button {
    display: inline-block; /* Makes the link behave like a button */
    background-color: #000000; /* Button background color */
    color: white; /* Text color */
    padding: 10px 20px; /* Padding for top/bottom and left/right */
    font-size: 1.4rem; /* Font size */
    text-align: center; /* Centers the text */
    text-decoration: none; /* Removes the underline */
    border-radius: 8px; /* Rounded corners */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transition for hover effects */
  }
  
  .click-here-button:hover {
    background-color: #0655ff; /* Slightly darker background on hover */
    transform: scale(1.05); /* Slightly scale the button on hover */
  }
  
  .click-here-button:active {
    background-color: #f30aa5; /* Even darker color when the button is clicked */
    transform: scale(1); /* Reset the scale when the button is clicked */
  }
  


  /* Coming Soon Animation */
.coming-soon-animation {
    text-align: center;
    margin-top: 20px;
    font-size: 2rem;
    color: #ff6f61; /* Bright color for visibility */
    font-weight: bold;
    position: relative;
    animation: moveLeftToRight 3s ease-in-out infinite;
}

@keyframes moveLeftToRight {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    50% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(100px);
    }
}


  

/* Mobile-specific styles */
@media (max-width: 768px) {
  .header {
      flex-direction: column;
      align-items: flex-start;
      padding: 10px;
  }

  .search-container {
      width: 100%;
      margin-top: 10px;
  }

  .search-input {
      width: 80%;
  }

  .navbar ul {
      padding-left: 0;
  }

  .navbar .list {
      text-align: left;
  }

  .navbar .list a {
      padding: 15px;
      display: block;
      width: 100%;
  }

  .toggle {
      display: block;
      font-size: 30px;
      color: white;
      cursor: pointer;
      margin-top: 10px;
  }
}




/* about */

/* about */
.about .row{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
}

.about .row .image{
  flex: 1 1 41rem;
  background-color: #f0f4f8; /* New background color (light grayish-blue) */
  overflow: hidden;  /* Ensures smooth transition for animations */
  border-radius: 8px; /* Rounded corners for a modern look */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animation */
}

.about .row .image:hover{
  transform: translateY(-10px); /* Elevates the image on hover */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2); /* Darker shadow for hover effect */
}

.about .row .image img{
  width: 100%;
  border-radius: 8px; /* Matching the border-radius of the container */
  object-fit: cover; /* Ensures the image covers the area without stretching */
  transition: transform 0.5s ease-in-out; /* Smooth animation */
}

.about .row .image:hover img{
  transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Text content */
.about .row .content{
  flex: 1 1 41rem;
}

.about .row .content .title{
  font-size: 4rem;
  color: white;
  margin-bottom: 1.5rem; /* Space between title and text */
}

.about .row .content p{
  font-size: 1.7rem;
  padding: .5rem 0;
  line-height: 2;
  color: white;
}

.about .row .content ul{
  margin: 2rem 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.about .row .content ul li{
  padding: .5rem;
  flex: 1 1 25rem;
  font-size: 1.4rem;
  color: white;
  transition: transform 0.3s ease; /* Animation effect for list items */
}

.about .row .content ul li:hover{
  transform: translateY(-5px); /* Slight hover effect for list items */
}

.about .row .content ul li i{
  font-size: 1.6rem;
  color: var(--white);
  padding: 1rem 1.2rem;
  margin-right: 1rem;
  background: var(--white);
  border-radius: 50%;
}

.about .row .content ul li i:hover{
  background: #1e88e5; /* Change icon background color on hover */
  color: #fff;
  transform: scale(1.1); /* Slight zoom effect for icons */
}

/* end */


/* end */





.chatbot-card {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #000000, #141315);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 140px;
    border: 1.5px solid transparent; /* Base border for animation */
    animation: glowing-border 3s infinite; /* Apply the border animation */
  }
  
  .chatbot-card img {
    width: 100px;
    animation: float 2s ease-in-out infinite;
  }
  
  .chatbot-card button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #fff;
    color: #121212;
    border: none;
    border-radius: 8px;
    font-size: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .chatbot-card button:hover {
    background-color: #f0f0f0;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  /* Animated border keyframes */
  @keyframes glowing-border {
    0% {
      border-color: #ff4d4d;
      box-shadow: 0 0 1px #ff4d4d;
    }
    50% {
      border-color: #6a0dad;
      box-shadow: 0 0 1px #6a0dad;
    }
    100% {
      border-color: #ff4d4d;
      box-shadow: 0 0 1px #ff4d4d;
    }
  }
  
  
  




 /* Main content container */
 .main-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Recent Posts Section */
.recent-posts-section {
  width: 100%;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.recent-posts-section h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.posts-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Individual Post Box with Left Margin */
.post-box {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 100%;
  max-width: 300px;
  padding: 15px;
  margin-left: 50px; /* Left margin added */
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.post-box:hover {
  border-color: #007bff;
  transform: translateY(-5px);
}

.post-box img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 10px;
}

.post-box h4 {
  font-size: 18px;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 10px;
}

.post-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.post-box a {
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
}

/* Responsive design */
@media (max-width: 768px) {
  .post-box {
      width: 100%;
      max-width: 100%;
      margin-left: 0; /* Remove left margin on small screens */
  }
}






.promo-container {
  background: linear-gradient(135deg, #000000, #000000);
  border-radius: 10px;
  width: 90%; /* Make it flexible for smaller screens */
  max-width: 1200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 0 auto; /* Center the container */
  animation: fadeIn 1.5s ease-out;
}

.promo-header,
.promo-footer {
  display: flex;
  justify-content: center;
  font-size: 1.5rem; /* Adjust for mobile */
  margin-bottom: 15px;
  text-align: center; /* Ensure proper alignment */
}

.emoji {
  margin: 0 10px;
  animation: bounce 1s infinite alternate;
}

.promo-text {
  font-size: 2rem; /* Adjust for mobile */
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  text-align: center;
  animation: slideIn 1s ease-out;
}

.discount-code {
  font-size: 1rem; /* Adjust for mobile */
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
  font-weight: bold;
}

.countdown {
  font-size: 1.2rem; /* Adjust for mobile */
  text-align: center;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
}

.cta-button {
  background-color: #8ae8b8;
  color: #fff;
  font-size: 1rem; /* Adjust for mobile */
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
  text-align: center;
}

.cta-button:hover {
  background-color: #6c5249;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  .promo-container {
    width: 100%;
    padding: 15px;
    margin-left: 30px;
  }

  .promo-header,
  .promo-footer {
    font-size: 1.2rem;
  }

  .promo-text {
    font-size: 1.5rem;
  }

  .discount-code {
    font-size: 0.9rem;
  }

  .countdown {
    font-size: 1rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 8px 10px;
  }
}




.exam-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Reduced min width */
  gap: 40px; /* Gap between cards */
  height: auto; /* Adjust height dynamically */
}

.exam-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  background: linear-gradient(135deg, #ffffff, #f8f8f8); /* Lighter gradient */
  border: 1px solid #ccc; /* Initial border */
  border-radius: 5px; /* Smaller border radius */
  padding: 15px; /* Reduced padding */
  text-align: center;
  font-size: 16px; /* Smaller font size */
  font-weight: 400; /* Lighter font weight */
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08); /* Softer shadow */
}

.exam-card a:hover {
  transform: translateY(-6px); /* Reduced lift effect */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
  background: linear-gradient(135deg, #ffffff, #f8f8f8); /* Keep background unchanged */
  border-color: #4a90e2; /* Change border color to blue on hover */
}

.exam-card a:hover::before {
  content: ""; /* Adds visual effect without text */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 5px; /* Matches card's border-radius */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2); /* More prominent shadow effect around border */
  z-index: -1; /* Places the overlay behind the content */
}

/* New Updates */
.announcement {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid white; /* Creates a caret effect */
  animation: typing 8s steps(20) infinite, blink-caret 0.90s step-end infinite; /* Infinite typing and blinking */
  font-size: 22px;
  letter-spacing: 2px;
  color: white; /* Set text color to white */
  margin-left: 100px;
  width: max-content; /* Ensures the element expands based on content */
  position: relative; /* Required for caret position */
  z-index: 1; /* Ensures text is above background elements */
  text-transform: uppercase; /* Makes the text all uppercase */
  font-family: 'Arial', sans-serif; /* Modern font for text */
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.2s ease; /* Smooth transitions */
  background: linear-gradient(90deg, #ff0080, #ff8c00); /* Gradient background */
  background-clip: text; /* Applies gradient to text only */
  -webkit-background-clip: text; /* Webkit support for gradient text */
}

/* Hover effect */
.announcement:hover {
  color: #f0f0f0; /* Lighter color on hover */
  transform: scale(1.1); /* Slightly increase size for emphasis */
}

/* Vibrate effect on hover */
.announcement:hover {
  animation: vibrate 0.2s linear infinite; /* Apply vibration effect */
}

/* Text shadow effect */
.announcement span {
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4); /* Light shadow effect */
  transition: text-shadow 0.3s ease; /* Smooth transition for shadow */
}

/* Glowing effect on hover */
.announcement:hover span {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.7), 0 0 30px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.5);
}

/* Vibrate animation for hover effect */
@keyframes vibrate {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-3px);
  }
  40% {
    transform: translateX(3px);
  }
  60% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(0);
  }
}

/* Typewriter animation */
@keyframes typing {
  0% {
    width: 0; /* Start with no text */
  }
  100% {
    width: 100%; /* Expand to full width when all text is typed */
  }
}

/* Blinking caret animation */
@keyframes blink-caret {
  0% {
    border-color: white; /* Visible at the beginning */
  }
  50% {
    border-color: transparent; /* Makes the caret disappear */
  }
  100% {
    border-color: white; /* Makes the caret appear again */
  }
}



body, html {
  width: 100%;
  height: 100%;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  font-family: Arial, sans-serif;
  background-color: #000000;
}

.header {
  width: 100%;
  text-align: center;
  background-color: #333;
  color: white;
  padding: 2rem;
}

.content {
  width: 100%;
  padding: 1rem;
}

.hero img {
  width: 100%; /* Full width image */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Remove inline spacing */
}

.text {
  margin-top: 1rem;
  font-size: 1rem;
  text-align: center;
}

/* Media Queries */
@media (max-width: 768px) {
  .text {
      font-size: 0.9rem;
  }
}















/* New Updates */
.announcement {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid white; /* Creates a caret effect */
  animation: typing 8s steps(20) infinite, blink-caret 0.90s step-end infinite; /* Infinite typing and blinking */
  font-size: 22px;
  letter-spacing: 2px;
  color: white; /* Set text color to white */
  margin-left: 200px;
  width: max-content; /* Ensures the element expands based on content */
  position: relative; /* Required for caret position */
  z-index: 1; /* Ensures text is above background elements */
  text-transform: uppercase; /* Makes the text all uppercase */
  font-family: 'Arial', sans-serif; /* Modern font for text */
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.2s ease; /* Smooth transitions */
  background: linear-gradient(90deg, #ff0080, #ff8c00); /* Gradient background */
  background-clip: text; /* Applies gradient to text only */
  -webkit-background-clip: text; /* Webkit support for gradient text */
}

/* Hover effect */
.announcement:hover {
  color: #f0f0f0; /* Lighter color on hover */
  transform: scale(1.1); /* Slightly increase size for emphasis */
}

/* Vibrate effect on hover */
.announcement:hover {
  animation: vibrate 0.2s linear infinite; /* Apply vibration effect */
}

/* Text shadow effect */
.announcement span {
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4); /* Light shadow effect */
  transition: text-shadow 0.3s ease; /* Smooth transition for shadow */
}

/* Glowing effect on hover */
.announcement:hover span {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.7), 0 0 30px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.5);
}

/* Vibrate animation for hover effect */
@keyframes vibrate {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-3px);
  }
  40% {
    transform: translateX(3px);
  }
  60% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(0);
  }
}

/* Typewriter animation */
@keyframes typing {
  0% {
    width: 0; /* Start with no text */
  }
  100% {
    width: 100%; /* Expand to full width when all text is typed */
  }
}

/* Blinking caret animation */
@keyframes blink-caret {
  0% {
    border-color: white; /* Visible at the beginning */
  }
  50% {
    border-color: transparent; /* Makes the caret disappear */
  }
  100% {
    border-color: white; /* Makes the caret appear again */
  }
}

/* Mobile-Friendly Adjustments */
@media screen and (max-width: 768px) {
  .announcement {
    font-size: 5px; /* Reduce font size for tablets */
    margin-left: 60px; /* Adjust margin for smaller screens */
  }
}

@media screen and (max-width: 480px) {
  .announcement {
    font-size: 5px; /* Further reduce font size for small mobile screens */
    margin-right: 60px; /* Adjust margin for very small screens */
  }
}







