* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    font-family: "Poppins", sans-serif;
}

nav.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f5f5f5;
    padding: 10px 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
}

.navbar-left h1 {
    font-size: 22px;
    font-weight: 700;
    color: #ff6600;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 12px;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #7b4fe9;
}

.dropdown {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    min-width: 180px;
    z-index: 999;
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
}

.dropdown li a:hover {
    background-color: #f0f0f0;
}

.nav-links li:hover .dropdown {
    display: block;
}

.language-selector {
    margin-left: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
}

.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    user-select: none;
}

@media (max-width: 768px) {
    nav.navbar {
        padding: 10px 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        right: 20px;
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
        width: 200px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        width: 100%;
        padding: 10px 0;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        padding-left: 15px;
    }

    .dropdown li a {
        padding: 8px 0;
    }

    .nav-links li:hover .dropdown {
        display: none;
    }

    .nav-links li.active-dropdown .dropdown {
        display: block;
    }

    .language-selector {
        margin-top: 15px;
    }

    .menu-icon {
        display: block;
    }
}

.home {
    padding: 60px 0;
    text-align: center;
}

.about-portion img {
    max-width: 100%;
    height: auto;
}

.about-content {
    margin-top: 20px;
    font-size: 18px;
}

.plan-portion {
    margin-top: 40px;
}

.plans {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.plan-box {
    flex: 1 1 45%;
    background: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
}

.blue-box {
    background: #e0f7fa;
}

.green-box {
    background: #e8f5e9;
}

.img-box img {
    width: 100%;
    height: 200px;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

footer {
    background-color: #f5f5f5;
    padding: 20px;
    font-size: 14px;
}

footer p {
    margin: 10px 0;
}

footer a {
    margin: 0 10px;
    color: #333;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.responsive-footer {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.responsive_copyright {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .responsive-footer {
        display: flex;
        flex-direction: column;
    }

    .responsive_copyright {
        display: flex;
    }
}

/* ---------------------about section-------------------- */

.about-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  flex: 1;
  min-width: 300px;
  margin-bottom: 30px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-content {
  flex: 1;
  min-width: 300px;
  padding: 0 20px;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-span{
    font-size: 36px;
    color: #ff6600;
}

.about-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-item h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 16px;
  color: #666;
}


/* home section code */
/* HOME SECTION */

.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh; /* Full screen */
  background-color: #f5f5f5; /* Light professional background */
  padding:  10px;
}

.hero-content {
  max-width: 600px;
}

.hero-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #0a7981; /* Clean border for professional feel */
}

.hero-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: bold;
}

.hero-content .highlight-glow {
  color: #ff6600;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #555;
}

.btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* Optional: thin line under text */
.hero-content::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #007bff;
  margin: 20px auto 0;
}


/* Container and Section Styling */
.services-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-content {
    margin-bottom: 50px;
}

.services-description {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #444;
    line-height: 1.6;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    width: 300px;
    padding: 30px 20px;
    text-align: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #ff6600;
}

.service-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

.service-link {
    color: #7b4fe9;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #552fd9;
}
/* Color Themes (Optional) */
.ui-design .service-link {
  background-color: #ff6b6b;
}
.web-development .service-link {
  background-color: #4caf50;
}
.app-development .service-link {
  background-color: #2196f3;
}

.ui-design .service-link:hover {
  background-color: #e85c5c;
}
.web-development .service-link:hover {
  background-color: #3e8e41;
}
.app-development .service-link:hover {
  background-color: #1976d2;
}

