body{background-color:rgb(163, 195, 206);}

/* Banner Section */
.banner {
    text-align: center;
    padding: 30px 10px;
    background-color: rgb(100, 149, 237);
    color: white;
}

.banner-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 15px;
}

/* Services Section */
.service-section {
    padding: 40px 16px
    background-color: #f1f7fb; /* light neutral background */
    color: #102a43; 
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding:0 16px
}

.section-title {
    text-align: left;
    font-size: 1.8em;
    margin-bottom: 18px;
    color: #0a1f44; /*strong heading color*/
    font-weight: 700;
}

/*Grid for cards
.section-grid {
    display: grid;
    grid-template-columns: repeat(repeat,(3, 1fr));
    gap: 18px;
    align-items: stretch;
}

/*card style */
.service-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(10, 31, 68, 0.06);
    padding: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-card: p {
 margin: 0;
 color: #345;
  line-height: 1.4;
  font-size: 0.95em;
}

/* Responsive adjustments */
@media (max-width: 980px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

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

.services-section {
    padding: 28px 12px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/*container for the section*/
.services-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/*GRID: adjust this class name to match your HTML*/
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns on large screens */
    gap: 20px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(7, 29, 46, 0.08);
    padding: 22px;
    box-shadow: 0 6px 18px rgba(7,29, 46, 0.08);
    color : #222
    line-height: 1.5;
    margin-bottom: 20px;
}

/*card title*/
.service-card p {
    margin: 0;
    color: #444;
    font-size: 0.95em;
}

/*card text*/
.service-card h3 {
    margin: 0;
    color: #444;
    font-size: 1.05em;
    font-weight: 600;
}

/* responsive breakpoints, user availability*/
@media (max-width: 980px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 column on small screens */
    }
}

/*Pricing Section*/ 
.pricing-section {
    padding: 40px 16px;
    background-color: #ffffff; /* light neutral background */
    color: #0a1f44; 
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 18px;
}

/*Card*/
.pricing-card {
    background: #8a9fba;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(10, 31, 68, 0.06);
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}

/*head row*/
.price-head {
 display: flex;
 justify-content: space-between;
 align-items: baseline;  
 gap: 12px;
 margin-bottom: 12px;   
}

.price-head h3 {
margin: 0;
font-size: 1.05em;
color: #0a1f44;
background:rgba (10, 31,68,0.06);
padding:6px 10px;
border-radius: 8px;
}

.price {
 margin: 0;
 font-size: 1.05em;
 font-weight: 800;
 color: #0a1f44;
 background:rgba(10, 31, 68, 0.06);
 padding:6px 10px;
 border-radius: 8px;
}

/*Feature-list*/
.pricing-card ul {
margin: 0 0 16px 0;
padding-left: 18px;
color: #33475b;
line-height: 1.5;
}

/*CTA button*/
.btn {
    display: inline-block;
    padding: 10px 14px;
    background: #0a1f44;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.18s ease, box-shadow  .18s ease;
    font-weight: 600;
    color: white
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(10, 31, 68, 0.12);
}

/*Responsiveness*/
@media (max-width: 980px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.price {
    font-size: 1em;
    padding:5px 8px
    }


/*Contact Section*/

.contact-section {
    padding: 50px 20px;
    background-color: #e8f1f5; /* light neutral background */
    color: #0a1f44; 
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr)
    gap: 20x;
    margin-top: 18px;
}

.contact-item h3 {
    margin-bottom: 6px;
    font-size: 1.1em;
    font-weight: 700;

}

.contact-item p {
    margin: 0;
    color: #33475b;
    line-height: 1.5;
}

contact-item a {
    color: #0a1f44;
    text-decoration: none;
    font-weight: 600;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/*Responsive*/
@media (max-width: 600px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/*Gallery Section*/
.gallery-section {
    padding: 40px 16px;
    background-color: #f7fbff; /* light neutral background */
    color: #0a1f44; 
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 18px;
    background-color: #8a9fba ;
}

.gallery-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(10, 31, 68, 0.06);
    overflow: hidden;
    transition: transform 200ms ease, box-shadow 200ms ease;
    text-align: center;
    display: flex;
    padding: 12px;
    flex-direction: column;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-item figcaption {
    margin-top: 10px 12px;
    font-size: 0.92rem;
    color: #33475b;
    background: #fff;
}

/*hover lift*/
.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(10, 31, 68, 0.12);
}

/*Responsive*/
@media (max-width: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item img {
    height: 220px;
}

/*NAV BAR*/

.navbar{
background: #5d8fcf;
padding: 15px 20px;
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0;
z-index: 1000;
}

.logo{
color: white;
font-size: 1.3em;
font-weight: bold;
}

.nav-links{
list-style: none;
display: flex;
gap: 25px;
}

.nav-links a{
color: white;
text-decoration: none;
font-weight: bold;
}

.nav-links a:hover{
text-decoration: underline;
}

.hamburger{
font-size: 28px;
color: white;
cursor: pointer;
display: none;
}


/*SMOOTH SCROLL*/
html{
scroll-behavior: smooth;
}

@media (max-width: 768px){
.menu-toggle{
display: block;
}

.nav-links{
position: absolute;
top:70px;
left: 0;
width: 100%;
background: #5d8fcf;
display: none;
flex-direction: column;
text-align: center;
}

.nav-links a{
padding:15px 0;
border-top: 1px solid rgba(255,255,255,0.2);
}

.nav-links.active{
display: flex;
}
}

@media (max-width: 768px){
.hamburger{
display: block;
}
}

.nav-links{
position:absolute;
top:70px;
left:0;
width:100%;
background:#6f94d1;
display:none;
flex-direction: column;
text-align: center;
}

.nav-links a{
padding:15px 0;
border-top: 1px solid rgba(255,255,255,0.3);
}

.nav-links.active{
display:flex;
}