* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 2s infinite;
}
.text-left {
    text-align: left !important;
}
.color-33 {
    color: #333 !important;
}
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgb(0 0 0 / 0%);
    /*backdrop-filter: blur(10px);*/
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}
.floating-navbar {
    /* background-color: rgba(255,255,255,0.8);
    border-bottom: 1px solid #eee; */
    background: rgba(255, 255, 255, 0.2);
    /* border-radius: 16px; */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(13.8px);
    -webkit-backdrop-filter: blur(13.8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}
.logo {
  /* font-family: sans-serif;
  font-size: 34px;
  font-weight: bold;
  background: linear-gradient(300deg, #1d2236 0%, #832ddd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; */
}
.logo img {
    background: #fff;
    padding: 5px;
    border-radius: 5px;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-item a {
    /* color: rgb(34, 30, 30); */
    /* color: rgba(255,255,255,0.6); */
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.6;
}
.nav-item a:hover {
    color: #07467a !important;
    opacity: 1;
}
.nav-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #2D87C8 0%, #206BA7 100%);
    /* background: #fff; */
    transition: width 0.3s ease;
}
.nav-item a:hover::after {
    width: 100%;
}
/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    /* background: white; */
    background: #00518f;
    margin: 3px 0;
    transition: 0.3s;
}
.mobile-navbar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -100%;
    width: 100%;
    /* background: #333; */
    /*backdrop-filter: blur(10px);*/
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.3);
    /* border-radius: 16px; */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}
.mobile-navbar-active {
    left: 0;
}
.mobile-nav-menu {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    background: transparent !important;
}
.mobile-nav-menu .nav-item {
    text-align: left;
    padding: 0 40px;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.3); */
}
.mobile-nav-menu .nav-item a {
    font-size: 36px;
    font-weight: 400;
    color: #1d2236 !important;
    padding-bottom: 2rem;
    padding-left: 10px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.mm-btn-close {
    color: #1d2236;
    font-size: 36px;
    text-align: right;
    padding-right: 50px;
}
/* Common Section Styles */
.section {
    padding: 6rem 2rem 4rem;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: inherit;
}
.section-title {
  font-size: 3rem;
  margin-bottom: 0;
  /* background: linear-gradient(135deg, #ebebeb 0%, #6452a4 100%); */
  background: linear-gradient(135deg, #2D87C8 0%, #206BA7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}
.section-subtitle {
    max-width: 500px;
    font-size: 15px;
    color: #999;
    text-align: center;
    margin: 0 auto 3rem;
    
}
.section-title-getInTouch {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #fff;
  /* background: linear-gradient(135deg, #ebebeb 0%, #6452a4 100%); */
  /* background: linear-gradient(135deg, #2D87C8 0%, #206BA7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; */
  text-align: center;
}
/* Home Section */
.home {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: linear-gradient(135deg, #2D87C8 0%, #206BA7 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.05"/><circle cx="90" cy="40" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: slideUp 1s ease-out;
}
.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideUp 1s ease-out 0.2s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    animation: slideUp 1s ease-out 0.4s both;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-primary {
    background: white;
    color: #2D87C8;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
/* About Section */
.about {
    background: #f8f9fa;
}
.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}
.feature-card:hover {
    transform: translateY(-10px);
}
.feature-icon {
    font-size: 2.5rem;
    color: #aaa;
    width: 50px;
    height: 50px;
    opacity: 0.3;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.feature-card:hover h3 {
    color: #2D87C8;
}
.feature-card:hover .feature-icon {
    color: #555;    
    transform: scale(1.1,1.1);
    opacity: 0.8;
}
/* Services Section */
.services {
    background: white;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.service-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: linear-gradient(135deg, #2D87C8 0%, #206BA7 100%);
    transition: left 0.3s ease;
    z-index: 0;
}
.service-card:hover::before {
    left: 0;
}
.service-card:hover {
    transform: translateY(-10px);
    color: white;
}
.service-content {
    position: relative;
    z-index: 1;
}
.service-icon-panel {
    content: '';
    position: absolute;
    top: -100%;
    left: 2.5rem;
    width: 50px;
    height: 90px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    background: #fff;
    transition: top 0.3s ease;
    z-index: 0;
}
.service-card:hover .service-icon-panel {
    top: 0;
}
.service-icon {
    padding: 8px;
    /* border-radius: 30px;
    background-color: #fff; 
    border: 1px solid #eee; */
    width: 50px;
    height: 50px;
    margin-bottom: 15px;   
    /* box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.14);
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.14);
    -moz-box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.14); */
}
.service-icon img {
    width: 100%;
    height: 100%;
}
.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
/* Process Flow */
.process-flow {
    background: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}
.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.process-step {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    min-width: 200px;
    position: relative;
}
.process-step::after {
    content: '→';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #2371ae;
}
.process-step:last-child::after {
    display: none;
}
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: linear-gradient(135deg, #2D87C8 0%, #206BA7 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}
/* Portfolio Section */
.portfolio {
    background: #f8f9fa;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.portfolio-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.portfolio-item:hover {
    transform: scale(1.05);
}
.portfolio-image {
    height: 200px;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: linear-gradient(135deg, #2D87C8 0%, #206BA7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}
.portfolio-content {
    padding: 1.5rem;
}
/* Team Section */
.team {
    background: white;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.team-member {
    text-align: center;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    transition: transform 0.3s ease;
}
.team-member:hover {
    transform: translateY(-10px);
}
.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}
/* Contact Section */
.contact {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: linear-gradient(135deg, #2D87C8 0%, #206BA7 100%);
    color: white;
}
.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.contact-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
}
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.9);
    font-size: 1rem;
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.company-address {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: left;
}
.addr-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.addr-icon {
    width: 35px;
    height: 35px;
    padding: 2px;
    background-color: #fff;
    border-radius: 20px;
    margin-right: 10px;
    margin-top: 4px;
    font-size: 20px;
    color: #2373b0;
    text-align: center;
}
.addr-icon img {
    width: 100%;
    height: 100%;
}
.addr-row p strong {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
      display: flex;
      /* background: blueviolet; */
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-item a {
        color: rgb(255, 255, 255);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .process-steps {
        flex-direction: column;
    }
    .process-step::after {
        content: '↓';
        right: 50%;
        bottom: -30px;
        top: auto;
        transform: translateX(50%);
    }
    .contact-info {
        grid-template-columns: 1fr;
    }
}
/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}