@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Dancing+Script:wght@400..700&family=Great+Vibes&family=Marcellus&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Saira:ital,wght@0,100..900;1,100..900&family=Satisfy&family=Share+Tech&display=swap');


html,body{
  scroll-behavior:smooth;
}

:root{

  --navy:#071747;

  --gold:#d99212;

  --light:#f7f9fd;

  --border:#e5e9f2;

  --green:#00a862;

}

*{

  box-sizing:border-box;

  margin:0;

  padding:0;

}

body{

  font-family:Arial, sans-serif;

  color:var(--navy);

  background:white;

  line-height:1.5;

}
.container {
    width: 94%;
    max-width: 1240px;
    margin: auto;
}

/* Top Bar */

.top-bar {
    background: #0d1b3d;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
}

.top-bar .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.top-bar i,
.top-bar small {
    color: #d99212;
}

/* Header */

header {
    padding: 20px 0;
    background: #fff;
}

.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 300px;
    height:200px;
   
    object-fit: cover;
}

.logo h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1;
    font-family: 'playfair', serif;
}

.logo span {
    color: #d99212;
}

.logo small {
    display: block;
    margin-top: 5px;
    color: var(--gold);
    font-family: "Dancing Script", cursive;
    font-size: 18px;
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
}
nav a:hover {
    color: #d99212;
    border-bottom: 1px solid #d99212;
    transition: color 0.3s, border-bottom 0.3s;
}
/* Hide checkbox */
#menu-toggle {
    display: none;
}

/* Hide hamburger on desktop */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #0d1b3d;
}

/* Desktop nav */
.main-nav {
    display: flex;
    gap: 25px;
}

.main-nav a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {

    .hamburger {
        display: block;
        position: absolute;
        top: 30px;
        right: 20px;
        z-index: 1000;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #0d1b3d;
        margin-top: 15px;
        border-radius: 8px;
        overflow: hidden;
    }

    .main-nav a {
        color: #fff;
        padding: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    #menu-toggle:checked ~ .main-nav {
        display: flex;
    }

    .header-grid {
        position: relative;
    }
}
.header-contact {
    text-align: right;
}

.header-contact strong {
    display: block;
    font-size: 24px;
    color: #0d1b3d;
}

.header-contact p {
    margin: 5px 0 15px;
    font-size: 12px;
}
.header-contact .free {
    color: var(--gold) ;
    font-weight: bold;
    text-transform: uppercase;
}
.header-contact .contact-number {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}
.header-contact .contact-number i {
    color: var(--gold);
    font-size: 18px;
}

.btn-gold {
    display: inline-block;
    padding: 12px 24px;
    background: #d99212;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* Tablet */

@media (max-width: 992px) {
    .header-grid {
        flex-direction: column;
        text-align: center;
    }

    .header-contact {
        text-align: center;
    }

    nav {
        justify-content: center;
    }
}

/* Mobile */

@media (max-width: 768px) {

    .logo {
        flex-direction: column;
        text-align: center;
    }

    .logo img {
        width: 70px;
        height: 70px;
    }

    .logo h2 {
        font-size: 22px;
    }

    nav {
        gap: 15px;
        justify-content: center;
    }

    .header-contact strong {
        font-size: 20px;
    }

    .btn-gold {
        width: 100%;
        max-width: 300px;
    }
}
.btn{

  display:inline-block;

  padding:14px 22px;

  border-radius:6px;

  text-decoration:none;

  font-weight:bold;

  text-transform:uppercase;

  font-size:13px;

}

.btn-gold{

  background:var(--gold);

  color:white;

  display: flex;

  justify-content: center;

  align-items: center;

}

.btn-outline{

  border:2px solid var(--gold);

  color:var(--navy);

  background:white;

  width:100%;

  text-align:center;

  margin-top:18px;

}
.hero {
  overflow: hidden;
}

.hero-grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: 55px;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 .word-1 {
  color: var(--navy);
  font-size: 80px;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  font-size: 20px;
  font-weight: bold;
  max-width: 560px;
  margin-bottom: 24px;
  text-align: justify;
  padding: 10px;
}

.checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
  font-weight: bold;
  padding: 10px;
}

