
  
        :root {
            --primary: #2d4697;
            --secondary: #ffb100;
            --light-bg: #f8f9fa;
            --highlight: #eaf6f7;
            --dark-text: #212529;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }


        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        section {
            background: white;
            border-radius: var(--border-radius);
            /* box-shadow: var(--box-shadow); */
            padding: 20px;
            margin-bottom: 10px;
        }


        h1 {
            font-size: 2.1rem;
            margin-bottom: 15px;
        }

        h2 {
            font-size: 2.5rem;
            font-weight: 500;
            margin-bottom: 20px;
            padding-bottom: 10px;
            /* border-bottom: 2px solid var(--secondary); */
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        /* p{
            font-size: 1.5rem;
        } */

        .phd-header {
            color: #0000;
            text-align: center;
        }

        .phd-header h1 {
            font-size: 36px;
            /* margin: 0; */
            font-weight: 700;
        }

        .phd-header p {
            font-size: 18px;
            margin-top: 10px;
        }

        .cta-buttons {
            margin-top: 20px;
        }

        .cta-buttons a {
            background: #ffb100;
            color: #2d4697;
            padding: 12px 20px;
            margin: 0 10px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
        }

        .btn {
            display: inline-block;
            background: var(--secondary);
            color: var(--primary);
            padding: 12px 25px;
            text-decoration: none;
            font-weight: 600;
            border-radius: var(--border-radius);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255, 177, 0, 0.3);
        }

        .document-card {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--highlight);
            padding: 15px 20px;
            border-left: 4px solid var(--primary);
            border-radius: var(--border-radius);
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .document-card:hover {
            transform: translateX(5px);
        }

        .document-link {
            text-decoration: none;
            color: var(--primary);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .document-link:hover {
            text-decoration: underline;
        }

        .highlight-box {
            background: #f8f9fa;
            padding: 20px;
            border-left: 5px solid var(--secondary);
            margin-bottom: 20px;
            border-radius: var(--border-radius);
        }

        .timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .timeline-step {
            background: white;
            padding: 20px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            border-top: 4px solid var(--primary);
            transition: all 0.3s ease;
        }

        .timeline-step:hover {
            transform: translateY(-5px);
        }

        .timeline-step strong {
            display: block;
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .features-list {
            list-style: none;
            padding: 0;
        }

        .features-list li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            font-size: 1.5rem;
        }

        .features-list li:before {
            content: "✓";
            color: var(--secondary);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .gallery-item {
            height: 180px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.03);
        }

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

        /* Responsive adjustments */
        @media (max-width: 768px) {

            .header-text {
                margin-top: -80px;

            }

            h1 {
                font-size: 0.5rem;
            }

            h2 {
                font-size: 1.5rem;
                font-weight: 700;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .timeline {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .header-text {
                margin-top: -90px;

            }

            .header-text h1 {
                font-size: 14px;
            }

            .phd-header p {
                font-size: 9px;
            }


            section {
                padding: 20px 15px;
            }

            .document-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }

        #contactbg {
    padding-top: 100px;
    /*margin-top:110px;*/
    margin-top: 163px;
    color: #fff;
    background-image: url("/contact/images/header banner.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 350px;
    display: block;
}

#contactbg h1 {

    display: block;
}

@media (min-width: 769px) and (max-width: 950px) {
    #contactbg h1 {
        display: none;
    }

    #contactbg {
        margin-top: -80px;
        background-repeat: no-repeat;
        background-size: 100%;
        /* //height:250px;
	//border:solid red 1px; */
        position: static;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    #contactbg h1 {
        display: none;
    }

    #contactbg {
        margin-top: -80px;
        background-repeat: no-repeat;
        background-size: 100%;
        height: 200px;
        /* //border:solid red 1px; */
        position: static;
    }
}

@media (min-width: 280px) and (max-width: 576px) {
    #contactbg {
        margin-top: -45px;
        background-repeat: no-repeat;
        background-size: 100%;
        height: 150px;
        /* //border:solid red 1px; */
    }

    .headertext {
        padding: 0px 0px 0px 0px;
        font-size: 20px;
        margin-top: -10px;
    }
    .container {
        width: 100%;
        padding: 0px;
        margin: 0px;
    }

}

.headertext {
    margin-top: 120px;
    text-shadow: 2px 3px 3px #000000;
}



.headertext {
    padding: 60px 0px 0px 60px;
    font-size: 45px;
}
.paddingtopbottom{
	padding-top:40px;
	padding-bottom:40px;
}
