 /* Default CSS Reset */
body, ul {
  margin: 0;
  padding: 0;
}

/* Full height container to control vertical placement */
body, html {
  height: 100%;
  margin: 0;
  background-color: #f0f0f0;
}

body {
  font-family: Manrope, sans-serif;
}

 .image-row {
  display: flex;
  justify-content: center; /* center images horizontally */
  align-items: center;     /* vertical alignment */
  gap: 20px;               /* space between images */
  flex-wrap: wrap;         /* wrap to next line if screen is small */
  padding: 10px;
}
/* Layout container */
.header {
  display: flex;
  justify-content: space-between; /* space between logo, nav, buttons */
  align-items: center;           /* keep everything in the same row */
  padding: 10px 20px;
}

/* Make grid responsive */
.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 boxes in a row on desktop */
  gap: 20px;
}

/* Images scale properly */
.grid-image {
  max-width: 100%;   /* never exceed the box */
  height: auto;      /* keep proportions */
  display: block;
  margin: 0 auto;    /* center inside box */
}
.logo {
  width: 100px;      
  margin-left: 40px; 
  margin-top: 10px;  
}

.second-logo {
   width: 40px;       
  margin-left:42px; 
  margin-top: 10px;  
margin-left: auto;
margin-right: 0;
}

/* Navbar styles */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.navbar a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

/* Buttons */
.auth-buttons {
  display: flex;
  gap: 10px;
}

.login-btn {
  background: transparent;
  border: 1px solid black;
  padding: 6px 14px;
  cursor: pointer;
   border-radius: 5px; 
}
/* Hover effect for login button */
.login-btn:hover {
  background: darkblue;
  color: white;
  border-color: skyblue;
}

.signup-btn {
  background: blue;
  color: white;
  border: none;
  padding: 6px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
   border-radius: 5px; 
}

/* Hover effect for signup button */
.signup-btn:hover {
  background: darkblue;
}

.arrow {
  font-weight: bold;
}

.navbar a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  position: relative;
  padding-bottom: 6px; /* add spacing for underline */
  transition: color 0.3s ease;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; /* now controlled by padding-bottom */
  width: 0;
  height: 2px;
  background-color: orangered;
  transition: width 0.3s ease;
}

.navbar a:hover {
  color: orangered; /* text hover effect */
}

.navbar a:hover::after {
  width: 100%;
}

  .slogan {
  font-weight: 900;       /* very bold */
  font-size: 80px;        /* big strong font */
  text-align: left;       /* align left */
  margin-top: 115px;       /* space from top */
  margin-left: 55px;      /* push from left */
  color: #1B2027;
font-family: "DM Sans";
  line-height: 1.3;       /* adjust spacing between lines */
}

.image-1 {
 width: 641px;
height: 427px;
flex-shrink: 0;
aspect-ratio: 641/427;
float: right;
margin-left: 30px;
object-fit: contain;
margin-top: -400px;
}

.hero-description {
  font-weight: 400;
  font-size: 18px;
  margin-top: 14px;
  color: #444;
  max-width: 420px;   /* 🔑 wraps the text nicely */
  line-height: 1.6; 
  margin-left: 55px; 
  
}
/* Book a Pro Button */
.book-pro-btn {
  margin-top: 20px;           
  margin-bottom: 55px;          
  padding: 10px 20px;         
  background-color: #007BFF;  
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  margin-left: 55px;
  font-family: DM, sans-serif;
  border-radius: 6px;         
  cursor: pointer;
  transition: background-color 0.4s, transform 0.2s;
}

/* hover effect on Book a PRO Button */
.book-pro-btn:hover {
  background-color: #0056b3;  /* darker blue on hover */
  transform: scale(1.07);     /* slight zoom effect */
}

.blue-container {
  background-color: #007BFF; 
  width: 100%;               
  min-height: 400px;         
  padding: 40px 20px;        
  box-sizing: border-box;
  display: flex;             
  flex-direction: column;    
  justify-content: center;   
}

.h2 {
  color: white;              
  font-size: 50px;          
  margin-bottom: 3px;      
  text-align: center;     
  font-family:Manrope, sans-serif;  
}

.c2{   
  text-align: center;    
  margin-bottom: 30px;    
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 boxes in one row */
  gap: 20px;                             /* space between boxes */
  margin-top: 40px;
}


/* Individual grid boxes */

.grid-box {
  background-color: white;
  border-radius: 8px;
  padding: 20px;             /* space inside box */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;    /* vertical center of entire box */
  align-items: center;        /* horizontal center */
  min-height: 200px;          /* taller box for spacing */
  box-sizing: border-box;
}

