
.footer{
    background:#111;
    padding:70px 0 20px;
    color:#fff;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
}

.footer-logo{
    color:#06B6D4;
    font-size:32px;
    margin-bottom:20px;
}

.footer-box h3{
    margin-bottom:20px;
}

.footer-box p{
    color:#ccc;
    line-height:1.8;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    text-decoration:none;
    color:#ccc;
    transition:0.3s;
}

.footer-box ul li a:hover{
    color:#06B6D4;
    padding-left:5px;
}

.social-icons{
    display:flex;
    gap:10px;
    margin-top:20px;
}

.social-icons a{
    background:#06B6D4;
    color:#fff;
    padding:10px 14px;
    border-radius:6px;
    text-decoration:none;
    transition:0.3s;
}

.social-icons a:hover{
    background:#fff;
    color:#111;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:50px;
    padding-top:20px;
}

.footer-bottom p{
    color:#aaa;
}


@media(max-width:991px){

    .nav-links,
    .desktop-btn{
        display:none;
    }

    .hamburger{
        display:flex;
    }

    .hero{
        flex-direction:column;
        text-align:center;
        padding-top:50px;
    }

    .hero-text h1{
        font-size:45px;
    }

    .server-box{
        width:320px;
        height:320px;
    }
}

@media(max-width:768px){

    section{
        padding:70px 0;
    }

    .section-title h2,
    .why-content h2{
        font-size:34px;
    }

    .hero-text h1{
        font-size:38px;
    }

    .footer{
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }
}

.logo p{

font-size: 18px !important;

}



.services-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: system-ui, -apple-system, sans-serif;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}


.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.services-tagline {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #2563eb;
  margin-bottom: 12px;
}

.services-header h2 {
  font-size: 2.25rem;
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.25;
}

.services-header p {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.6;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-box {
  background-color: #f8fafc; 
  padding: 35px 25px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  

  background-size: cover;
  background-position: center;
  position: relative; 
  overflow: hidden; 
  color: #ffffff;
}


.service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.8) 60%, rgba(15, 23, 42, 0.95) 100%);
  z-index: 1;
}


.service-box h3,
.service-box p,
.service-box .service-icon-container,
.service-box .service-features {
  position: relative;
  z-index: 2;
}

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.2);
}


.service-icon-container {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 26px;
  height: 26px;
  stroke: #ffffff; 


.holo-blue { background-color: rgba(37, 99, 235, 0.3); box-shadow: 0 0 15px rgba(37, 99, 235, 0.5); }
.holo-purple { background-color: rgba(168, 85, 247, 0.3); box-shadow: 0 0 15px rgba(168, 85, 247, 0.5); }
.holo-emerald { background-color: rgba(16, 185, 129, 0.3); box-shadow: 0 0 15px rgba(16, 185, 129, 0.5); }
.holo-amber { background-color: rgba(245, 158, 11, 0.3); box-shadow: 0 0 15px rgba(245, 158, 11, 0.5); }

.service-box h3 {
  font-size: 1.25rem;
  color: #ffffff; 
  font-weight: 700;
  margin-bottom: 12px;
}

.service-box p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.55;
  margin-bottom: 20px;
}


.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px dashed rgba(226, 232, 240, 0.3); 
  padding-top: 16px;
}

.service-features li {
  font-size: 0.85rem;
  font-weight: 500;
  color: #e2e8f0;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li::before {
  content: "•";
  color: #60a5fa; 
  font-weight: 900;
}


@media (max-width: 768px) {
  .services-header h2 {
    font-size: 1.75rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}


:root {
  --color-primary: #0f172a;
  --color-text: #475569;
  --color-text-light: #64748b;
  --bg-section: #f8fafc;
  --radius-card: 12px;
}

.solutions-section {
  padding: 80px 20px;
  background-color: var(--bg-section);
  font-family: system-ui, -apple-system, sans-serif;
}

.solutions-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.section-header .subtitle {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #2563eb;
  display: block;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.25rem;
  color: var(--color-primary);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--color-text);
  line-height: 1.6;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.solution-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: var(--radius-card);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.icon {
  width: 24px;
  height: 24px;
}

.bg-blue { background-color: #dbeafe; color: #1e40af; }
.bg-purple { background-color: #f3e8ff; color: #6b21a8; }
.bg-emerald { background-color: #d1fae5; color: #065f46; }

.solution-card h3 {
  font-size: 1.35rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 14px;
}

.solution-card p {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1; 
}

.solution-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.solution-link span {
  transition: transform 0.2s ease;
}

.solution-card:hover .solution-link {
  color: #1d4ed8;
}

.solution-card:hover .solution-link span {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.75rem;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}

.services-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: system-ui, -apple-system, sans-serif;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.services-tagline {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #2563eb;
  margin-bottom: 12px;
}

.services-header h2 {
  font-size: 2.25rem;
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.25;
}

.services-header p {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-box {
  background-color: #f8fafc;
  padding: 35px 25px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.service-box:hover {
  transform: translateY(-4px);
  background-color: #ffffff;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.05);
  border-color: #cbd5e1;
}

.service-icon-container {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon {
  width: 26px;
  height: 26px;
}


.bg-blue-tint { background-color: #eff6ff; }
.bg-purple-tint { background-color: #faf5ff; }
.bg-emerald-tint { background-color: #ecfdf5; }
.bg-amber-tint { background-color: #fffbeb; }


.service-box h3 {
  font-size: 1.25rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-box p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 20px;
}


.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px dashed #e2e8f0;
  padding-top: 16px;
}

.service-features li {
  font-size: 0.85rem;
  font-weight: 500;
  color: #475569;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li::before {
  content: "•";
  color: #2563eb;
  font-weight: 900;
}


@media (max-width: 768px) {
  .services-header h2 {
    font-size: 1.75rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/*=========================
SPLIT SECTION BASE STYLES
==========================*/
.split-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.split-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px; /* Space between content and image */
}

/* Content Side Styling */
.split-content {
    flex: 1;
}

.split-content .subheading {
    display: inline-block;
    color: #2563EB;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.split-content h2 {
    color: #0F172A;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
}

.split-content p {
    color: #4b5563;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Optional checklist features inside content */
.feature-list {
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #0F172A;
    font-weight: 600;
    font-size: 16px;
}

.feature-item i {
    color: #10B981; /* Emerald green checkmark */
}

/* CTA Button Styling */
.cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #2563EB;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.cta-btn:hover {
    background: #1D4ED8;
    transform: translateY(-2px);
}

/* Image Side Styling */
.split-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.split-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px; /* Modern rounded corners */
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08); /* Soft drop shadow */
    object-fit: cover;
}

/*=========================
RESPONSIVE MEDIA QUERIES
==========================*/
@media (max-width: 991px) {
    .split-section {
        padding: 60px 0;
    }
    
    .split-container {
        flex-direction: column; /* Stack vertically on tablets and mobile */
        gap: 40px;
    }

    .split-content h2 {
        font-size: 32px;
    }

    .split-image img {
        max-width: 100%; /* Scale nicely on smaller mobile viewports */
    }
}
