html{
scroll-behavior:smooth;
}
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

/* HERO BACKGROUND */

.hero{
height:100vh;
background:linear-gradient(135deg,#6f4df6,#3c7bff);
position:relative;
overflow:hidden;
}

/* RIGHT TRIANGLE */

.hero::after{
content:"";
position:absolute;
right:0;
bottom:0;
width:350px;
height:350px;
background:#11C3FE;
clip-path:polygon(100% 0,0 100%,100% 100%);
}

/* NAVBAR */

.navbar{
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background:#11C3FE;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    z-index: 1000;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

nav a{
margin-left:40px;
text-decoration:none;
color:black;
font-size:16px;
}
/* HAMBURGER ICON */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 768px) {

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    width: 220px;
    flex-direction: column;
    gap: 20px;
    padding: 20px;

    display: none;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
/* HERO CONTENT */

.hero-content{
display:flex;
align-items:center;
justify-content:space-between;
padding: 80px;
}
.hero-text{
    width: 50%;
    margin-left: 80px;
}
/* FAMILY IMAGE */
.family{
position:absolute;
bottom:0;
left:40px;
}

.family img{
width:650px;
max-width:none;
}

/* CENTER TEXT */

.center{
text-align:center;
left: 55%;
top: 50%;
position:absolute;
transform: translateY(-50%);
}

/* ROOF FRAME */

.roof{
width:220px;
height:120px;
border-left:10px solid black;
border-top:10px solid black;
border-right:10px solid black;
transform:skewY(-20deg);
margin:auto;
margin-bottom: -50px;

}

/* TEXT */

.center h1{
margin-top:20px;
font-size:40px;
letter-spacing:4px;
}

/* TAGLINE */

.tagline{
margin-top:20px;
font-size:20px;
color:white;
}

/* BUTTONS */

.buttons{
margin-top:30px;
}

button{
padding:10px 20px;
border:none;
text-decoration: none;
border-radius:20px;
margin:10px;
cursor:pointer;
margin-left: 40px;
}

.btn1{
background:#e3e3e3;
}

.btn2{
background:#e3e3e3;
}

/* SOCIAL ICONS */

.social{
position:absolute;
right:30px;
bottom:120px;
display:flex;
flex-direction:column;
gap:20px;
font-size:22px;
}
/*ABOUT SECTION*/
/* SECTION BACKGROUND */

.opening-section{
padding:120px 6%;
background:linear-gradient(90deg,#27b0d8,#5c4cff);
overflow: hidden;
}

/* container */

.opening-container{
display:flex;
align-items:center;
justify-content:center;
gap:40px;
}
/* IMAGE */

.opening-image{
flex:1.2;
height:650px;
}

.opening-image img{
width:100%;
height:100%;
object-fit:cover;
border-radius:30px;
display:block;
}

/* BOX */

.opening-box{
flex:1;
width: 40% !important;
height: 80% !important;
background:#11C3FE;

padding:50px;
border-radius:40px;

color:white;

margin-left:-120px; /* overlap */

box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* TITLE */

.opening-box h2{
font-size:42px;
line-height:1.1;
margin-bottom:20px;
color: #441D42;
}

/* TEXT */

.opening-box p{
font-size:26px;
line-height:1.3;
}
.opening-box:hover{
    box-shadow:
0 0 10px #ffcc00,
0 0 20px #ff5fcc,
0 0 30px #0850d4;

transform:translateY(-3px);
}
/* BUTTON */

.brochure-btn{
display:inline-block;
padding:14px 28px;
border-radius:40px;

background:linear-gradient(90deg,#4da3ff,#7a5cff);

color:white;
text-decoration:none;

transition:0.3s;
}

/* HOVER */

.brochure-btn:hover{

box-shadow:
0 0 10px #4da3ff,
0 0 20px #7a5cff,
0 0 30px #7a5cff;

transform:translateY(-3px);
}

/*FEATURES CSS*/
.features-section{
background:linear-gradient(90deg,#4da3ff,#7a5cff);
padding:100px 10%;
color:white;
text-align:center;
}
.feature-video{
width:100%;
height:230px;
object-fit:cover;
border-radius:8px;
margin-bottom:15px;
}
.features-header h2{
font-size:36px;
margin-bottom:20px;
}

.features-header p{
max-width:700px;
margin:auto;
opacity:0.8;
margin-bottom:60px;
}

.features-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}
.feature-card{
border:1px solid rgba(255,255,255,0.3);
padding:30px;
border-radius:12px;
text-align:left;
transition:0.4s;
background:transparent;
}

.feature-card h3{
margin-bottom:10px;
}

.feature-card p{
font-size:14px;
opacity:0.8;
}

.feature-card:hover{
background:#11C3FE;
color:white;
transform:translateY(-6px);
border-color:#11C3FE;
}

/* FOOTER */
.footer {
  position: relative;
  background: linear-gradient(to right, #2b2b2b, #111);
  color: #ccc;
  padding: 100px 60px 20px;
  overflow: hidden;
}

/* SLANTED TOP SHAPE */
.footer::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to right, #2b2b2b, #111);

  /* MAIN FIX */
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0% 100%);
}

/* CONTAINER */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* COLUMNS */
.footer-col {
  width: 23%;
  min-width: 220px;
  margin-bottom: 40px;
}

/* LOGO */
.logo {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
}

.tagline {
  margin-top: 10px;
  font-size: 14px;
  color: #aaa;
}

/* HEADINGS */
.footer h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 16px;
}

/* LINKS */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.footer ul li:hover {
  color: #ff7a45;
}

/* CONTACT */
.footer-col p {
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-col i {
  color: #ff7a45;
  margin-right: 10px;
}

/* INPUT */
.footer input {
  width: 100%;
  padding: 12px;
  border: none;
  outline: none;
  margin-bottom: 15px;
  background: #eee;
}

/* BUTTON */
.footer button {
  background: #ff7a45;
  border: none;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.footer button:hover {
  background: #ff5c1a;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-top: 20px;
  color: #888;
}