.grid-image {
  max-height: 250px;          /* limits image height */
  width: auto;                /* maintain aspect ratio */
  border-radius: 6px;
  margin-bottom: 16px;        /* space between image and title */
}

.grid-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.grid-text {
  font-size: 14px;
  color: #555;
  text-align: center;
}

.h3 {
  color: black;              
  font-size: 50px;          
  margin-bottom: 3px;      
  text-align: center;     
  font-family:Manrope, sans-serif;  
}

.steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 50px 0;
}

.step-img {
  max-width: 100%;   /* prevent overflow */
  height: auto;      /* keep proportions */
  display: block;
  margin: 0 auto;    /* center image */
}

.step {
  flex: 1;
  text-align: center;
  padding: 20px;
}


.step-img {
  width: 309px;
  height: 309px;
  margin-bottom: 15px;
}

.button-wrapper {
  display: flex;
  justify-content: center;  /* Center horizontally */
  align-items: flex-start;  /* Start from top */
  padding-top: 20px;       /* Space from top */
}

.get-started-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  background-color: #007BFF;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.get-started-btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.get-started-btn .arrow {
  margin-left: 8px;
  display: inline-block;
  transform: rotate(-20deg); 
  font-size: 18px;
  transition: transform 0.2s;
}

.get-started-btn:hover .arrow {
  transform: rotate(-20deg) translateX(3px);
}

.svg-arrow {
  width: 24px;
  height: 24px;
  fill: white;
  margin-left: 8px;
  transition: transform 0.2s;
}

.h4 {
  color: black;              
  font-size: 50px;          
  margin-bottom: 3px;      
  text-align: center;     
  font-family:Manrope, sans-serif;  
}

/* New subtitle text below button */
.h4 {
  
  color: black;              
  font-size: 50px;          
  margin-bottom: 3px;      
  text-align: center;     
  font-family:Manrope, sans-serif;  
}

.d2{   
  text-align: center;    
  margin-bottom: 30px;    
}

.button-wrapper2 {
  display: flex;
  justify-content: center;  /* Center horizontally */
  align-items: flex-start;  /* Start from top */
  padding-top: 20px;       /* Space from top */
}

.get-started-btn2 {
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  background-color: blue;
  color: #fff;
  font-size: 16px;;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  margin-bottom: 120px;
  margin-top: 80px;
}

.get-started-btn2:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.get-started-btn2 .arrow {
  margin-left: 8px;
  display: inline-block;
  transform: rotate(-20deg); 
  font-size: 18px;
  transition: transform 0.2s;
}

.get-started-btn2:hover .arrow {
  transform: rotate(-20deg) translateX(3px);
}

.svg-arrow2{
  width: 24px;
  height: 24px;
  fill: white;
  margin-left: 8px;
  transition: transform 0.2s;
}


.footer {
  padding: 30px 60px;
  display: flex;
  justify-content: space-between; /* Left icons + right links */
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  gap: 20px;
}

.footer-left a i,
.footer-left a .fab {
  color: #000 !important;   /* force black */
  font-size: 22px;          /* adjust size if needed */
  transition: color 0.3s ease;
}

.footer-left a i:hover,
.footer-left a .fab:hover {
  color: darkblue !important;   /* dark gray on hover */
}
.footer-right {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-group {
  min-width: 150px;
}

.footer-group h4 {
  margin-bottom: 12px;
  font-size: 17px;
  color: black;
}

.footer-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-group ul li {
  margin-bottom: 10px;
}

.footer-group ul li a {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-group ul li a:hover {
  color: darkblue;
}

.footer-left {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;     /* Push icons to the bottom */
  gap: 15px;                 /* Space between icons */
  height: 150px;             /* Adjust height to control vertical space */
  padding-left: 20px;   
  margin-left: 100px;     /* Push to the left */
}

.footer-left a i {
  font-size: 32px;           /* Bigger icons */
  color: #ffffff;            /* White default */
  transition: color 0.3s ease;
}

.footer-left a:hover i {
  color: #007bff;            /* Blue on hover */
}

.footer-right a:hover {
  color: #007bff;            /* Blue on hover */
}

.footer-1 {           /* White text */
  padding: 15px 40px;      /* Space inside footer */
  text-align: left;        /* Align text to the left */
  width: 100%;
  margin-left: 50px;
}


.footer-1 {
  background-color: #333;        /* Dark background */
  color: #fff;                   /* White text */
  padding: 15px 40px;
  width: 100%;
  margin-top: auto;               /* Push footer to bottom if content is short */
}

/* Container for the links */
.footer-links {
  display: flex;
  justify-content: flex-end;     /* Align links to the right */
  gap: 20px;                     /* Space between the two links */
}

/* Link styling */
.footer-links a {
  color: #fff;
  text-decoration: none;         /* Remove underline */
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #007BFF;                /* Optional hover color */
}

.bottom-footer {
font-family: DM, sans-serif;
font-size: 18px;
font-style: normal;
line-height: normal;
margin-left: 70px;
}


/* Section wrapper */
.features-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}

/* Heading */
.features-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

/* Grid layout */
.features-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

/* Left side */
.features-left h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.features-left p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Right side */
.features-right {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  font-size: 24px;
  color: #0073e6;
}

.feature-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}


