:root{
  --accent: #0b74de;
  --dark: #0f1724;
  --muted: #667085;
  --bg: #ffffff;
  --container: 1200px;
  --radius: 12px;
  --glass: rgba(255,255,255,0.6);
}

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

html,body{
  height:100%;
  width: 100%;
  
}
body{
  font-family:'Inter',system-ui,Arial,sans-serif;
  margin:0;
  color:var(--dark);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  line-height:1.4;
  font-size: 15px;
}
a{
  color:var(--accent);
  text-decoration:none
}
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
}
/*
.site-header{
  position:sticky;
  top:0;
  padding: 15px 20px;
  background:rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
  box-shadow:0 1px 6px rgba(10,10,10,0.04); 
  border-bottom:1px solid #eef2f6;
  z-index:60;
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:72px
}*/
.site-title{
  font-weight:700;
  font-size:20px;
  color:var(--dark)
}

/* Header Layout */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between; /* This pushes logo left and nav right */
    align-items: center; /* This vertically centers both */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Styles */
.logo {
    flex-shrink: 0; /* Prevent logo from shrinking */
}

.logo h1 {
    margin: 0;
    font-size: 24px;
}

.logo a {
    text-decoration: none;
    color: #333;
}

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

/* Desktop Menu Styles */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-menu li {
    margin: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    transition: color 0.3s ease;
    display: block;
}

.nav-menu li a:hover {
    color: #0073aa;
}

/* Hamburger Button - Hidden on desktop */
.hamburger {
    display: none;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: #333;
    border-radius: 4px;
    position: absolute;
    transition: transform 0.3s ease;
}

.hamburger-inner::before {
    content: "";
    top: -10px;
    left: 0;    /* this shapes the hamburger */
}

.hamburger-inner::after {
   content: "";
    bottom: -10px;
    left: 0; /* this shapes the hamburger */
}

/* Hamburger Active State */
.hamburger.is-active .hamburger-inner {
    transform: rotate(45deg);
}

.hamburger.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}

.hamburger.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }
    
    /* Show hamburger and hide desktop menu on mobile */
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 1000;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu li a {
        padding: 15px 10px;
        width: 100%;
    }
}