.checks span::before {
  content: "✓";
  color: var(--gold);
  margin-right: 8px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-actions .button {
  background: var(--gold);
  color: white;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 6px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.phone-btn {
  background: white;
  border: 1px solid #ddd;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
}

.phone-btn small {
  display: block;
  font-size: 14px;
  margin-top: 4px;
  color: red;
  text-align: center;
  text-transform: uppercase;
}

.hero-image {
  position: relative;
  min-height: 400px;
  border-radius: 0 70px 0 70px;
  overflow: hidden;
  background-image: 
    linear-gradient(to right, rgba(251, 240, 240, 0.6) 0%, rgba(243, 240, 240, 0.2) 50%, rgba(210, 200, 200, 0) 100%),
    url("./C21B6B41-D59C-4CD0-94C6-86BFCDDBFC6A.jpeg");
  background-size: cover;
  background-position: center;
}

.experience {
  position: absolute;
  right: 45px;
  bottom: 40px;
  background: var(--navy);
  color: var(--gold);
  border: 3px solid var(--gold);
  padding: 25px;
  font-family: "Dancing Script", cursive;
  border-radius: 12px;
  text-align: center;
  width: 210px;
}

.experience strong {
  font-size: 64px;
  display: block;
  line-height: 1;
}

/* ===================== RESPONSIVE DESIGN ===================== */

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 48px;
  }
  .hero h1 .word-1 {
    font-size: 68px;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 40px;
    padding: 20px 0;
  }

  .hero h1 {
    font-size: 42px;
    text-align: center;
  }

  .hero h1 .word-1 {
    font-size: 58px;
    display: block;
  }

  .hero p {
    font-size: 18px;
    text-align: center;
    max-width: 100%;
  }

  .checks {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image {
    min-height: 380px;
    border-radius: 0 50px 0 50px;
  }

  .experience {
    right: 30px;
    bottom: 30px;
    padding: 20px;
    width: 180px;
  }

  .experience strong {
    font-size: 52px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero h1 .word-1 {
    font-size: 48px;
  }
  .hero h1 .br-1{
    display: none;
  }
  .hero-image {
    min-height: 320px;
    border-radius: 0 40px 0 40px;
  }

  .experience {
    right: 20px;
    bottom: 25px;
    padding: 18px;
    width: 160px;
  }

  .experience strong {
    font-size: 46px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Trust section */
.trust-bar {
  background: linear-gradient(90deg, #071a3a 0%, #0b2a5b 100%);
  color: #fff;
  height: 85px;
  display: flex;
  align-items: center;
  margin: 20px;
  border-radius: 10px;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 25px;
}

/* ITEM */
.trust-item {
  display: flex;
  /* align-items: center; */
  gap: 12px;
  flex: 1;
  /* justify-content: center; */
  margin-left: 40px;
}

/* ICONS */
.trust-item i {
  font-size: 28px;
  color: #f5b301;
}

.google-icon i {
  font-size: 40px;
  color: #f5b301;
}
/* TEXT BLOCK */
.text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.text strong {
  font-size: 16px;
  font-weight: 700;
}

.text span {
  font-size: 12px;
  opacity: 0.9;
}

/* RATING SPECIAL */
.rating {
  flex-direction: column;
  gap: 4px;
}
.stars{
  color: #f5b301;
}
.stars i {
  font-size: 12px;
  color: #f5b301;
  margin-right: 2px;
}

/* DIVIDER */
.divider {
  width: 1px;
  height: 45px;
  background: rgba(255,255,255,0.18);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .trust-bar {
    height: auto;
    padding: 15px 0;
  }
  .google-icon {
    display: none;
  }
  .trust-inner {
    flex-wrap: wrap;
    gap: 15px;
  }

  .divider {
    display: none;
  }
 
  .trust-item {
    flex: 1 1 45%;
    justify-content: flex-start;
    padding: 10px;
  }
}

@media (max-width: 600px) {
  .trust-item {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
}



.section{

  padding:70px 0;

}

.section-title{

  text-align:center;

  margin-bottom:40px;

}

.section-title h2{

  font-family:Georgia, serif;

  font-size:40px;

  border-bottom: 4px solid #f59e0b;
    
  padding-bottom: 5px;
    
  display: inline-block;

}
.section-title p{

  font-size:16px;
  margin-top:12px;

}
.services{

  display:grid;

  grid-template-columns:repeat(5,1fr);

  gap:25px;

}




.card{

  background:white;

  border:1px solid var(--border);

  border-radius:10px;

  padding:30px;

  text-align:center;

  box-shadow:0 10px 25px rgba(0,0,0,.06);

}
.card:hover{
  transform: translateY(-5px);
  transition: transform 0.3s;
}
.icon{

  width:72px;

  height:72px;

  background:var(--navy);

  color:var(--gold);

  border-radius:50%;

  display:flex;

  align-items:center;

  justify-content:center;

  font-size:30px;

  margin:0 auto 18px;

}

.card h3{

    font-family: "DM Sans", sans-serif;

  text-transform:uppercase;

  margin-bottom:12px;

}

.card a{

  color:var(--gold);

  text-decoration:none;

  font-weight:bold;

  font-size:13px;

}
/* why section */
.why{

  background:var(--navy);

  color:white;

  padding:65px 0;

  text-align:center;

}

.why h2{

  font-family:Georgia, serif;

  font-size:38px;

  margin-bottom:40px;

}

.why-grid{

  display:grid;

  grid-template-columns:repeat(5,1fr);

  gap:25px;


}
.why-grid div p{
  font-size:14px;

  margin-top:10px;
}
.why-grid div i{

  font-size:40px;

  color:var(--gold);

  margin-bottom: 20px;

}
.why-grid div{
  padding:20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
}
.why-grid div:hover{
  background: rgba(255,255,255,0.1);
  transition: background 0.3s;
}
.why strong{
  font-family: "DM Sans", sans-serif;

  display:block;

  font-size:25px;

  color:white;

}

.why span{

  color:var(--gold);

  font-weight:bold;

  font-size:14px;

}
/* review section */
.review-heading{

  display:flex;

  justify-content:space-between;

  align-items:center;

  margin-bottom:30px;

}

.review-heading h2{

  font-family:Georgia, serif;

  font-size:36px;

}

.google{

  font-weight:bold;

}

.review-grid{

  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:30px;

}

.review{

  border:1px solid var(--border);

  border-radius:10px;

  padding:28px;

  box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.review p{

  font-style:italic;

  margin:15px 0;

}



.testimonials {
  padding: 60px 20px;
  background: #f8fafc;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.header h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  color: #0f172a;
}

.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.google-rating .stars {
  color: #fbbf24;
  font-size: 1.6rem;
}

.slider-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-slider {
  display: flex;
  gap: 25px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 10px 0;
}

.testimonial-card {
  min-width: 340px;
  background: white;
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.07);
  text-align: left;
}

.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #334155;
  margin: 18px 0;
  font-style: italic;
}

.client-info {
  margin-top: 20px;
  color: #1e2937;
}

.client-info small {
  color: #64748b;
}

.nav-btn {
  background: white;
  border: 2px solid #e2e8f0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #475569;
  transition: all 0.3s;
  flex-shrink: 0;
}

.nav-btn:hover {
  background: #0f172a;
  color: white;
  border-color: #0f172a;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #cbd5e1;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #f59e0b;
  transform: scale(1.3);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 992px) {
  .testimonial-card {
    min-width: 310px;
  }
}

@media (max-width: 768px) {
  .header h2 {
    font-size: 2rem;
  }

  .slider-container {
    gap: 12px;
  }

  .testimonial-card {
    min-width: calc(100% - 20px); /* Almost full width */
    padding: 28px 24px;
  }

  .testimonial-slider {
    gap: 20px;
  }

  .nav-btn {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .header h2 {
    font-size: 1.8rem;
  }

  .google-rating {
    gap: 8px;
    font-size: 0.95rem;
  }

  .google-rating .stars {
    font-size: 1.4rem;
  }

  .testimonial-card {
    min-width: 100%;
    padding: 24px 20px;
  }

  .testimonial-card p {
    font-size: 1rem;
  }
}


/* pricing section */
.pricing {
  background: #fffaf2;
  padding: 60px 20px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.price-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.text-price-card {
  margin-top: 20px;
}

.btn-1 { border: 2px solid red; }
.btn-2 { border: 2px solid var(--green); }
.btn-3 { border: 2px solid green; }

.price-card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s;
}

.price-card.featured {
  border: 3px solid var(--gold);
}

.pricing .icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.pricing .icon-1 i {
  color: var(--gold);
  font-size: 30px;
  margin-top: 20px;
}

.ribbon {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: white;
  padding: 7px 16px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 20px;
}

.price {
  font-size: 44px;
  font-weight: bold;
  margin: 15px 0;
}

.price-card ul {
  text-align: left;
  list-style: none;
  margin-top: 15px;
  padding-left: 0;
}

.price-card li {
  margin: 10px 0;
}

.price-card li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 8px;
}

.button-2 {
  margin-top: 30px;
  cursor: pointer;
  padding: 14px 32px;
  background: var(--gold);
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
}

.button-2:hover {
  background: var(--navy);
  transition: background 0.3s;
}

.button-2 a {
  color: white;
  text-decoration: none;
}

.cta-grid {
  text-align: center;
}

/* ===================== RESPONSIVE DESIGN ===================== */

@media (max-width: 1024px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .price-card {
    padding: 28px 20px;
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 50px 15px;
  }

  .price-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .price {
    font-size: 38px;
  }

  .price-card {
    padding: 30px 20px;
  }

  .pricing .icon {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .price-card {
    padding: 25px 18px;
  }

  .price {
    font-size: 34px;
  }

  .ribbon {
    font-size: 12px;
    padding: 6px 14px;
  }

  .button-2 {
    padding: 12px 28px;
    font-size: 1rem;
  }
}
.cta{

  background:var(--navy);

  color:white;

  padding:35px 0;

}

.cta-grid{

  display:grid;

  grid-template-columns:1fr auto;

  align-items:center;

}

.cta h2{

  font-family:Georgia, serif;

  font-size:34px;

}

.cta strong{

  color:var(--gold);

}



/* RESPONSIVE */
@media (max-width: 768px){
  .footer-grid{
    grid-template-columns: 1fr;
    text-align: center;
  }

  footer a{
    display: inline-block;
    margin: 6px 10px;
  }
}
/* hero section responsive */
@media(max-width:950px){

  .top-bar .container,

  nav,

  .header-contact{

    display:none;

  }

  .header-grid,

  .hero-grid,

  .trust-grid,

  .services,

  .why-grid,

  .review-grid,

  .price-grid,

  .cta-grid,

  .footer-grid{

    grid-template-columns:1fr;

  }

  .hero h1{

    font-size:48px;

  }

  .hero{

    background:white;

  }

  .hero-image{

    margin-bottom:30px;

  }

  .review-heading{

    display:block;

    text-align:center;

  }

}
/* footer section */
.footer {
  background: #0a1f3d; /* Deep Navy */
  color: #e2e8f0;
  padding: 60px 0 20px;
  margin-top: 60px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.3fr 1.3fr;
  gap: 50px;
  align-items: start;
}

.footer-logo img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid #f5b301;
}

.footer h4 {
  font-size: 1.35rem;
  color: #f5b301;
  margin-bottom: 18px;
  font-weight: 700;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #cbd5e1;
}

.info-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.info-item a:hover {
  color: #f5b301;
}

.info-item span {
  font-size: 20px;
  color: #f5b301;
  min-width: 24px;
}

.footer-links,
.footer-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-trust li {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: #f5b301;
  padding-left: 6px;
}

.footer-trust ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-trust li {
  position: relative;
  padding-left: 22px;
}

.footer-trust li::before {
  content: "✓";
  color: #f5b301;
  position: absolute;
  left: 0;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(245, 179, 1, 0.15);
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.95rem;
  color: #94a3b8;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 35px;
  }

  .info-item {
    justify-content: center;
  }

  .footer-logo img {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .footer-logo img {
    width: 110px;
    height: 110px;
  }
}

/* Modal background */
.modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  justify-content:center;
  align-items:center;
}

/* Modal box */
.modal-content{
  background:#fff;
  padding:25px;
  width:350px;
  border-radius:10px;
  position:relative;
}

/* Close button */
.close{
  position:absolute;
  right:10px;
  top:5px;
  font-size:22px;
  cursor:pointer;
}

/* Inputs */
.modal-content input,
.modal-content textarea{
  width:100%;
  margin:8px 0;
  padding:10px;
}
.button{
  background:var(--gold);
  color:white;
  border:none;
  padding:12px 20px;
  border-radius:6px;
  font-weight:bold;
  cursor:pointer;
}
.button:hover{
  background: var(--navy);
  transition: background 0.3s;
  border: 2px solid var(--gold);
}

.modal-content button{
  background:var(--gold);
  color:white;
  border:none;
  padding:12px 20px;
  border-radius:6px;
  font-weight:bold;
  cursor:pointer;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}