/* Mobile responsiveness */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 20px;
  }
  
  .logo {
    margin-left: 0;
  }
  
  .second-logo {
    margin-left: 0;
  }
  
 /* Base nav styling */
.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;              /* make them side by side */
  justify-content: center;    /* center horizontally */
  align-items: center;
  gap: 20px;                  /* spacing between links */
  flex-wrap: nowrap;          /* prevent wrapping on mobile */

  
  .slogan {
    font-size: 32px;
    margin-left: 20px;
    margin-top: 40px;
    margin: 0;
  padding: 0;
  display: flex;              /* make them side by side */
  justify-content: center;    /* center horizontally */
  align-items: center;
  gap: 20px;                  /* spacing between links */
  flex-wrap: nowrap;          /* prevent wrapping on mobile */

  }
  
  .hero-description {
    margin-left: 20px;
    font-size: 16px;
    max-width: 300px;
      margin: 0;
  padding: 0;
  display: flex;              /* make them side by side */
  justify-content: center;    /* center horizontally */
  align-items: center;
  gap: 20px;                  /* spacing between links */
  flex-wrap: nowrap;          /* prevent wrapping on mobile */

  
    
  }
  
  .book-pro-btn {
    margin-left: 20px;
  }
  
  .image-1 {
    width: 100%;
    max-width: 250px;
    height: auto;
    float: none;
    margin: 20px auto;
    display: block;
  }
  
  .grid-container {
    grid-template-columns: repeat(1 1fr);
    gap: 15px;
    padding: 0 20px;
  }
  
  .steps {
    flex-direction: column;
    gap: 30px;
  }
  
  .step-img {
    width: 200px;
    height: 200px;
  }
  
  .image-row {
  display: flex;
  justify-content: center; /* center images horizontally */
  align-items: center;     /* vertical alignment */
  gap: 20px;               /* space between images */
  flex-wrap: wrap;         /* wrap to next line if screen is small */
  padding: 10px;
}

  }
  
  .bordered-image {
    width: 250px;
    height: 150px;
  }
  
  .footer {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }
  
  .footer-left {
    margin-left: 0;
    padding-left: 0;
    height: auto;
    justify-content: center;
  }
  
  .footer-right {
    gap: 30px;
    justify-content: center;
  }
  
  .bottom-footer {
    margin-left: 20px;
    font-size: 14px;
  }

  
/* Mobile responsiveness */
@media (max-width: 768px) {
  .Features {
    max-width: 100%;   /* shrink to fit mobile screens */
    width: 100%;      /* fill available width */
    height: auto;     /* maintain aspect ratio */
  }
}

}

@media (max-width: 768px) {
  .image-1 {
    float: none;           /* remove float */
    display: block;        /* allow centering */
    margin: 0 auto;        /* center horizontally */
    max-width: 80%;        /* shrink nicely */
    height: auto;          /* keep proportions */
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr; /* stack boxes vertically */
    text-align: center;        /* center text on mobile */
  }

  .grid-image {
    max-width: 60%;  /* shrink a bit more on mobile */
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .steps {
    flex-direction: column; /* stack vertically */
    align-items: center;   /* center steps */
    gap: 30px;
  }

  .step-img {
    max-width: 70%;  /* shrink image size on mobile */
  }
}

/* ✅ Mobile Responsiveness */
@media (max-width: 768px) {
  .features-container {
    grid-template-columns: 1fr;  /* stack left & right */
    gap: 20px;
  }

  .features-left h3 {
    font-size: 1.5rem;
    text-align: center;
  }

  .features-left p {
    font-size: 0.9rem;
    text-align: center;
  }

  .features-right {
    grid-template-columns: 1fr; /* one feature per row */
    gap: 20px;
  }

  .feature-box {
    align-items: center;
  }

  .feature-icon {
    font-size: 20px;
  }

  .feature-text {
    font-size: 0.9rem;
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
}
.footer-right {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

 