.hero{display:flex;gap:28px;align-items:center;padding:72px 0;}
.hero .heroleft{ flex:1;}
.heroleft a{ color: #fff;}
.hero h1{font-family:'Poppins',sans-serif;font-size:44px;margin:0 0 12px}
.hero p.lead{color:white;font-size:16px;margin:0 0 1px; padding:05px;}
.hero .image{width:420px; border-radius:var(--radius);overflow:hidden ;z-index: 100;box-shadow:0 18px 40px rgba(11,116,222,0.06)}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px}
.card{background:#fff;border:1px solid #f1f5f9;padding:20px;border-radius:12px;transition:transform .18s ease,box-shadow .18s ease;box-shadow:0 6px 18px rgba(15,23,36,0.03)}
.card:hover{transform:translateY(-6px);box-shadow:0 22px 42px rgba(11,116,222,0.08)}
.cta{display:inline-block;background:var(--accent);color:#01435e;border-radius:10px;font-weight:600;box-shadow:0 10px 30px rgba(11,116,222,0.12)}
.service-icon{font-size:22px;margin-right:10px}
.testimonial{padding:18px;background:linear-gradient(180deg,#fff,#fbfdff);border-radius:12px;border:1px solid #eef6ff}
.footer{background:#0f1724;color:#cbd5e1;padding:40px 0;margin-top:60px}
.footer a{color:#cbd5e1}
@media (max-width:980px){
  .hero{flex-direction:column;text-align:center}
  .hero .image{width:100%}
  .nav{display:none}
  .hero h1{font-size:28px}
}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.wpbiz-cta-float{position:fixed;right:11px;bottom:7px;background:transparent;color:#e7edff;display:flex;filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.5));transform:translateY(30px);opacity:0;transition:all .28s}
.wpbiz-cta-float.visible{transform:translateY(0);opacity:1}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;  
}

.tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  font-size: 14px;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  right: 100%;
  opacity:0;
  transition: opacity 2s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Hero Section *
.hero {
  background: linear-gradient(135deg,#062b4f, #0b74de);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  width:100vw;
  margin-left: -120px;
}*/
.hero h2 { font-size: 2.5rem; margin-bottom: 15px; color: #fff; }
.hero p { font-size: 1.2rem; margin-bottom: 20px; }
.btn-primary {
  background: #ff6b35;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
 
}

.btn-primary:hover { background: #e85c2c; }

@media screen and (max-width:768px){
    .btn-primary {
        padding: 6px 12px;
        font-size:13px;
    }
}

.hero.full-width {
  display: block;
  width: 115%;
  align-items: center;
  background: linear-gradient(135deg, #062b4f, #0b74de);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  margin-left: -90px;
  
}
.hero.full-width::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: auto;
  margin: 0 auto;
  padding: 0 20px;
  position: relative; /* Ensure content stays above background */
  z-index: 2;
}

.hero-left {
  flex: 1 1 50%;
  padding: 20px;
}

.hero-right {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;

}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Text Slider */
.text-slider {
  position: relative;
  height: 60px;
  overflow: hidden;
}

.text-slider .slide {
  color:#fff;
  position: absolute;
  opacity: 0;
  transform: translateX(250px);
  transition: opacity 0.6s ease, transform 0.1s step-end;
  font-size: 2.2rem;
  font-weight: bold;
}

.text-slider .slide.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero.full-width {
        margin-left:-47px;
    }
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-left, .hero-right {
    flex: 1 1 100%;
  }
  
  .hero-left h2{
      font-size:20px;
      transform: scaleY(1.75);
      
  }
  
  .text-slider{
      margin-bottom:1px;
  }

  .text-slider .slide {
    font-size: 1rem;
  }
}


/*@media (max-width:768px) {
   .hero { 
  width:100vw;
  margin-left: 0px;
  
}
}*/

/* Section Headings */
section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #062b4f;
}




/* hero rotating image cube*/
.scene {
  -webkit-perspective: 800px;
          perspective: 800px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
  
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.scene:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
          transition:cubic-bezier(1, 0, 0, 1);
}/*
.scene:hover .side {
  opacity: 1;
}

.Scriptcontent{
	line-height:28px;	
}

/* ******************************************************
	Responsive Grids
*********************************************************/

.rt-container {
	margin: 0 auto;
	padding-left:2px;
	padding-right:2px;
}
.rt-row:before, .rt-row:after {
  display: table;
  line-height: 0;
  content: "";
}

.rt-row:after {
  clear: both;
}
[class^="col-rt-"] {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  padding: 0 15px;
  min-height: 1px;
  position: relative;
}


@media (min-width: 768px) {
  .rt-container {
    width: 750px;
  }
  [class^="col-rt-"] {
    float: left;
    width: 49.9999999999%;
  }
  .col-rt-6, .col-rt-12 {
    width: 100%;
  }
  
}

@media (min-width: 1200px) {
	.rt-container {
		width: 1170px;
	}
	.col-rt-1 {
		width:16.6%;
	}
	.col-rt-2 {
		width:30.33%;
	}
	.col-rt-3 {
		width:50%;
	}
	.col-rt-4 {
		width: 67.664%;
	}
	.col-rt-5 {
		width: 83.33%;
	}
	

}

@media only screen and (min-width:240px) and (max-width: 768px){
	 .ScriptTop h1, .ScriptTop ul {
		text-align: center;
	}
	.ScriptTop h1{
		margin-top:0;
		margin-bottom:15px;
	}
	.ScriptTop ul{
		 margin-top:12px;		
	}
	
	.ScriptHeader h1,
	.ScriptHeader h2, 
	.scriptnav ul{
		text-align:center;	
	}
	.scriptnav ul{
		 margin-top:12px;		
	}
	#float-right{
		float:none;	
	}
 [class^="col-rt-"] {
     padding:0px 3px;
     width: 24.9999999999%;
 }
	
}

.cube {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  position: relative;
  width: 300px;
  height: 300px;
  -webkit-animation: rotate 10s ease-in-out infinite;
          animation: rotate 10s ease-in-out infinite;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.cube img{
  max-width: 100%;
    height: 300px;
    display: block;
    margin: 0 auto;
}

.side {
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: #333;
  opacity: .95;
  background-size: cover;
  background-repeat: no-repeat;
}

.back {
  -webkit-transform: translateZ(-150px) rotateX(180deg);
          transform: translateZ(-150px) rotateX(180deg);
  background-image: url(https://source.unsplash.com/featured/?nature);
}

.left {
  -webkit-transform: translateX(-150px) rotateY(90deg);
          transform: translateX(-150px) rotateY(90deg);
  background-image: url(https://source.unsplash.com/featured/?tree);
}

.right {
  -webkit-transform: translateX(150px) rotateY(90deg);
          transform: translateX(150px) rotateY(90deg);
  background-image: url(https://source.unsplash.com/featured/?home);
}

.top {
  -webkit-transform: translateY(-150px) rotateX(90deg);
          transform: translateY(-150px) rotateX(90deg);
  background-image: url(https://source.unsplash.com/featured/?car);
}

.bottom {
  -webkit-transform: translateY(150px) rotateX(270deg);
          transform: translateY(150px) rotateX(270deg);
  background-image: url(https://source.unsplash.com/featured/?work);
}

.front {
  -webkit-transform: translateZ(150px);
          transform: translateZ(150px);
  background-image: url(https://source.unsplash.com/featured/?);
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
  }
  12.5% {
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
  }
  25% {
    -webkit-transform: rotateY(270deg);
            transform: rotateY(270deg);
  }
  37.5% {
    -webkit-transform: rotateY(270deg);
            transform: rotateY(270deg);
  }
  50% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
  62.5% {
    -webkit-transform: rotateX(90deg);
            transform: rotateX(90deg);
  }
  75% {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
  87.5% {
    -webkit-transform: rotateX(270deg);
            transform: rotateX(270deg);
  }
  100% {
    -webkit-transform: rotateX(360deg);
            transform: rotateX(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
  }
  12.5% {
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
  }
  25% {
    -webkit-transform: rotateY(270deg);
            transform: rotateY(270deg);
  }
  37.5% {
    -webkit-transform: rotateY(270deg);
            transform: rotateY(270deg);
  }
  50% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
  62.5% {
    -webkit-transform: rotateX(90deg);
            transform: rotateX(90deg);
  }
  75% {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
  87.5% {
    -webkit-transform: rotateX(270deg);
            transform: rotateX(270deg);
  }
  100% {
    -webkit-transform: rotateX(360deg);
            transform: rotateX(360deg);
  }
}

@media screen and (max-width:768px){
    
    .scene {
  -webkit-perspective: 1200px;
          perspective: 1200px;
        
    }
    
     .cube {
        width:100px;
        height:100px;
    }
    
    .cube img{
       width:150px;
        height:150px;
        display: flex;
    }
    .side{
        width:150px;
        height:150px;
    }
    
    .back {
  -webkit-transform: translateZ(-75px) rotateX(180deg);
          transform: translateZ(-75px) rotateX(180deg);
  background-image: url(https://source.unsplash.com/featured/?nature);
}

.left {
  -webkit-transform: translateX(-75px) rotateY(90deg);
          transform: translateX(-75px) rotateY(90deg);
  background-image: url(https://source.unsplash.com/featured/?tree);
}

.right {
  -webkit-transform: translateX(75px) rotateY(90deg);
          transform: translateX(75px) rotateY(90deg);
  background-image: url(https://source.unsplash.com/featured/?home);
}

.top {
  -webkit-transform: translateY(-75px) rotateX(90deg);
          transform: translateY(-75px) rotateX(90deg);
  background-image: url(https://source.unsplash.com/featured/?car);
}

.bottom {
  -webkit-transform: translateY(75px) rotateX(270deg);
          transform: translateY(75px) rotateX(270deg);
  background-image: url(https://source.unsplash.com/featured/?work);
}

.front {
  -webkit-transform: translateZ(75px);
          transform: translateZ(75px);
  background-image: url(https://source.unsplash.com/featured/?);
}

@keyframes rotate {
  0% {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
  }
  12.5% {
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
  }
  25% {
    -webkit-transform: rotateY(270deg);
            transform: rotateY(270deg);
  }
  37.5% {
    -webkit-transform: rotateY(270deg);
            transform: rotateY(270deg);
  }
  50% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
  62.5% {
    -webkit-transform: rotateX(90deg);
            transform: rotateX(90deg);
  }
  75% {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
  87.5% {
    -webkit-transform: rotateX(270deg);
            transform: rotateX(270deg);
  }
  100% {
    -webkit-transform: rotateX(360deg);
            transform: rotateX(360deg);
  }
}
}

/* Services */
.services .grid, .projects .grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.card:hover { transform: translateY(-5px); }
.card i { font-size: 2rem; color: #0b74de; margin-bottom: 10px; }

/* Projects */
.project-card {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.project-card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}
.btn-link {
  display: inline-block;
  margin-top: 10px;
  color: #0b74de;
  font-weight: bold;
  text-decoration: none;
}
.btn-link:hover { text-decoration: underline; }


/* CTA */
.cta {
  background: #f4f7fa;
  text-align: center;
  padding: 60px 20px;
}

/* Testimonials 
.testimonials {
  background: #062b4f;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.testimonials h2 {
  color: #fff;
  margin-bottom: 40px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  font-style: italic;
}
.testimonial-card h4 {
  margin-top: 15px;
  font-weight: bold;
  color: #ffb347;
}*/

.testimonial-cover{
  background: #ffffff;
  text-align: center;
}
.testimonial-cover h1{
  color: rgb(0, 0, 0);
}

.testimonials {
  background: #fff;
  padding: 50px 20px;
  text-align: center;
  color: green;
  
}



.testimonial-slider {
  max-width: 500px;
  height:150px;
  margin: auto;
}
.swiper-slide {
  background:#fff;
  display: block;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  font-style: italic;
}

.swiper-slide h4 {
  margin-top: 15px;
  font-weight: bold;
  color: #ffb347;
}
.swiper-button-next,
.swiper-button-prev {
  color: #005bb5;
}

.cta-banner {
  background: linear-gradient(135deg, #0073e6, #005bb5);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.cta-banner .btn-primary {
  background: #fff;
  color: #005bb5;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
.cta-banner .btn-primary:hover {
  background: #f0f0f0;
}



/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #062b4f, #0b74de);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.page-hero h1 { font-size: 2.5rem; margin-bottom: 10px; }
.page-hero p { font-size: 1.2rem; }

/* Services Page Cards */
.services-list .grid {
  display: grid;
  gap: 20px;
  margin: 40px 0;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.services-list .card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.services-list .card:hover { transform: translateY(-5px); }
.services-list .card i {
  font-size: 2.2rem;
  color: #0b74de;
  margin-bottom: 15px;
}


/* Services Section */
.services-section {
    padding: 80px 20px;
    background: #f9fafc;
    text-align: center;
}
.services-section .section-title {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}
.services-section .section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #0073aa;
}
.service-card p {
    font-size: 16px;
    color: #555;
}
.service-icon {
    font-size: 40px;
    color: #0073aa;
    margin-bottom: 15px;
    transition: color 0.3s;
}
.service-card:hover .service-icon {
    color: #005f87;
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}
.portfolio-section .section-title {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}
.portfolio-section .section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.portfolio-item {
    background: #f9fafc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.portfolio-img img {
    width: 100%;
    display: block;
    border-bottom: 3px solid #0073aa;
}
.portfolio-item h3 {
    font-size: 20px;
    margin: 15px 0 5px;
    color: #0073aa;
}
.portfolio-item p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}


/* About Us Section */

.about-section {
    padding: 80px 20px;
    background: #f9fafc;
}
.about-container {
 
    display: inline-block;    
    width:100%;    
    gap: 40px;
    margin-top:15px;
    margin-bottom:5px;
}
.about-image img {
  position:relative ;
    width: 45%;
    height: 300px;
    align-items: center;
    float: left;
    
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.about-content .section-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}
.about-content p {
  position:relative ;
    font-size: 16px;
    width: 45%;
    float: right;
    color: #555;
    line-height: 1.6;
}
.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}
.about-list li {
    font-size: 16px;
    color: #444;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}
.about-list i {
    color: #0073aa;
    margin-right: 10px;
    font-size: 18px;
}
@media screen and (max-width: 768px) {
  
.about-section {
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-container {
            display: flex;
            flex-direction: column;
            
        }

        .about-image {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .about-image img {
            width: 100%;
            max-width: 500px;
            height: 300px;
            object-fit: fill;
        }

        .about-content {
            width: 100%;
        }

        .about-content .section-title {
            text-align: center;
        }

        .about-content p {
            width:100%;
            float:none;
            text-align: justify;
        }

        .about-list {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
        }

        .about-list li {
            font-size: 16px;
            color: #444;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }

        .about-list i {
            color: #0073aa;
            margin-right: 10px;
            font-size: 18px;
        }

        .btn {
            display: inline-block;
            background: #0073aa;
            color: white;
            padding: 12px 24px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background: #005a87;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
}
        

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}
.contact-section .section-title {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}
.contact-section .section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
    text-align: left;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 5px rgba(0,115,170,0.2);
}
.contact-form button {
    align-self: flex-start;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0073aa;
}
.contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #444;
}
.contact-info i {
    color: #0073aa;
    margin-right: 8px;
}


/* New Contact Form Styling */
.contact-form {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0073aa; /* WordPress blue */
  outline: none;
  box-shadow: 0 0 4px rgba(0,115,170,0.4);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background: #0073aa;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.contact-form button:hover {
  background: #005f8d;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .contact-form {
    margin: 20px;
    padding: 15px;
  }
  .contact-form button {
    width: 100%;
  }
}

button#submitBtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

button#submitBtn .spinner {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #0073aa; /* WP blue */
  border-radius: 50%;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*new contact page*/

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}
.contact-container h2 {
  text-align: center;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 15px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 16px;
  border-radius: 4px;
}
button#submitBtn {
  width: 100%;
  padding: 12px;
  background: #0073aa;
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 4px;
  position: relative;
}
button#submitBtn:disabled {
  background: #888;
  cursor: not-allowed;
}
.spinner {
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-top: 3px solid transparent;
  border-radius: 50%;
  margin-left: 10px;
  display: inline-block;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.form-message {
  margin-top: 15px;
  padding: 10px;
  display: none;
  border-radius: 4px;
}
.form-message.success {
  background: #d4edda;
  color: #155724;
}
.form-message.error {
  background: #f8d7da;
  color: #721c24;
}



/*projects section*/

.services-archive .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.single-service {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}
.single-service h1 {
  margin-bottom: 20px;
}
.single-service .service-image {
  margin-bottom: 20px;
}

.read-more{
  background-color: #0073e6;
  padding: 5px 8px;
  border-radius: 15px;
  color: white;
  font-size: 13px;
}
.read-more:hover{
  display:block;
  background-color: #035eb9;
  color: white;
  transition:all 0.3s ease;
  transform:scaleZ(1.1);
}

.projects-archive .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.project-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.single-project {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}
.single-project h1 {
  margin-bottom: 20px;
}
.single-project .project-image {
  margin-bottom: 20px;
}

.projects-archive {
  padding: 40px 20px;
}

.project-filters ul {
  list-style: none;
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  padding: 0;
}

.project-filters li a {
  padding: 8px 15px;
  border: 1px solid #ccc;
  border-radius: 20px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
}

.project-filters li a:hover {
  background: #333;
  color: #fff;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.project-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: box-shadow 0.3s;
}

.project-card:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.project-title {
  font-size: 18px;
  margin-top: 10px;
}

/*faq section*/
.faq {
  max-width: 90%;
  margin: 50px auto;
  padding: 0 20px;
  background-color: #fff;
  border-radius: 25px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 20px;
}

.faq h4 {
  text-align: center;
  margin-bottom: 20px;
}


.faq-item {
  border-bottom: 1px solid #ddd;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #f6f9ff;
  border: none;
  padding: 15px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #e8f1ff;
}

.faq-answer {
  display: flex;
  flex-direction: row;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 15px;
  font-size: 16px;
  line-height: 2;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-image{
  width: 20%;
  
}
.faq-image img{
  width:100%;    
  height: 25vh;
  padding:5px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  
}

.faq-right{
display: flex;
width: 80%;
height: fit-content;
text-align: justify;
margin-bottom: 5px;
padding-bottom: 10px;

}

.faq-answer.open {
  padding: 15px;
  height:auto;
}

.faq-question .icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-question.active .icon {
  transform: rotate(45deg);
}

@media screen and (max-width:768px){
    
.faq-answer {
    display: flex;
    flex-direction: column;
    line-height: 1.9;
  }
.faq-image{
    width:100%;
    align-items: center;
  }
.faq-right{
    width: 100%;
    height:70vh;
    padding: 5px 10px;
  }
    
.faq-answer.open {
    padding: 15px;
    height:auto;
}

.faq-question span{
    
}

}


/* Footer */
.site-footer {
    background: #222;
    color: #ddd;
    padding: 60px 20px 20px;
    font-size: 15px;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}
.footer-about h3,
.footer-links h3,
.footer-social h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}
.footer-about p {
    color: #bbb;
    line-height: 1.6;
}
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links ul li {
    margin-bottom: 10px;
}
.footer-links ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links ul li a:hover {
    color: #0073aa;
}
.footer-social .social-icons a {
    color: #ddd;
    font-size: 20px;
    margin-right: 12px;
    transition: color 0.3s;
}
.footer-social .social-icons a:hover {
    color: #0073aa;
}
.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #444;
    color: #888;
    font-size: 14px;
}

.scroll-to-top {
    position: fixed;
    bottom: 70px;
    right: 13px;
    width: 35px;
    height: 35px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-size: 17px;
    padding: 5px 5px;
    display: none; /* Hidden by default */
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    display: block;
        
}

.scroll-to-top:hover {
    background: #5c5c5c;
    transform: translateY(-3px);
}
/* old button*/
/*.backbtn {
    
    padding:7px 10px;
    border:none ;
    background:#fff;
    border-radius:5px;
    margin:20px;
    box-shadow:0px 1px 7px 0px #ccc;
}

.backbtn:hover {
    box-shadow:0px 1px 7px 3px #ccc;
}*/

.backbtn {
  display: inline-block; 
  margin-left:5%;
  padding: 12px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
  background: transparent;
  color: #2b6cb0;
  border: 2px solid #2b6cb0;
}

.backbtn:hover {
  background: #2b6cb0;
  color: white;
  transform: translateY(-2px);
}

.forwbtn{
    
    background-color: #0b74de;
    border-radius: 25px;
    color: white;
    padding:10px 11px;
    font-weight: 300;
    font-size: 13px;
    
    margin-left: 20vw;
    }
    
.forwbtn:hover{
    background-color: #023466;
    transform: translateY(5px);
    box-shadow:0 1px 6px rgba(10,10,10,0.9);
        
}

/*service page price details*/

/* Service Filters *
.service-filters {
    text-align: center;
    margin: 30px 0;
}

.filter-btn {
    padding: 12px 24px;
    margin: 0 10px;
    border: 2px solid #007cba;
    background: white;
    color: #007cba;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background: #007cba;
    color: white;
}

/* Service Grid Layout *
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    position: relative;
}

.service-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
    color: white;
}

.service-badge.local {
    background: #4CAF50;
}

.service-badge.global {
    background: #2196F3;
}

.service-badge.both {
    background: #FF9800;
}

.service-content {
    padding: 20px;
}

.service-content h2 {
    margin: 0 0 15px 0;
    font-size: 1.4em;
}

.service-content h2 a {
    color: #333;
    text-decoration: none;
}

.service-content h2 a:hover {
    color: #007cba;
}

.service-excerpt {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007cba;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #005a87;
}
   */     
        