
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
    background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

/* Container */
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1001;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  background-color: transparent;
}

.nav-menu a {
  color: #333;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(0, 0, 0, 0.05);
}

.nav-menu a[aria-current="page"] {
  color: #0078D7;
  position: relative;
}

.nav-menu a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  width: 60%;
  height: 3px;
  margin-inline: auto;
  background: #0078D7;
  border-radius: 2px;
}

/* Get Started Button */
.nav-button {
  background-color: #0078D7;
  color: white;
  border: none;
  padding: 8px 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease;
}

.nav-button:hover {
  background-color: #005bb5;
  transform: scale(1.05);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 100%;
    left: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
    padding: 0 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    max-height: 500px;
    padding: 1rem;
  }

  .nav-menu li {
    margin-bottom: 0.75rem;
    width: 100%;
  }

  .nav-menu a {
    width: 100%;
    display: block;
  }

  .logo {
    flex: 1;
  }

  header .container {
    flex-direction: row;
    align-items: center;
  }
}


/* Main Banner */
.main-bar {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 80px 30px;
  min-height: 60vh;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  animation: bannerSlide 15s infinite;
  text-align: left;
  overflow: hidden;
}

/* Overlay */
.main-bar::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 191, 255, 0.2));
  z-index: 0;
}

/* Banner Animation */
@keyframes bannerSlide {
  0% { background-image: url('../images/banner1.jpg'); }
  33.33% { background-image: url('../images/banner2.jpg'); }
  66.66% { background-image: url('../images/banner3.jpg'); }
  100% { background-image: url('../images/banner1.jpg'); }
}

/* Content */
.main-bar-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 100%;
  padding-top: 100px;
  animation: fadeInUp 1s ease-out;
}

/* Entrance Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Heading */
.main-heading {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(to right, #00bfff, #e957ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph */
.main-description {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #f0f0f0;
}

/* Features List */
.main-bar-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.main-bar-features li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 6px;
}

/* Icon */
.ok-icon {
  width: 20px;
  height: 20px;
}

/* Buttons */
.main-button {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.main-button button {
  padding: 14px 28px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.main-bar-button1 {
  background: linear-gradient(to right, #0953ac, #00bfff);
  color: white;
}

.main-bar-button1:hover {
  transform: scale(1.05);
  background: linear-gradient(to right, #073f8c, #0099cc);
}

.main-bar-button2 {
  background: linear-gradient(to right, #e957ff, #9b00ff);
  color: white;
  border: 2px solid white;
}

.main-bar-button2:hover {
  background: linear-gradient(to right, #c700ff, #6a00ff);
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-bar {
    padding: 40px 15px;
    min-height: auto;
  }

  .main-heading {
    font-size: 2.2rem;
  }

  .main-description {
    font-size: 1rem;
  }

  .main-button {
    flex-direction: column;
    align-items: stretch;
  }

  .main-button button {
    width: 100%;
    max-width: 100%;
  }
}

.main-bar {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 60px 30px;
  min-height: 60vh;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-size: cover;
  background-position: center;
  animation: bannerSlide 15s infinite;
  text-align: left;
  overflow: hidden;
}

.main-bar {
  scroll-margin-top: 60px;
}


/* Overlay */
.main-bar::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

/* Banner Animation */
@keyframes bannerSlide {
  0% { background-image: url('../images/banner1.jpg'); }
  33.33% { background-image: url('../images/banner2.jpg'); }
  66.66% { background-image: url('../images/banner3.jpg'); }
  100% { background-image: url('../images/banner1.jpg'); }
}

/* Content */
.main-bar-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 100%;
  animation: fadeInUp 1s ease-out;
}

.main-bar-content {
  padding-top: 60px; /* Adjust based on your nav bar height */
}


/* Entrance Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Heading */
.main-heading {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.main-heading span {
  color: #00bfff;
}

/* Paragraph */
.main-description {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

/* Features List */
.main-bar-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.main-bar-features li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 10px;
}

/* Icon */
.ok-icon {
  width: 20px;
  height: 20px;
}

/* Buttons */
.main-button {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.main-button button {
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-bar-button1 {
  background-color: #0953ac;
  color: white;
}

.main-bar-button1:hover {
  transform: scale(1.05);
  background-color: #073f8c;
}

.main-bar-button2 {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.main-bar-button2:hover {
  background-color: #e957ff;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-bar {
    padding: 40px 15px;
    min-height: auto;
  }

  .main-heading {
    font-size: 2rem;
  }

  .main-description {
    font-size: 1rem;
  }

  .main-button {
    flex-direction: column;
    align-items: stretch;
  }

  .main-button button {
    width: 100%;
    max-width: 100%;
  }
}


    /* Section Container */
    
    .main-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
        text-align: center;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    }

    .main-section h2 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .main-section h2 span {
        color: #0078D7;
    }

    .main-section p {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 40px;
        line-height: 1.6;
    }

    /* Grid Layout for Boxes */
    .section-block-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;

    }

    /* Individual Service Box */
    .section-block {
        background: #fff;
        border: 1px solid #0078D7;
        border-radius: 12px;
        padding: 30px 25px;
        text-align: left;
        transition: all 0.3s ease;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);


        transition: all 0.3s ease;


    }

    .section-block:hover {
        box-shadow: 0 8px 20px rgba(43, 58, 233, 0.1);
        border-color: #0078D7;
        transform: translateY(-5px) scale(1.02);

    }

    /* Icon Styling */
    .section-icon {
        margin-bottom: 20px;
    }

    .section-icon svg {
        width: 40px;
        height: 40px;
        fill: #0078D7;
    }

    /* Title and Description */
    .section-block h3 {
        font-size: 1.6rem;
        margin-bottom: 10px;
        color: #222;
    }

    .section-block p {
        font-size: 1rem;
        font-weight: 200px;
        color: #555;
        margin-bottom: 20px;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        line-height: 1.5;
    }

    /* Footer Tags */
    .section-block-footer {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .section-block-footer-point {
        background-color: #dae9ff;
        color: #0078D7;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 500;
    }

    .section-block-footer-point:hover {
        background-color: #b4cae1;


    }

    .clients-projects {
        padding: 0px 0px;
        background-color: #f9f9f9;
        text-align: center;
    }

    .clients-header h2 {
        font-size: 3.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-bottom: 10px;
    }

    .clients-header h2 span {
        color: #0078D7;
    }

    .clients-header p {
        font-size: 1.6rem;
        color: #555;
        margin-bottom: 40px;
    }

    /* Marquee Container */
    .clients-marquee {
        overflow: hidden;
        position: relative;
        width: 120%;
    }

    /* Track that moves */
    .clients-track {
        display: flex;
        width: max-content;
        animation: scrollMarquee 30s linear infinite;
        gap: 80px;
        align-items: center;
    }

    /* Images inside marquee */
    .clients-track img {
        height: 120px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .clients-track img:hover {
        transform: scale(1.1);
    }

    /* Keyframes for scrolling */
    @keyframes scrollMarquee {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .about {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .about-left {
        flex: 1 1 55%;
    }

    .about-left h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .about-left h2 span {
        color: #0078D7;
    }

    .about-left p {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 20px;
        line-height: 1.6;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .about-left h3 {
        font-size: 1.4rem;
        margin-top: 30px;
        margin-bottom: 15px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* Core Values Grid */
    .core-values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        gap: 15px;
        margin-bottom: 30px;
    }

    .core-value-card {
        background-color: #f0f4f8;
        padding: 12px 16px;
        border-radius: 8px;
        font-weight: 500;
        color: #333;
    }

   
    /* Right Side Stats */
    .about-right {
        flex: 1 1 40%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .client-block {
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        padding: 20px;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);

        

    }

    .client-block:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        border-color: #0078D7;
        transform: translateY(-4px);
    }

    /* Client Block Text */
    .client-blockname1 {
        font-size: 2rem;
        margin-bottom: 10px;
        
    }

    .client-blockname2 {
        font-size: 1.5rem;
        font-weight: bold;
        color: #0078D7;
    }

    .client-blockname3 {
        font-size: 1rem;
        font-weight: 600;
        margin: 5px 0;
    }

    .client-blockname4 {
        font-size: 0.9rem;
        color: #666;

    }
    #contact-wrapper {
  padding: 60px 20px;
  background-color: #0078D7;
  font-family: 'Segoe UI', sans-serif;
}

.contact-wrapper h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contact-wrapper h2 span {
  color: #e91e63;
}

.contact-wrapper p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: #555;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.contact-left,
.contact-right {
  flex: 1 1 400px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.contact-left h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-left p {
  margin-bottom: 20px;
  color: #666;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button[type="submit"],
.cta-button {
  background-color: #e91e63;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

button[type="submit"]:hover,
.cta-button:hover {
  background-color: #d81b60;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #f5f5f5;
  padding: 15px;
  border-radius: 8px;
}

.icon {
  font-size: 1.5rem;
  color: #e91e63;
  flex-shrink: 0;
}

.info-content h4 {
  margin: 0 0 5px;
  font-size: 1.1rem;
  color: #333;
}

.info-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

.map-box {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.cta-box {
  margin-top: 30px;
  text-align: center;
}

.cta-box h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.cta-box p {
  margin-bottom: 15px;
  color: #666;
}

.cta-button {
  background-color: #e91e63;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-wrapper h2 {
    font-size: 2rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .cta-button {
    width: 100%;
  }
}

    
/* Initial hidden state 
.contact-left, .contact-right {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease-out;
}

/* Slide-in effect 
.contact-left.slide-in, .contact-right.slide-in {
  opacity: 1;
  transform: translateX(0);
}

/* Optional slide-out effect 
.contact-left.slide-out, .contact-right.slide-out {
  opacity: 0;
  transform: translateX(100px);
}
*/

.main-footer {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #f0f0f0;
  padding: 4rem 1rem 2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-block h3,
.footer-block h4 {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  border-bottom: 2px solid #00bcd4;
  padding-bottom: 0.5rem;
}

.footer-block p,
.footer-block span {
  color: #dcdcdc;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #dcdcdc;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #00bcd4;
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-form input[type="email"] {
  padding: 0.75rem 1rem;
  border: 1px solid #444;
  border-radius: 6px;
  background-color: #1c1e22;
  color: #fff;
  font-size: 1rem;
  width: 100%;
}

.newsletter-form .nav-button {
  background-color: #00bcd4;
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.newsletter-form .nav-button:hover {
  background-color: #0097a7;
  transform: scale(1.05);
}

.footer-content {
  margin-top: 2rem;
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #ccc;
}

.social-icons a {
  margin: 0 8px;
  color: #f0c330;
  font-size: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
  transform: scale(1.2);
}

.crafted-by {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
}

.crafted-by a {
  color: #25D366;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.crafted-by a:hover {
  color: #128C7E;
}

.pulse {
  color: red;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 0.6; }
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 24px;
  padding: 14px;
  border-radius: 50%;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.whatsapp-float i {
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter-form {
    align-items: center;
  }

  .footer-block {
    margin-bottom: 2rem;
  }

  .social-icons {
    margin-top: 1rem;
  }
}
